You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by cp...@apache.org on 2021/03/08 13:52:35 UTC

[lucene-solr] branch SOLR-15224-TestXmlQParser created (now 9112b72)

This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a change to branch SOLR-15224-TestXmlQParser
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


      at 9112b72  SOLR-15224: delete TestXmlQParser class

This branch includes the following new commits:

     new 9112b72  SOLR-15224: delete TestXmlQParser class

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[lucene-solr] 01/01: SOLR-15224: delete TestXmlQParser class

Posted by cp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

cpoerschke pushed a commit to branch SOLR-15224-TestXmlQParser
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 9112b723fe01ac78db0750f2f268cf1ef9181b0c
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Mon Mar 8 13:52:18 2021 +0000

    SOLR-15224: delete TestXmlQParser class
---
 .../org/apache/solr/search/TestXmlQParser.java     | 72 ----------------------
 1 file changed, 72 deletions(-)

diff --git a/solr/core/src/test/org/apache/solr/search/TestXmlQParser.java b/solr/core/src/test/org/apache/solr/search/TestXmlQParser.java
deleted file mode 100644
index dc3ae64..0000000
--- a/solr/core/src/test/org/apache/solr/search/TestXmlQParser.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.solr.search;
-
-import java.lang.invoke.MethodHandles;
-
-import org.apache.lucene.analysis.MockAnalyzer;
-import org.apache.lucene.analysis.MockTokenFilter;
-import org.apache.lucene.analysis.MockTokenizer;
-import org.apache.lucene.queryparser.xml.CoreParser;
-
-import org.apache.solr.SolrTestCase;
-import org.apache.solr.util.StartupLoggingUtils;
-import org.apache.solr.util.TestHarness;
-
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
-import org.junit.Ignore;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-@Ignore("Was relying on Lucene test sources. Should copy?")
-public class TestXmlQParser extends SolrTestCase /* extends TestCoreParser */ {
-
-  private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
-  private CoreParser solrCoreParser;
-  private static TestHarness harness;
-    
-  @BeforeClass
-  public static void init() throws Exception {
-    // we just need to stub this out so we can construct a SolrCoreParser
-    harness = new TestHarness(TestHarness.buildTestNodeConfig(createTempDir()));
-  }
-  
-  @AfterClass
-  public static void shutdownLogger() throws Exception {
-    harness.close();
-    harness = null;
-    StartupLoggingUtils.shutdown();
-  }
-
-  // @Override
-  protected CoreParser coreParser() {
-    if (solrCoreParser == null) {
-      solrCoreParser = new SolrCoreParser(
-          "contents",
-          new MockAnalyzer(random(), MockTokenizer.WHITESPACE, true, MockTokenFilter.ENGLISH_STOPSET),
-          harness.getRequestFactory("/select", 0, 0).makeRequest());
-    }
-    return solrCoreParser;
-  }
-
-  //public void testSomeOtherQuery() {
-  //  Query q = parse("SomeOtherQuery.xml");
-  //  dumpResults("SomeOtherQuery", q, ?);
-  //}
-
-}