Java tutorial
/* * AndFHEM - Open Source Android application to control a FHEM home automation * server. * * Copyright (c) 2011, Matthias Klass or third-party contributors as * indicated by the @author tags or express copyright attribution * statements applied by the authors. All third-party contributions are * distributed under license by Red Hat Inc. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU GENERAL PUBLIC LICENSE, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU GENERAL PUBLIC LICENSE * for more details. * * You should have received a copy of the GNU GENERAL PUBLIC LICENSE * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package li.klass.fhem.testsuite.category; import org.apache.commons.io.FileUtils; import org.junit.experimental.categories.Categories; import org.junit.experimental.categories.Category; import org.junit.runner.Description; import org.junit.runner.manipulation.Filter; import org.junit.runner.manipulation.NoTestsRemainException; import org.junit.runners.Suite; import org.junit.runners.model.InitializationError; import org.junit.runners.model.RunnerBuilder; import java.io.File; import java.lang.reflect.Modifier; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; public class CategorySuite extends Suite { public static class CategoryFilter extends Filter { public static CategoryFilter include(Class<?> categoryType) { return new CategoryFilter(categoryType, null); } private final Class<?> fIncluded; private final Class<?> fExcluded; public CategoryFilter(Class<?> includedCategory, Class<?> excludedCategory) { fIncluded = includedCategory; fExcluded = excludedCategory; } @Override public String describe() { return "category " + fIncluded; } @Override public boolean shouldRun(Description description) { if (hasCorrectCategoryAnnotation(description)) return true; for (Description each : description.getChildren()) if (shouldRun(each)) return true; return false; } private boolean hasCorrectCategoryAnnotation(Description description) { List<Class<?>> categories = categories(description); if (categories.isEmpty()) return fIncluded == null; for (Class<?> each : categories) if (fExcluded != null && fExcluded.isAssignableFrom(each)) return false; for (Class<?> each : categories) if (fIncluded == null || fIncluded.isAssignableFrom(each)) return true; return false; } private List<Class<?>> categories(Description description) { ArrayList<Class<?>> categories = new ArrayList<Class<?>>(); categories.addAll(Arrays.asList(directCategories(description))); categories.addAll(Arrays.asList(directCategories(parentDescription(description.getTestClass())))); return categories; } private Description parentDescription(Class<?> testClass) { if (testClass == null) return null; if (!testClass.isAnnotationPresent(Category.class) && testClass.getSuperclass() != null) { return parentDescription(testClass.getSuperclass()); } return Description.createSuiteDescription(testClass); } private Class<?>[] directCategories(Description description) { if (description == null) return new Class<?>[0]; Category annotation = description.getAnnotation(Category.class); if (annotation == null) return new Class<?>[0]; return annotation.value(); } } public CategorySuite(Class<?> cls, RunnerBuilder builder) throws InitializationError { super(builder, cls, getSuiteClasses()); try { filter(new CategoryFilter(getIncludedCategory(cls), getExcludedCategory(cls))); } catch (NoTestsRemainException e) { throw new InitializationError(e); } } private Class<?> getIncludedCategory(Class<?> cls) { Categories.IncludeCategory annotation = cls.getAnnotation(Categories.IncludeCategory.class); return annotation == null ? null : annotation.value(); } private Class<?> getExcludedCategory(Class<?> cls) { Categories.ExcludeCategory annotation = cls.getAnnotation(Categories.ExcludeCategory.class); return annotation == null ? null : annotation.value(); } private static Class<?>[] getSuiteClasses() { String basePath = getBasePath(); File basePathFile = new File(basePath); Collection javaFiles = FileUtils.listFiles(basePathFile, new String[] { "java" }, true); ArrayList<Class<?>> result = new ArrayList<Class<?>>(); for (Object fileObject : javaFiles) { File file = (File) fileObject; Class<?> cls = toClass(file, basePath); if (cls == null || Modifier.isAbstract(cls.getModifiers())) { continue; } result.add(cls); } return result.toArray(new Class<?>[result.size()]); } protected static Class<?> toClass(File file, String basePath) { try { return Class.forName(toClassName(file, basePath)); } catch (ClassNotFoundException e) { return null; } } protected static String toClassName(File file, String basePath) { String filePath = file.getAbsolutePath(); filePath = filePath.substring(basePath.length()); filePath = filePath.replace("/src/testFunctionalityIsSetOnAllDevices/java/", ""); filePath = filePath.replace(".java", ""); filePath = filePath.replaceAll("/", "."); return filePath; } private static String getBasePath() { String absolutePath = new File("").getAbsolutePath(); if (!absolutePath.endsWith("tests")) { absolutePath = absolutePath + "/tests"; } return absolutePath; } }