Remove TestRealIndex
diff --git a/pom.xml b/pom.xml
index 8a66e87..7b8f0ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -232,10 +232,8 @@
<version>2.16</version>
<configuration>
<excludes>
- <exclude>**/TestRealIndex.java</exclude>
<exclude>**/benchmark/*</exclude>
<exclude>**/TestWPDIndex.java</exclude>
- <exclude>**/TestKorapSolr.java</exclude>
</excludes>
</configuration>
</plugin>
diff --git a/src/test/java/de/ids_mannheim/korap/index/TestRealIndex.java b/src/test/java/de/ids_mannheim/korap/index/TestRealIndex.java
deleted file mode 100644
index 74a827b..0000000
--- a/src/test/java/de/ids_mannheim/korap/index/TestRealIndex.java
+++ /dev/null
@@ -1,138 +0,0 @@
-package de.ids_mannheim.korap.index;
-
-import java.util.*;
-import java.io.*;
-
-import de.ids_mannheim.korap.KorapIndex;
-import de.ids_mannheim.korap.index.FieldDocument;
-import de.ids_mannheim.korap.KorapCollection;
-import de.ids_mannheim.korap.KorapFilter;
-import de.ids_mannheim.korap.KorapResult;
-import de.ids_mannheim.korap.KorapQuery;
-import de.ids_mannheim.korap.KorapSearch;
-import org.apache.lucene.store.MMapDirectory;
-import de.ids_mannheim.korap.filter.BooleanFilter;
-import org.apache.lucene.search.spans.SpanQuery;
-import de.ids_mannheim.korap.util.QueryException;
-
-import static org.junit.Assert.*;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.runner.RunWith;
-import org.junit.runners.JUnit4;
-
-@RunWith(JUnit4.class)
-public class TestRealIndex {
-
- @Test
- public void realExample1 () throws IOException {
-
- // Load configuration file
- Properties prop = new Properties();
- FileReader fr = new FileReader(getClass().getResource("/korap.conf").getFile());
- prop.load(fr);
-
- // Check if the configuration was loaded fine
- assertEquals(prop.getProperty("lucene.properties"), "true");
-
- String indexDir = prop.getProperty("lucene.indexDir");
- System.err.println("Index directory is " + indexDir);
-
- // Get the real index
- KorapIndex ki = new KorapIndex(new MMapDirectory(new File(indexDir)));
-
- // Create a container for virtual collections:
- KorapCollection kc = new KorapCollection(ki);
-
- // Construct filter generator
- KorapFilter kf = new KorapFilter();
-
- // The virtual collection consists of all documents that have
- // the textClasses "reisen" and "freizeit"
- // kc.filter( kf.and("textClass", "reisen").and("textClass", "freizeit-unterhaltung") );
-
- // This is real slow atm - sorry
- kc.filter(kf.and("textClass", "kultur"));
-
-
- // Create a query
- KorapQuery kq = new KorapQuery("tokens");
-
- SpanQuery query =
- kq.within(
- kq.tag("xip/const:NPA"),
- kq._(1,
- kq.seq(
- kq._(2, kq.seg("cnx/p:A").with("mate/m:number:sg"))
- ).append(
- kq.seg("opennlp/p:NN").with("tt/p:NN")
- )
- )
- ).toQuery();
-
-
- // KorapResult kr = kc.search(query);
-
- // System.err.println(kr.toJSON());
-
-
- // kc = new KorapCollection("{\"meta\":[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:term\",\"@field\":\"korap:field#corpusID\",\"@value\":\"A00\"}},{\"@type\":\"korap:meta-extend\",\"@value\":{\"@type\":\"korap:term\",\"@field\":\"korap:field#corpusID\",\"@value\":\"A01\"}}]}");
-
- // kc = new KorapCollection("{\"meta\":[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:term\",\"@field\":\"korap:field#corpusID\",\"@value\":\"A01\"}}]}");
- kc = new KorapCollection("{\"meta\":[{\"@type\":\"korap:meta-filter\",\"@value\":{\"@type\":\"korap:term\",\"@field\":\"korap:field#textClass\",\"@value\":\"reisen\"}}]}");
- kc.setIndex(ki);
-
- System.err.println(kc.getFilter(0).toString());
- System.err.println(kc.numberOf("documents"));
-
- // assertEquals(14, kc.numberOf("documents"));
- };
-
-
- @Test
- public void realExample2 () throws IOException {
-
- // Load configuration file
- Properties prop = new Properties();
- FileReader fr = new FileReader(getClass().getResource("/korap.conf").getFile());
- prop.load(fr);
-
- // Check if the configuration was loaded fine
- assertEquals(prop.getProperty("lucene.properties"), "true");
-
- String indexDir = prop.getProperty("lucene.indexDir");
-
- // Get the real index
- KorapIndex ki = new KorapIndex(new MMapDirectory(new File(indexDir)));
-
- // Create a container for virtual collections:
- KorapCollection kc = new KorapCollection(ki);
-
- // String json = getString(getClass().getResource("/queries/bsp-class-2.jsonld").getFile());
- String json = getString(getClass().getResource("/queries/bsp-repetition.jsonld").getFile());
-
- System.err.println(new KorapSearch(json).getQuery().toString());
- KorapResult kr = new KorapSearch(json).run(ki);
-
- System.err.println(kr.toJSON());
-
- // assertEquals(14, kc.numberOf("documents"));
- };
-
-
- public static String getString (String path) {
- StringBuilder contentBuilder = new StringBuilder();
- try {
- BufferedReader in = new BufferedReader(new FileReader(path));
- String str;
- while ((str = in.readLine()) != null) {
- contentBuilder.append(str);
- };
- in.close();
- } catch (IOException e) {
- fail(e.getMessage());
- }
- return contentBuilder.toString();
- };
-
-};