The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 17 | import java.io.BufferedReader; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 18 | import java.io.File; |
| 19 | import java.io.FileInputStream; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 20 | import java.io.FileReader; |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 21 | import java.io.FilenameFilter; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 22 | import java.io.IOException; |
| 23 | import java.lang.annotation.Annotation; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 24 | import java.lang.reflect.InvocationTargetException; |
| 25 | import java.lang.reflect.Method; |
| 26 | import java.util.ArrayList; |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 27 | import java.util.Arrays; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 28 | import java.util.HashSet; |
| 29 | import java.util.Iterator; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 30 | import java.util.LinkedHashMap; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 31 | import java.util.Map; |
| 32 | import java.util.Set; |
| 33 | |
| 34 | import javax.xml.parsers.DocumentBuilderFactory; |
| 35 | import javax.xml.parsers.ParserConfigurationException; |
| 36 | |
| 37 | import junit.framework.Test; |
| 38 | import junit.framework.TestCase; |
| 39 | import junit.framework.TestResult; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 40 | import junit.textui.ResultPrinter; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 41 | import junit.textui.TestRunner; |
| 42 | |
| 43 | import org.w3c.dom.Document; |
| 44 | import org.w3c.dom.Element; |
| 45 | import org.w3c.dom.Node; |
| 46 | import org.w3c.dom.NodeList; |
| 47 | |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 48 | import vogar.ExpectationStore; |
| 49 | import vogar.Expectation; |
| 50 | import vogar.ModeId; |
| 51 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 52 | public class CollectAllTests extends DescriptionGenerator { |
| 53 | |
| 54 | static final String ATTRIBUTE_RUNNER = "runner"; |
| 55 | static final String ATTRIBUTE_PACKAGE = "appPackageName"; |
| 56 | static final String ATTRIBUTE_NS = "appNameSpace"; |
Jorg Pleumann | 8a6c9f9 | 2009-05-07 01:33:15 -0700 | [diff] [blame] | 57 | static final String ATTRIBUTE_TARGET = "targetNameSpace"; |
| 58 | static final String ATTRIBUTE_TARGET_BINARY = "targetBinaryName"; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 59 | static final String ATTRIBUTE_HOST_SIDE_ONLY = "hostSideOnly"; |
| 60 | static final String ATTRIBUTE_JAR_PATH = "jarPath"; |
| 61 | |
| 62 | static final String JAR_PATH = "LOCAL_JAR_PATH :="; |
| 63 | static final String TEST_TYPE = "LOCAL_TEST_TYPE :"; |
| 64 | |
| 65 | static final int HOST_SIDE_ONLY = 1; |
| 66 | static final int DEVICE_SIDE_ONLY = 2; |
| 67 | |
| 68 | private static String runner; |
| 69 | private static String packageName; |
| 70 | private static String target; |
| 71 | private static String xmlName; |
| 72 | private static int testType; |
| 73 | private static String jarPath; |
| 74 | |
| 75 | private static Map<String,TestClass> testCases; |
| 76 | private static Set<String> failed = new HashSet<String>(); |
| 77 | |
| 78 | private static class MyXMLGenerator extends XMLGenerator { |
| 79 | |
| 80 | MyXMLGenerator(String outputPath) throws ParserConfigurationException { |
| 81 | super(outputPath); |
| 82 | |
| 83 | Node testPackageElem = mDoc.getDocumentElement(); |
| 84 | |
| 85 | setAttribute(testPackageElem, ATTRIBUTE_NAME, xmlName); |
| 86 | setAttribute(testPackageElem, ATTRIBUTE_RUNNER, runner); |
| 87 | setAttribute(testPackageElem, ATTRIBUTE_PACKAGE, packageName); |
| 88 | setAttribute(testPackageElem, ATTRIBUTE_NS, packageName); |
| 89 | |
| 90 | if (testType == HOST_SIDE_ONLY) { |
| 91 | setAttribute(testPackageElem, ATTRIBUTE_HOST_SIDE_ONLY, "true"); |
| 92 | setAttribute(testPackageElem, ATTRIBUTE_JAR_PATH, jarPath); |
| 93 | } |
| 94 | |
| 95 | if (!packageName.equals(target)) { |
| 96 | setAttribute(testPackageElem, ATTRIBUTE_TARGET, target); |
Jorg Pleumann | 8a6c9f9 | 2009-05-07 01:33:15 -0700 | [diff] [blame] | 97 | setAttribute(testPackageElem, ATTRIBUTE_TARGET_BINARY, target); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 98 | } |
Jorg Pleumann | 8a6c9f9 | 2009-05-07 01:33:15 -0700 | [diff] [blame] | 99 | } |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | private static String OUTPUTFILE = ""; |
| 103 | private static String MANIFESTFILE = ""; |
| 104 | private static String TESTSUITECLASS = ""; |
| 105 | private static String ANDROID_MAKE_FILE = ""; |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 106 | private static String EXPECTATION_DIR = null; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 107 | |
| 108 | private static Test TESTSUITE; |
| 109 | |
| 110 | static XMLGenerator xmlGenerator; |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 111 | private static ExpectationStore vogarExpectationStore; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 112 | |
| 113 | public static void main(String[] args) { |
| 114 | if (args.length > 2) { |
| 115 | OUTPUTFILE = args[0]; |
| 116 | MANIFESTFILE = args [1]; |
| 117 | TESTSUITECLASS = args[2]; |
| 118 | if (args.length > 3) { |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 119 | EXPECTATION_DIR = args[3]; |
| 120 | } |
| 121 | if (args.length > 4) { |
| 122 | ANDROID_MAKE_FILE = args[4]; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 123 | } |
| 124 | } else { |
| 125 | System.out.println("usage: \n" + |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 126 | "\t... CollectAllTests <output-file> <manifest-file> <testsuite-class-name> <makefile-file> <expectation-dir>"); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 127 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | if (ANDROID_MAKE_FILE.length() > 0) { |
| 131 | testType = getTestType(ANDROID_MAKE_FILE); |
| 132 | } |
| 133 | |
| 134 | Document manifest = null; |
| 135 | try { |
| 136 | manifest = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new FileInputStream(MANIFESTFILE)); |
| 137 | } catch (Exception e) { |
| 138 | System.err.println("cannot open manifest"); |
| 139 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 140 | System.exit(1);; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | Element documentElement = manifest.getDocumentElement(); |
| 144 | |
| 145 | documentElement.getAttribute("package"); |
| 146 | |
| 147 | xmlName = new File(OUTPUTFILE).getName(); |
| 148 | runner = getElementAttribute(documentElement, "instrumentation", "android:name"); |
| 149 | packageName = documentElement.getAttribute("package"); |
| 150 | target = getElementAttribute(documentElement, "instrumentation", "android:targetPackage"); |
| 151 | |
| 152 | Class<?> testClass = null; |
| 153 | try { |
| 154 | testClass = Class.forName(TESTSUITECLASS); |
| 155 | } catch (ClassNotFoundException e) { |
| 156 | System.err.println("test class not found"); |
| 157 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 158 | System.exit(1);; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | Method method = null; |
| 162 | try { |
| 163 | method = testClass.getMethod("suite", new Class<?>[0]); |
| 164 | } catch (SecurityException e) { |
| 165 | System.err.println("failed to get suite method"); |
| 166 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 167 | System.exit(1);; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 168 | } catch (NoSuchMethodException e) { |
| 169 | System.err.println("failed to get suite method"); |
| 170 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 171 | System.exit(1);; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | try { |
| 175 | TESTSUITE = (Test) method.invoke(null, (Object[])null); |
| 176 | } catch (IllegalArgumentException e) { |
| 177 | System.err.println("failed to get suite method"); |
| 178 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 179 | System.exit(1);; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 180 | } catch (IllegalAccessException e) { |
| 181 | System.err.println("failed to get suite method"); |
| 182 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 183 | System.exit(1);; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 184 | } catch (InvocationTargetException e) { |
| 185 | System.err.println("failed to get suite method"); |
| 186 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 187 | System.exit(1);; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | try { |
| 191 | xmlGenerator = new MyXMLGenerator(OUTPUTFILE + ".xml"); |
| 192 | } catch (ParserConfigurationException e) { |
| 193 | System.err.println("Can't initialize XML Generator"); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 194 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 197 | try { |
| 198 | vogarExpectationStore = provideExpectationStore(EXPECTATION_DIR); |
| 199 | } catch (IOException e) { |
| 200 | System.err.println("Can't initialize vogar expectation store"); |
| 201 | e.printStackTrace(System.err); |
| 202 | System.exit(1); |
| 203 | } |
| 204 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 205 | testCases = new LinkedHashMap<String, TestClass>(); |
| 206 | CollectAllTests cat = new CollectAllTests(); |
| 207 | cat.compose(); |
| 208 | |
| 209 | if (!failed.isEmpty()) { |
| 210 | System.err.println("The following classes have no default constructor"); |
| 211 | for (Iterator<String> iterator = failed.iterator(); iterator.hasNext();) { |
| 212 | String type = iterator.next(); |
| 213 | System.err.println(type); |
| 214 | } |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 215 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | for (Iterator<TestClass> iterator = testCases.values().iterator(); iterator.hasNext();) { |
| 219 | TestClass type = iterator.next(); |
| 220 | xmlGenerator.addTestClass(type); |
| 221 | } |
| 222 | |
| 223 | try { |
| 224 | xmlGenerator.dump(); |
| 225 | } catch (Exception e) { |
| 226 | System.err.println("cannot dump xml"); |
| 227 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 228 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 229 | } |
| 230 | } |
| 231 | |
| 232 | private static int getTestType(String makeFileName) { |
| 233 | |
| 234 | int type = DEVICE_SIDE_ONLY; |
| 235 | try { |
| 236 | BufferedReader reader = new BufferedReader(new FileReader(makeFileName)); |
| 237 | String line; |
| 238 | |
| 239 | while ((line =reader.readLine())!=null) { |
| 240 | if (line.startsWith(TEST_TYPE)) { |
| 241 | type = HOST_SIDE_ONLY; |
| 242 | } else if (line.startsWith(JAR_PATH)) { |
| 243 | jarPath = line.substring(JAR_PATH.length(), line.length()).trim(); |
| 244 | } |
| 245 | } |
| 246 | reader.close(); |
| 247 | } catch (IOException e) { |
| 248 | } |
| 249 | |
| 250 | return type; |
| 251 | } |
| 252 | |
| 253 | private static Element getElement(Element element, String tagName) { |
| 254 | NodeList elements = element.getElementsByTagName(tagName); |
| 255 | if (elements.getLength() > 0) { |
| 256 | return (Element) elements.item(0); |
| 257 | } else { |
| 258 | return null; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | private static String getElementAttribute(Element element, String elementName, String attributeName) { |
| 263 | Element e = getElement(element, elementName); |
| 264 | if (e != null) { |
| 265 | return e.getAttribute(attributeName); |
| 266 | } else { |
| 267 | return ""; |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | public void compose() { |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 272 | TestRunner runner = new TestRunner() { |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 273 | @Override |
| 274 | protected TestResult createTestResult() { |
| 275 | return new TestResult() { |
| 276 | @Override |
| 277 | protected void run(TestCase test) { |
| 278 | addToTests(test); |
| 279 | } |
| 280 | }; |
| 281 | } |
| 282 | |
| 283 | @Override |
| 284 | public TestResult doRun(Test test) { |
| 285 | return super.doRun(test); |
| 286 | } |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 287 | |
| 288 | |
| 289 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 290 | }; |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 291 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 292 | runner.setPrinter(new ResultPrinter(System.out) { |
| 293 | @Override |
| 294 | protected void printFooter(TestResult result) { |
| 295 | } |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 296 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 297 | @Override |
| 298 | protected void printHeader(long runTime) { |
| 299 | } |
| 300 | }); |
| 301 | runner.doRun(TESTSUITE); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 302 | } |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 303 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 304 | private String getKnownFailure(final Class<? extends TestCase> testClass, |
| 305 | final String testName) { |
| 306 | return getAnnotation(testClass, testName, KNOWN_FAILURE); |
| 307 | } |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 308 | |
| 309 | private boolean isKnownFailure(final Class<? extends TestCase> testClass, |
| 310 | final String testName) { |
| 311 | return getAnnotation(testClass, testName, KNOWN_FAILURE) != null; |
| 312 | } |
| 313 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 314 | private boolean isBrokenTest(final Class<? extends TestCase> testClass, |
| 315 | final String testName) { |
| 316 | return getAnnotation(testClass, testName, BROKEN_TEST) != null; |
| 317 | } |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 318 | |
Brian Muramatsu | 168beb0 | 2010-10-21 12:39:45 -0700 | [diff] [blame] | 319 | private boolean isSuppressed(final Class<? extends TestCase> testClass, |
| 320 | final String testName) { |
| 321 | return getAnnotation(testClass, testName, SUPPRESSED_TEST) != null; |
| 322 | } |
| 323 | |
Brian Muramatsu | 282c6fe | 2011-01-18 17:14:15 -0800 | [diff] [blame^] | 324 | private boolean hasSideEffects(final Class<? extends TestCase> testClass, |
| 325 | final String testName) { |
| 326 | return getAnnotation(testClass, testName, SIDE_EFFECT) != null; |
| 327 | } |
| 328 | |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 329 | private boolean isVogarKnownFailure(final Class<? extends TestCase> testClass, |
| 330 | final String testName) { |
| 331 | if (vogarExpectationStore == null) { |
| 332 | return false; |
| 333 | } |
| 334 | String fullTestName = String.format("%s#%s", testClass.getName(), testName); |
| 335 | return vogarExpectationStore.get(fullTestName) != Expectation.SUCCESS; |
| 336 | } |
| 337 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 338 | private String getAnnotation(final Class<? extends TestCase> testClass, |
| 339 | final String testName, final String annotationName) { |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 340 | try { |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 341 | Method testMethod = testClass.getMethod(testName, (Class[])null); |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 342 | Annotation[] annotations = testMethod.getAnnotations(); |
| 343 | for (Annotation annot : annotations) { |
| 344 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 345 | if (annot.annotationType().getName().equals(annotationName)) { |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 346 | String annotStr = annot.toString(); |
| 347 | String knownFailure = null; |
| 348 | if (annotStr.contains("(value=")) { |
| 349 | knownFailure = |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 350 | annotStr.substring(annotStr.indexOf("=") + 1, |
| 351 | annotStr.length() - 1); |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 352 | |
| 353 | } |
| 354 | |
| 355 | if (knownFailure == null) { |
| 356 | knownFailure = "true"; |
| 357 | } |
| 358 | |
| 359 | return knownFailure; |
| 360 | } |
| 361 | |
| 362 | } |
| 363 | |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 364 | } catch (java.lang.NoSuchMethodException e) { |
| 365 | } |
| 366 | |
| 367 | return null; |
| 368 | } |
| 369 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 370 | private void addToTests(TestCase test) { |
| 371 | |
| 372 | String testClassName = test.getClass().getName(); |
| 373 | String testName = test.getName(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 374 | String knownFailure = getKnownFailure(test.getClass(), testName); |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 375 | |
| 376 | if (isKnownFailure(test.getClass(), testName)) { |
| 377 | System.out.println("ignoring known failure: " + test); |
| 378 | return; |
| 379 | } else if (isBrokenTest(test.getClass(), testName)) { |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 380 | System.out.println("ignoring broken test: " + test); |
| 381 | return; |
Brian Muramatsu | 168beb0 | 2010-10-21 12:39:45 -0700 | [diff] [blame] | 382 | } else if (isSuppressed(test.getClass(), testName)) { |
| 383 | System.out.println("ignoring suppressed test: " + test); |
| 384 | return; |
Brian Muramatsu | 282c6fe | 2011-01-18 17:14:15 -0800 | [diff] [blame^] | 385 | } else if (hasSideEffects(test.getClass(), testName)) { |
| 386 | System.out.println("ignoring test with side effects: " + test); |
| 387 | return; |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 388 | } else if (isVogarKnownFailure(test.getClass(), testName)) { |
| 389 | System.out.println("ignoring vogar known failure: " + test); |
| 390 | return; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 391 | } |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 392 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 393 | if (!testName.startsWith("test")) { |
| 394 | try { |
| 395 | test.runBare(); |
| 396 | } catch (Throwable e) { |
| 397 | e.printStackTrace(); |
| 398 | return; |
| 399 | } |
| 400 | } |
| 401 | TestClass testClass = null; |
| 402 | if (testCases.containsKey(testClassName)) { |
| 403 | testClass = testCases.get(testClassName); |
| 404 | } else { |
| 405 | testClass = new TestClass(testClassName, new ArrayList<TestMethod>()); |
| 406 | testCases.put(testClassName, testClass); |
| 407 | } |
| 408 | |
Brian Muramatsu | 168beb0 | 2010-10-21 12:39:45 -0700 | [diff] [blame] | 409 | testClass.mCases.add(new TestMethod(testName, "", "", knownFailure, false, false)); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 410 | |
| 411 | try { |
| 412 | test.getClass().getConstructor(new Class<?>[0]); |
| 413 | } catch (SecurityException e) { |
| 414 | failed.add(test.getClass().getName()); |
| 415 | } catch (NoSuchMethodException e) { |
| 416 | failed.add(test.getClass().getName()); |
| 417 | } |
| 418 | } |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 419 | |
| 420 | public static ExpectationStore provideExpectationStore(String dir) throws IOException { |
| 421 | if (dir == null) { |
| 422 | return null; |
| 423 | } |
| 424 | ExpectationStore result = ExpectationStore.parse(getExpectationFiles(dir), ModeId.DEVICE); |
| 425 | return result; |
| 426 | } |
| 427 | |
| 428 | private static Set<File> getExpectationFiles(String dir) { |
| 429 | Set<File> expectSet = new HashSet<File>(); |
| 430 | File[] files = new File(dir).listFiles(new FilenameFilter() { |
| 431 | // ignore obviously temporary files |
| 432 | public boolean accept(File dir, String name) { |
| 433 | return !name.endsWith("~") && !name.startsWith("."); |
| 434 | } |
| 435 | }); |
| 436 | if (files != null) { |
| 437 | expectSet.addAll(Arrays.asList(files)); |
| 438 | } |
| 439 | return expectSet; |
| 440 | } |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 441 | } |