mirror of https://github.com/apache/lucene.git
Fix test failure caused in Maven, because test-framework classes are packaged in JAR.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1372218 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d4e264648a
commit
e1295dc3d8
|
@ -100,8 +100,7 @@ public class TestAllAnalyzersHaveFactories extends LuceneTestCase {
|
|||
private static final ResourceLoader loader = new StringMockResourceLoader("");
|
||||
|
||||
public void test() throws Exception {
|
||||
List<Class<?>> analysisClasses = new ArrayList<Class<?>>();
|
||||
TestRandomChains.getClassesForPackage("org.apache.lucene.analysis", analysisClasses);
|
||||
List<Class<?>> analysisClasses = TestRandomChains.getClassesForPackage("org.apache.lucene.analysis");
|
||||
|
||||
for (final Class<?> c : analysisClasses) {
|
||||
final int modifiers = c.getModifiers();
|
||||
|
|
|
@ -25,6 +25,7 @@ import java.io.StringReader;
|
|||
import java.lang.reflect.Constructor;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Modifier;
|
||||
import java.net.URI;
|
||||
import java.net.URL;
|
||||
import java.nio.CharBuffer;
|
||||
import java.util.ArrayList;
|
||||
|
@ -165,8 +166,7 @@ public class TestRandomChains extends BaseTokenStreamTestCase {
|
|||
|
||||
@BeforeClass
|
||||
public static void beforeClass() throws Exception {
|
||||
List<Class<?>> analysisClasses = new ArrayList<Class<?>>();
|
||||
getClassesForPackage("org.apache.lucene.analysis", analysisClasses);
|
||||
List<Class<?>> analysisClasses = getClassesForPackage("org.apache.lucene.analysis");
|
||||
tokenizers = new ArrayList<Constructor<? extends Tokenizer>>();
|
||||
tokenfilters = new ArrayList<Constructor<? extends TokenFilter>>();
|
||||
charfilters = new ArrayList<Constructor<? extends CharFilter>>();
|
||||
|
@ -235,19 +235,30 @@ public class TestRandomChains extends BaseTokenStreamTestCase {
|
|||
private static <T> Constructor<T> castConstructor(Class<T> instanceClazz, Constructor<?> ctor) {
|
||||
return (Constructor<T>) ctor;
|
||||
}
|
||||
static void getClassesForPackage(String pckgname, List<Class<?>> classes) throws Exception {
|
||||
|
||||
public static List<Class<?>> getClassesForPackage(String pckgname) throws Exception {
|
||||
final List<Class<?>> classes = new ArrayList<Class<?>>();
|
||||
collectClassesForPackage(pckgname, classes);
|
||||
assertFalse("No classes found in package '"+pckgname+"'; maybe your test classes are packaged as JAR file?", classes.isEmpty());
|
||||
return classes;
|
||||
}
|
||||
|
||||
private static void collectClassesForPackage(String pckgname, List<Class<?>> classes) throws Exception {
|
||||
final ClassLoader cld = TestRandomChains.class.getClassLoader();
|
||||
final String path = pckgname.replace('.', '/');
|
||||
final Enumeration<URL> resources = cld.getResources(path);
|
||||
while (resources.hasMoreElements()) {
|
||||
final File directory = new File(resources.nextElement().toURI());
|
||||
final URI uri = resources.nextElement().toURI();
|
||||
if (!"file".equalsIgnoreCase(uri.getScheme()))
|
||||
continue;
|
||||
final File directory = new File(uri);
|
||||
if (directory.exists()) {
|
||||
String[] files = directory.list();
|
||||
for (String file : files) {
|
||||
if (new File(directory, file).isDirectory()) {
|
||||
// recurse
|
||||
String subPackage = pckgname + "." + file;
|
||||
getClassesForPackage(subPackage, classes);
|
||||
collectClassesForPackage(subPackage, classes);
|
||||
}
|
||||
if (file.endsWith(".class")) {
|
||||
String clazzName = file.substring(0, file.length() - 6);
|
||||
|
|
|
@ -25,6 +25,7 @@ import org.apache.solr.highlight.DefaultSolrHighlighter;
|
|||
import org.apache.solr.search.LRUCache;
|
||||
import org.junit.BeforeClass;
|
||||
import java.io.File;
|
||||
import java.net.URI;
|
||||
import java.net.URL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Enumeration;
|
||||
|
@ -94,7 +95,10 @@ public class SolrInfoMBeanTest extends SolrTestCaseJ4
|
|||
String path = pckgname.replace('.', '/');
|
||||
Enumeration<URL> resources = cld.getResources(path);
|
||||
while (resources.hasMoreElements()) {
|
||||
final File f = new File(resources.nextElement().toURI());
|
||||
final URI uri = resources.nextElement().toURI();
|
||||
if (!"file".equalsIgnoreCase(uri.getScheme()))
|
||||
continue;
|
||||
final File f = new File(uri);
|
||||
directories.add(f);
|
||||
}
|
||||
|
||||
|
@ -114,6 +118,7 @@ public class SolrInfoMBeanTest extends SolrTestCaseJ4
|
|||
}
|
||||
}
|
||||
}
|
||||
assertFalse("No classes found in package '"+pckgname+"'; maybe your test classes are packaged as JAR file?", classes.isEmpty());
|
||||
return classes;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue