mirror of https://github.com/apache/lucene.git
LUCENE-5945: more test cleanups
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1624800 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
af287593c8
commit
535454eb25
|
@ -18,17 +18,16 @@ package org.apache.lucene.analysis.hunspell;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.util.zip.ZipEntry;
|
|
||||||
import java.util.zip.ZipFile;
|
|
||||||
|
|
||||||
import org.apache.lucene.analysis.hunspell.Dictionary;
|
import org.apache.lucene.analysis.hunspell.Dictionary;
|
||||||
|
import org.apache.lucene.util.IOUtils;
|
||||||
import org.apache.lucene.util.LuceneTestCase;
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
import org.apache.lucene.util.LuceneTestCase.SuppressSysoutChecks;
|
import org.apache.lucene.util.LuceneTestCase.SuppressSysoutChecks;
|
||||||
import org.apache.lucene.util.RamUsageTester;
|
import org.apache.lucene.util.RamUsageTester;
|
||||||
|
import org.apache.lucene.util.TestUtil;
|
||||||
import org.junit.Ignore;
|
import org.junit.Ignore;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -157,18 +156,22 @@ public class TestAllDictionaries extends LuceneTestCase {
|
||||||
};
|
};
|
||||||
|
|
||||||
public void test() throws Exception {
|
public void test() throws Exception {
|
||||||
|
Path tmp = LuceneTestCase.createTempDir();
|
||||||
|
|
||||||
for (int i = 0; i < tests.length; i += 3) {
|
for (int i = 0; i < tests.length; i += 3) {
|
||||||
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
||||||
assert Files.exists(f);
|
assert Files.exists(f);
|
||||||
|
|
||||||
try (ZipFile zip = new ZipFile(f.toFile(), StandardCharsets.UTF_8)) {
|
IOUtils.rm(tmp);
|
||||||
ZipEntry dicEntry = zip.getEntry(tests[i+1]);
|
Files.createDirectory(tmp);
|
||||||
assert dicEntry != null;
|
|
||||||
ZipEntry affEntry = zip.getEntry(tests[i+2]);
|
|
||||||
assert affEntry != null;
|
|
||||||
|
|
||||||
try (InputStream dictionary = zip.getInputStream(dicEntry);
|
try (InputStream in = Files.newInputStream(f)) {
|
||||||
InputStream affix = zip.getInputStream(affEntry)) {
|
TestUtil.unzip(in, tmp);
|
||||||
|
Path dicEntry = tmp.resolve(tests[i+1]);
|
||||||
|
Path affEntry = tmp.resolve(tests[i+2]);
|
||||||
|
|
||||||
|
try (InputStream dictionary = Files.newInputStream(dicEntry);
|
||||||
|
InputStream affix = Files.newInputStream(affEntry)) {
|
||||||
Dictionary dic = new Dictionary(affix, dictionary);
|
Dictionary dic = new Dictionary(affix, dictionary);
|
||||||
System.out.println(tests[i] + "\t" + RamUsageTester.humanSizeOf(dic) + "\t(" +
|
System.out.println(tests[i] + "\t" + RamUsageTester.humanSizeOf(dic) + "\t(" +
|
||||||
"words=" + RamUsageTester.humanSizeOf(dic.words) + ", " +
|
"words=" + RamUsageTester.humanSizeOf(dic.words) + ", " +
|
||||||
|
@ -184,22 +187,26 @@ public class TestAllDictionaries extends LuceneTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testOneDictionary() throws Exception {
|
public void testOneDictionary() throws Exception {
|
||||||
|
Path tmp = LuceneTestCase.createTempDir();
|
||||||
|
|
||||||
String toTest = "zu_ZA.zip";
|
String toTest = "zu_ZA.zip";
|
||||||
for (int i = 0; i < tests.length; i++) {
|
for (int i = 0; i < tests.length; i++) {
|
||||||
if (tests[i].equals(toTest)) {
|
if (tests[i].equals(toTest)) {
|
||||||
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
||||||
assert Files.exists(f);
|
assert Files.exists(f);
|
||||||
|
|
||||||
try (ZipFile zip = new ZipFile(f.toFile(), StandardCharsets.UTF_8)) {
|
IOUtils.rm(tmp);
|
||||||
ZipEntry dicEntry = zip.getEntry(tests[i+1]);
|
Files.createDirectory(tmp);
|
||||||
assert dicEntry != null;
|
|
||||||
ZipEntry affEntry = zip.getEntry(tests[i+2]);
|
|
||||||
assert affEntry != null;
|
|
||||||
|
|
||||||
try (InputStream dictionary = zip.getInputStream(dicEntry);
|
try (InputStream in = Files.newInputStream(f)) {
|
||||||
InputStream affix = zip.getInputStream(affEntry)) {
|
TestUtil.unzip(in, tmp);
|
||||||
new Dictionary(affix, dictionary);
|
Path dicEntry = tmp.resolve(tests[i+1]);
|
||||||
}
|
Path affEntry = tmp.resolve(tests[i+2]);
|
||||||
|
|
||||||
|
try (InputStream dictionary = Files.newInputStream(dicEntry);
|
||||||
|
InputStream affix = Files.newInputStream(affEntry)) {
|
||||||
|
new Dictionary(affix, dictionary);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,16 +18,15 @@ package org.apache.lucene.analysis.hunspell;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.nio.charset.StandardCharsets;
|
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.util.zip.ZipEntry;
|
|
||||||
import java.util.zip.ZipFile;
|
|
||||||
|
|
||||||
import org.apache.lucene.analysis.hunspell.Dictionary;
|
import org.apache.lucene.analysis.hunspell.Dictionary;
|
||||||
|
import org.apache.lucene.util.IOUtils;
|
||||||
import org.apache.lucene.util.LuceneTestCase;
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
import org.apache.lucene.util.RamUsageTester;
|
import org.apache.lucene.util.RamUsageTester;
|
||||||
|
import org.apache.lucene.util.TestUtil;
|
||||||
import org.apache.lucene.util.LuceneTestCase.SuppressSysoutChecks;
|
import org.apache.lucene.util.LuceneTestCase.SuppressSysoutChecks;
|
||||||
import org.junit.Ignore;
|
import org.junit.Ignore;
|
||||||
|
|
||||||
|
@ -172,18 +171,22 @@ public class TestAllDictionaries2 extends LuceneTestCase {
|
||||||
};
|
};
|
||||||
|
|
||||||
public void test() throws Exception {
|
public void test() throws Exception {
|
||||||
|
Path tmp = LuceneTestCase.createTempDir();
|
||||||
|
|
||||||
for (int i = 0; i < tests.length; i += 3) {
|
for (int i = 0; i < tests.length; i += 3) {
|
||||||
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
||||||
assert Files.exists(f);
|
assert Files.exists(f);
|
||||||
|
|
||||||
try (ZipFile zip = new ZipFile(f.toFile(), StandardCharsets.UTF_8)) {
|
IOUtils.rm(tmp);
|
||||||
ZipEntry dicEntry = zip.getEntry(tests[i+1]);
|
Files.createDirectory(tmp);
|
||||||
assert dicEntry != null;
|
|
||||||
ZipEntry affEntry = zip.getEntry(tests[i+2]);
|
|
||||||
assert affEntry != null;
|
|
||||||
|
|
||||||
try (InputStream dictionary = zip.getInputStream(dicEntry);
|
try (InputStream in = Files.newInputStream(f)) {
|
||||||
InputStream affix = zip.getInputStream(affEntry)) {
|
TestUtil.unzip(in, tmp);
|
||||||
|
Path dicEntry = tmp.resolve(tests[i+1]);
|
||||||
|
Path affEntry = tmp.resolve(tests[i+2]);
|
||||||
|
|
||||||
|
try (InputStream dictionary = Files.newInputStream(dicEntry);
|
||||||
|
InputStream affix = Files.newInputStream(affEntry)) {
|
||||||
Dictionary dic = new Dictionary(affix, dictionary);
|
Dictionary dic = new Dictionary(affix, dictionary);
|
||||||
System.out.println(tests[i] + "\t" + RamUsageTester.humanSizeOf(dic) + "\t(" +
|
System.out.println(tests[i] + "\t" + RamUsageTester.humanSizeOf(dic) + "\t(" +
|
||||||
"words=" + RamUsageTester.humanSizeOf(dic.words) + ", " +
|
"words=" + RamUsageTester.humanSizeOf(dic.words) + ", " +
|
||||||
|
@ -199,22 +202,26 @@ public class TestAllDictionaries2 extends LuceneTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testOneDictionary() throws Exception {
|
public void testOneDictionary() throws Exception {
|
||||||
|
Path tmp = LuceneTestCase.createTempDir();
|
||||||
|
|
||||||
String toTest = "hungarian_dictionary-1.6.1.1-fx+tb+sm+fn.xpi";
|
String toTest = "hungarian_dictionary-1.6.1.1-fx+tb+sm+fn.xpi";
|
||||||
for (int i = 0; i < tests.length; i++) {
|
for (int i = 0; i < tests.length; i++) {
|
||||||
if (tests[i].equals(toTest)) {
|
if (tests[i].equals(toTest)) {
|
||||||
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
Path f = DICTIONARY_HOME.resolve(tests[i]);
|
||||||
assert Files.exists(f);
|
assert Files.exists(f);
|
||||||
|
|
||||||
try (ZipFile zip = new ZipFile(f.toFile(), StandardCharsets.UTF_8)) {
|
IOUtils.rm(tmp);
|
||||||
ZipEntry dicEntry = zip.getEntry(tests[i+1]);
|
Files.createDirectory(tmp);
|
||||||
assert dicEntry != null;
|
|
||||||
ZipEntry affEntry = zip.getEntry(tests[i+2]);
|
|
||||||
assert affEntry != null;
|
|
||||||
|
|
||||||
try (InputStream dictionary = zip.getInputStream(dicEntry);
|
try (InputStream in = Files.newInputStream(f)) {
|
||||||
InputStream affix = zip.getInputStream(affEntry)) {
|
TestUtil.unzip(in, tmp);
|
||||||
|
Path dicEntry = tmp.resolve(tests[i+1]);
|
||||||
|
Path affEntry = tmp.resolve(tests[i+2]);
|
||||||
|
|
||||||
|
try (InputStream dictionary = Files.newInputStream(dicEntry);
|
||||||
|
InputStream affix = Files.newInputStream(affEntry)) {
|
||||||
new Dictionary(affix, dictionary);
|
new Dictionary(affix, dictionary);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,6 @@ import org.apache.lucene.index.DirectoryReader;
|
||||||
import org.apache.lucene.index.IndexReader;
|
import org.apache.lucene.index.IndexReader;
|
||||||
import org.apache.lucene.search.IndexSearcher;
|
import org.apache.lucene.search.IndexSearcher;
|
||||||
import org.apache.lucene.store.FSDirectory;
|
import org.apache.lucene.store.FSDirectory;
|
||||||
import org.apache.lucene.util.IOUtils;
|
|
||||||
|
|
||||||
import java.io.OutputStreamWriter;
|
import java.io.OutputStreamWriter;
|
||||||
import java.io.PrintWriter;
|
import java.io.PrintWriter;
|
||||||
|
@ -55,7 +54,8 @@ public class QueryDriver {
|
||||||
|
|
||||||
Path topicsFile = Paths.get(args[0]);
|
Path topicsFile = Paths.get(args[0]);
|
||||||
Path qrelsFile = Paths.get(args[1]);
|
Path qrelsFile = Paths.get(args[1]);
|
||||||
SubmissionReport submitLog = new SubmissionReport(new PrintWriter(args[2], IOUtils.UTF_8 /* huh, no nio.Charset ctor? */), "lucene");
|
Path submissionFile = Paths.get(args[2]);
|
||||||
|
SubmissionReport submitLog = new SubmissionReport(new PrintWriter(Files.newBufferedWriter(submissionFile, StandardCharsets.UTF_8)), "lucene");
|
||||||
FSDirectory dir = FSDirectory.open(Paths.get(args[3]));
|
FSDirectory dir = FSDirectory.open(Paths.get(args[3]));
|
||||||
String fieldSpec = args.length == 5 ? args[4] : "T"; // default to Title-only if not specified.
|
String fieldSpec = args.length == 5 ? args[4] : "T"; // default to Title-only if not specified.
|
||||||
IndexReader reader = DirectoryReader.open(dir);
|
IndexReader reader = DirectoryReader.open(dir);
|
||||||
|
|
|
@ -30,13 +30,15 @@
|
||||||
org/apache/lucene/util/PrintStreamInfoStream.class
|
org/apache/lucene/util/PrintStreamInfoStream.class
|
||||||
"/>
|
"/>
|
||||||
|
|
||||||
<property name="forbidden-rue-excludes" value="
|
<!-- Needs to start a process -->
|
||||||
org/apache/lucene/util/RamUsageEstimator.class
|
<property name="forbidden-tests-excludes" value="
|
||||||
|
org/apache/lucene/index/TestIndexWriterOnJRECrash.class
|
||||||
"/>
|
"/>
|
||||||
|
|
||||||
<!-- TODO: maybe let people get closedchannel if they cancel(true) -->
|
<!-- TODO: maybe let people get closedchannel if they cancel(true) -->
|
||||||
<property name="forbidden-base-excludes" value="
|
<property name="forbidden-base-excludes" value="
|
||||||
org/apache/lucene/store/SimpleFSDirectory.class
|
org/apache/lucene/store/SimpleFSDirectory.class
|
||||||
|
org/apache/lucene/store/SimpleFSDirectory$SimpleFSIndexInput.class
|
||||||
"/>
|
"/>
|
||||||
|
|
||||||
<import file="../common-build.xml"/>
|
<import file="../common-build.xml"/>
|
||||||
|
|
|
@ -22,11 +22,13 @@ import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.util.zip.ZipFile;
|
|
||||||
|
|
||||||
import org.apache.lucene.analysis.Analyzer;
|
import org.apache.lucene.analysis.Analyzer;
|
||||||
import org.apache.lucene.analysis.BaseTokenStreamTestCase;
|
import org.apache.lucene.analysis.BaseTokenStreamTestCase;
|
||||||
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
|
import org.apache.lucene.util.TestUtil;
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
|
|
||||||
/** Utility class for doing vocabulary-based stemming tests */
|
/** Utility class for doing vocabulary-based stemming tests */
|
||||||
|
@ -62,21 +64,24 @@ public class VocabularyAssert {
|
||||||
|
|
||||||
/** Run a vocabulary test against two data files inside a zip file */
|
/** Run a vocabulary test against two data files inside a zip file */
|
||||||
public static void assertVocabulary(Analyzer a, Path zipFile, String voc, String out) throws IOException {
|
public static void assertVocabulary(Analyzer a, Path zipFile, String voc, String out) throws IOException {
|
||||||
ZipFile zip = new ZipFile(zipFile.toFile());
|
Path tmp = LuceneTestCase.createTempDir();
|
||||||
InputStream v = zip.getInputStream(zip.getEntry(voc));
|
try (InputStream in = Files.newInputStream(zipFile)) {
|
||||||
InputStream o = zip.getInputStream(zip.getEntry(out));
|
TestUtil.unzip(in, tmp);
|
||||||
assertVocabulary(a, v, o);
|
}
|
||||||
v.close();
|
try (InputStream v = Files.newInputStream(tmp.resolve(voc));
|
||||||
o.close();
|
InputStream o = Files.newInputStream(tmp.resolve(out))) {
|
||||||
zip.close();
|
assertVocabulary(a, v, o);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Run a vocabulary test against a tab-separated data file inside a zip file */
|
/** Run a vocabulary test against a tab-separated data file inside a zip file */
|
||||||
public static void assertVocabulary(Analyzer a, Path zipFile, String vocOut) throws IOException {
|
public static void assertVocabulary(Analyzer a, Path zipFile, String vocOut) throws IOException {
|
||||||
ZipFile zip = new ZipFile(zipFile.toFile());
|
Path tmp = LuceneTestCase.createTempDir();
|
||||||
InputStream vo = zip.getInputStream(zip.getEntry(vocOut));
|
try (InputStream in = Files.newInputStream(zipFile)) {
|
||||||
assertVocabulary(a, vo);
|
TestUtil.unzip(in, tmp);
|
||||||
vo.close();
|
}
|
||||||
zip.close();
|
try (InputStream in = Files.newInputStream(tmp.resolve(vocOut))) {
|
||||||
|
assertVocabulary(a, in);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,4 +17,10 @@
|
||||||
java.io.File
|
java.io.File
|
||||||
java.io.FileInputStream
|
java.io.FileInputStream
|
||||||
java.io.FileOutputStream
|
java.io.FileOutputStream
|
||||||
# TODO: all kinds of other stuff taking "String" but making a file itself...
|
java.io.PrintStream#<init>(java.lang.String,java.lang.String)
|
||||||
|
java.io.PrintWriter#<init>(java.lang.String,java.lang.String)
|
||||||
|
java.util.Formatter#<init>(java.lang.String,java.lang.String,java.util.Locale)
|
||||||
|
java.io.RandomAccessFile
|
||||||
|
java.nio.file.Path#toFile()
|
||||||
|
java.util.jar.JarFile
|
||||||
|
java.util.zip.ZipFile
|
||||||
|
|
Loading…
Reference in New Issue