blob: cb109e8daa7d4d06306cea09a954f3e347c38ff8 [file] [log] [blame]
The Android Open Source Projectf8057102009-03-15 16:47:16 -07001/*
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 Projectf8057102009-03-15 16:47:16 -070017import java.io.BufferedReader;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070018import java.io.File;
19import java.io.FileInputStream;
Urs Grobfc77f6e2009-04-17 02:07:14 -070020import java.io.FileReader;
Brett Chabot5977e942010-12-13 16:42:42 -080021import java.io.FilenameFilter;
Urs Grobfc77f6e2009-04-17 02:07:14 -070022import java.io.IOException;
23import java.lang.annotation.Annotation;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070024import java.lang.reflect.InvocationTargetException;
25import java.lang.reflect.Method;
26import java.util.ArrayList;
Brett Chabot5977e942010-12-13 16:42:42 -080027import java.util.Arrays;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070028import java.util.HashSet;
29import java.util.Iterator;
Urs Grobfc77f6e2009-04-17 02:07:14 -070030import java.util.LinkedHashMap;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070031import java.util.Map;
32import java.util.Set;
33
34import javax.xml.parsers.DocumentBuilderFactory;
35import javax.xml.parsers.ParserConfigurationException;
36
37import junit.framework.Test;
38import junit.framework.TestCase;
39import junit.framework.TestResult;
Urs Grobfc77f6e2009-04-17 02:07:14 -070040import junit.textui.ResultPrinter;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070041import junit.textui.TestRunner;
42
43import org.w3c.dom.Document;
44import org.w3c.dom.Element;
45import org.w3c.dom.Node;
46import org.w3c.dom.NodeList;
47
Brett Chabot5977e942010-12-13 16:42:42 -080048import vogar.ExpectationStore;
49import vogar.Expectation;
50import vogar.ModeId;
51
The Android Open Source Projectf8057102009-03-15 16:47:16 -070052public 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 Pleumann8a6c9f92009-05-07 01:33:15 -070057 static final String ATTRIBUTE_TARGET = "targetNameSpace";
58 static final String ATTRIBUTE_TARGET_BINARY = "targetBinaryName";
The Android Open Source Projectf8057102009-03-15 16:47:16 -070059 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 Pleumann8a6c9f92009-05-07 01:33:15 -070097 setAttribute(testPackageElem, ATTRIBUTE_TARGET_BINARY, target);
The Android Open Source Projectf8057102009-03-15 16:47:16 -070098 }
Jorg Pleumann8a6c9f92009-05-07 01:33:15 -070099 }
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700100 }
101
102 private static String OUTPUTFILE = "";
103 private static String MANIFESTFILE = "";
104 private static String TESTSUITECLASS = "";
105 private static String ANDROID_MAKE_FILE = "";
Brett Chabot5977e942010-12-13 16:42:42 -0800106 private static String EXPECTATION_DIR = null;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700107
108 private static Test TESTSUITE;
109
110 static XMLGenerator xmlGenerator;
Brett Chabot5977e942010-12-13 16:42:42 -0800111 private static ExpectationStore vogarExpectationStore;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700112
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 Chabot5977e942010-12-13 16:42:42 -0800119 EXPECTATION_DIR = args[3];
120 }
121 if (args.length > 4) {
122 ANDROID_MAKE_FILE = args[4];
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700123 }
124 } else {
125 System.out.println("usage: \n" +
Brett Chabot5977e942010-12-13 16:42:42 -0800126 "\t... CollectAllTests <output-file> <manifest-file> <testsuite-class-name> <makefile-file> <expectation-dir>");
Urs Grobfc77f6e2009-04-17 02:07:14 -0700127 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700128 }
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 Grobfc77f6e2009-04-17 02:07:14 -0700140 System.exit(1);;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700141 }
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 Grobfc77f6e2009-04-17 02:07:14 -0700158 System.exit(1);;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700159 }
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 Grobfc77f6e2009-04-17 02:07:14 -0700167 System.exit(1);;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700168 } catch (NoSuchMethodException e) {
169 System.err.println("failed to get suite method");
170 e.printStackTrace();
Urs Grobfc77f6e2009-04-17 02:07:14 -0700171 System.exit(1);;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700172 }
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 Grobfc77f6e2009-04-17 02:07:14 -0700179 System.exit(1);;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700180 } catch (IllegalAccessException e) {
181 System.err.println("failed to get suite method");
182 e.printStackTrace();
Urs Grobfc77f6e2009-04-17 02:07:14 -0700183 System.exit(1);;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700184 } catch (InvocationTargetException e) {
185 System.err.println("failed to get suite method");
186 e.printStackTrace();
Urs Grobfc77f6e2009-04-17 02:07:14 -0700187 System.exit(1);;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700188 }
189
190 try {
191 xmlGenerator = new MyXMLGenerator(OUTPUTFILE + ".xml");
192 } catch (ParserConfigurationException e) {
193 System.err.println("Can't initialize XML Generator");
Urs Grobfc77f6e2009-04-17 02:07:14 -0700194 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700195 }
196
Brett Chabot5977e942010-12-13 16:42:42 -0800197 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 Projectf8057102009-03-15 16:47:16 -0700205 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 Grobfc77f6e2009-04-17 02:07:14 -0700215 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700216 }
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 Grobfc77f6e2009-04-17 02:07:14 -0700228 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700229 }
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 Grobfc77f6e2009-04-17 02:07:14 -0700272 TestRunner runner = new TestRunner() {
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700273 @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 Muramatsub8ed3162010-07-13 12:43:52 -0700287
288
289
Urs Grobfc77f6e2009-04-17 02:07:14 -0700290 };
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700291
Urs Grobfc77f6e2009-04-17 02:07:14 -0700292 runner.setPrinter(new ResultPrinter(System.out) {
293 @Override
294 protected void printFooter(TestResult result) {
295 }
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700296
Urs Grobfc77f6e2009-04-17 02:07:14 -0700297 @Override
298 protected void printHeader(long runTime) {
299 }
300 });
301 runner.doRun(TESTSUITE);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700302 }
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700303
Urs Grobfc77f6e2009-04-17 02:07:14 -0700304 private String getKnownFailure(final Class<? extends TestCase> testClass,
305 final String testName) {
306 return getAnnotation(testClass, testName, KNOWN_FAILURE);
307 }
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700308
309 private boolean isKnownFailure(final Class<? extends TestCase> testClass,
310 final String testName) {
311 return getAnnotation(testClass, testName, KNOWN_FAILURE) != null;
312 }
313
Urs Grobfc77f6e2009-04-17 02:07:14 -0700314 private boolean isBrokenTest(final Class<? extends TestCase> testClass,
315 final String testName) {
316 return getAnnotation(testClass, testName, BROKEN_TEST) != null;
317 }
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700318
Brian Muramatsu168beb02010-10-21 12:39:45 -0700319 private boolean isSuppressed(final Class<? extends TestCase> testClass,
320 final String testName) {
321 return getAnnotation(testClass, testName, SUPPRESSED_TEST) != null;
322 }
323
Brian Muramatsu282c6fe2011-01-18 17:14:15 -0800324 private boolean hasSideEffects(final Class<? extends TestCase> testClass,
325 final String testName) {
326 return getAnnotation(testClass, testName, SIDE_EFFECT) != null;
327 }
328
Brett Chabot5977e942010-12-13 16:42:42 -0800329 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 Grobfc77f6e2009-04-17 02:07:14 -0700338 private String getAnnotation(final Class<? extends TestCase> testClass,
339 final String testName, final String annotationName) {
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700340 try {
Urs Grobfc77f6e2009-04-17 02:07:14 -0700341 Method testMethod = testClass.getMethod(testName, (Class[])null);
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700342 Annotation[] annotations = testMethod.getAnnotations();
343 for (Annotation annot : annotations) {
344
Urs Grobfc77f6e2009-04-17 02:07:14 -0700345 if (annot.annotationType().getName().equals(annotationName)) {
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700346 String annotStr = annot.toString();
347 String knownFailure = null;
348 if (annotStr.contains("(value=")) {
349 knownFailure =
Urs Grobfc77f6e2009-04-17 02:07:14 -0700350 annotStr.substring(annotStr.indexOf("=") + 1,
351 annotStr.length() - 1);
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700352
353 }
354
355 if (knownFailure == null) {
356 knownFailure = "true";
357 }
358
359 return knownFailure;
360 }
361
362 }
363
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700364 } catch (java.lang.NoSuchMethodException e) {
365 }
366
367 return null;
368 }
369
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700370 private void addToTests(TestCase test) {
371
372 String testClassName = test.getClass().getName();
373 String testName = test.getName();
Urs Grobfc77f6e2009-04-17 02:07:14 -0700374 String knownFailure = getKnownFailure(test.getClass(), testName);
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700375
376 if (isKnownFailure(test.getClass(), testName)) {
377 System.out.println("ignoring known failure: " + test);
378 return;
379 } else if (isBrokenTest(test.getClass(), testName)) {
Urs Grobfc77f6e2009-04-17 02:07:14 -0700380 System.out.println("ignoring broken test: " + test);
381 return;
Brian Muramatsu168beb02010-10-21 12:39:45 -0700382 } else if (isSuppressed(test.getClass(), testName)) {
383 System.out.println("ignoring suppressed test: " + test);
384 return;
Brian Muramatsu282c6fe2011-01-18 17:14:15 -0800385 } else if (hasSideEffects(test.getClass(), testName)) {
386 System.out.println("ignoring test with side effects: " + test);
387 return;
Brett Chabot5977e942010-12-13 16:42:42 -0800388 } else if (isVogarKnownFailure(test.getClass(), testName)) {
389 System.out.println("ignoring vogar known failure: " + test);
390 return;
Urs Grobfc77f6e2009-04-17 02:07:14 -0700391 }
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700392
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700393 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 Muramatsu168beb02010-10-21 12:39:45 -0700409 testClass.mCases.add(new TestMethod(testName, "", "", knownFailure, false, false));
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700410
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 Chabot5977e942010-12-13 16:42:42 -0800419
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 Projectf8057102009-03-15 16:47:16 -0700441}