blob: 44f257d3316225b6eb3f3c7e48e9979690e60a13 [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
Brian Muramatsu7f64e852011-02-17 16:52:16 -080017import org.w3c.dom.Document;
18import org.w3c.dom.Element;
19import org.w3c.dom.Node;
20import org.w3c.dom.NodeList;
21
22import vogar.Expectation;
23import vogar.ExpectationStore;
24import vogar.ModeId;
25
The Android Open Source Projectf8057102009-03-15 16:47:16 -070026import java.io.BufferedReader;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070027import java.io.File;
28import java.io.FileInputStream;
Urs Grobfc77f6e2009-04-17 02:07:14 -070029import java.io.FileReader;
Brett Chabot5977e942010-12-13 16:42:42 -080030import java.io.FilenameFilter;
Urs Grobfc77f6e2009-04-17 02:07:14 -070031import java.io.IOException;
32import java.lang.annotation.Annotation;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070033import java.lang.reflect.InvocationTargetException;
34import java.lang.reflect.Method;
Brian Carlstrom9f2dab82011-04-01 15:47:17 -070035import java.lang.reflect.Modifier;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070036import java.util.ArrayList;
Brett Chabot5977e942010-12-13 16:42:42 -080037import java.util.Arrays;
Brian Carlstrom9f2dab82011-04-01 15:47:17 -070038import java.util.Enumeration;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070039import java.util.HashSet;
40import java.util.Iterator;
Urs Grobfc77f6e2009-04-17 02:07:14 -070041import java.util.LinkedHashMap;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070042import java.util.Map;
43import java.util.Set;
Brian Carlstrom9f2dab82011-04-01 15:47:17 -070044import java.util.jar.JarEntry;
45import java.util.jar.JarFile;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070046
47import javax.xml.parsers.DocumentBuilderFactory;
48import javax.xml.parsers.ParserConfigurationException;
49
50import junit.framework.Test;
51import junit.framework.TestCase;
52import junit.framework.TestResult;
Urs Grobfc77f6e2009-04-17 02:07:14 -070053import junit.textui.ResultPrinter;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070054import junit.textui.TestRunner;
55
The Android Open Source Projectf8057102009-03-15 16:47:16 -070056public class CollectAllTests extends DescriptionGenerator {
57
58 static final String ATTRIBUTE_RUNNER = "runner";
59 static final String ATTRIBUTE_PACKAGE = "appPackageName";
60 static final String ATTRIBUTE_NS = "appNameSpace";
Jorg Pleumann8a6c9f92009-05-07 01:33:15 -070061 static final String ATTRIBUTE_TARGET = "targetNameSpace";
62 static final String ATTRIBUTE_TARGET_BINARY = "targetBinaryName";
The Android Open Source Projectf8057102009-03-15 16:47:16 -070063 static final String ATTRIBUTE_HOST_SIDE_ONLY = "hostSideOnly";
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070064 static final String ATTRIBUTE_VM_HOST_TEST = "vmHostTest";
The Android Open Source Projectf8057102009-03-15 16:47:16 -070065 static final String ATTRIBUTE_JAR_PATH = "jarPath";
66
67 static final String JAR_PATH = "LOCAL_JAR_PATH :=";
68 static final String TEST_TYPE = "LOCAL_TEST_TYPE :";
69
70 static final int HOST_SIDE_ONLY = 1;
71 static final int DEVICE_SIDE_ONLY = 2;
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070072 static final int VM_HOST_TEST = 3;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070073
74 private static String runner;
75 private static String packageName;
76 private static String target;
77 private static String xmlName;
78 private static int testType;
79 private static String jarPath;
80
81 private static Map<String,TestClass> testCases;
The Android Open Source Projectf8057102009-03-15 16:47:16 -070082
83 private static class MyXMLGenerator extends XMLGenerator {
84
85 MyXMLGenerator(String outputPath) throws ParserConfigurationException {
86 super(outputPath);
87
88 Node testPackageElem = mDoc.getDocumentElement();
89
90 setAttribute(testPackageElem, ATTRIBUTE_NAME, xmlName);
91 setAttribute(testPackageElem, ATTRIBUTE_RUNNER, runner);
92 setAttribute(testPackageElem, ATTRIBUTE_PACKAGE, packageName);
93 setAttribute(testPackageElem, ATTRIBUTE_NS, packageName);
94
95 if (testType == HOST_SIDE_ONLY) {
96 setAttribute(testPackageElem, ATTRIBUTE_HOST_SIDE_ONLY, "true");
97 setAttribute(testPackageElem, ATTRIBUTE_JAR_PATH, jarPath);
98 }
99
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -0700100 if (testType == VM_HOST_TEST) {
101 setAttribute(testPackageElem, ATTRIBUTE_VM_HOST_TEST, "true");
102 setAttribute(testPackageElem, ATTRIBUTE_JAR_PATH, jarPath);
103 }
104
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700105 if (!packageName.equals(target)) {
106 setAttribute(testPackageElem, ATTRIBUTE_TARGET, target);
Jorg Pleumann8a6c9f92009-05-07 01:33:15 -0700107 setAttribute(testPackageElem, ATTRIBUTE_TARGET_BINARY, target);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700108 }
Jorg Pleumann8a6c9f92009-05-07 01:33:15 -0700109 }
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700110 }
111
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700112 private static String OUTPUTFILE;
113 private static String MANIFESTFILE;
114 private static String JARFILE;
115 private static String LIBCORE_EXPECTATION_DIR;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700116 private static String ANDROID_MAKE_FILE = "";
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700117
118 static XMLGenerator xmlGenerator;
Brian Muramatsu7f64e852011-02-17 16:52:16 -0800119 private static ExpectationStore libcoreVogarExpectationStore;
120 private static ExpectationStore ctsVogarExpectationStore;
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700121
122 public static void main(String[] args) {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700123 if (args.length >= 3 && args.length <= 5) {
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700124 OUTPUTFILE = args[0];
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700125 MANIFESTFILE = args[1];
126 JARFILE = args[2];
127 if (args.length >= 4) {
Brian Muramatsu7f64e852011-02-17 16:52:16 -0800128 LIBCORE_EXPECTATION_DIR = args[3];
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700129 if (args.length >= 5) {
130 ANDROID_MAKE_FILE = args[4];
131 }
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700132 }
133 } else {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700134 System.err.println("usage: CollectAllTests <output-file> <manifest-file> <jar-file>"
135 + "[expectation-dir [makefile-file]]");
Urs Grobfc77f6e2009-04-17 02:07:14 -0700136 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700137 }
138
139 if (ANDROID_MAKE_FILE.length() > 0) {
140 testType = getTestType(ANDROID_MAKE_FILE);
141 }
142
143 Document manifest = null;
144 try {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700145 manifest = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(
146 new FileInputStream(MANIFESTFILE));
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700147 } catch (Exception e) {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700148 System.err.println("cannot open manifest " + MANIFESTFILE);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700149 e.printStackTrace();
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700150 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700151 }
152
153 Element documentElement = manifest.getDocumentElement();
154
155 documentElement.getAttribute("package");
156
157 xmlName = new File(OUTPUTFILE).getName();
158 runner = getElementAttribute(documentElement, "instrumentation", "android:name");
159 packageName = documentElement.getAttribute("package");
160 target = getElementAttribute(documentElement, "instrumentation", "android:targetPackage");
161
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700162 try {
163 xmlGenerator = new MyXMLGenerator(OUTPUTFILE + ".xml");
164 } catch (ParserConfigurationException e) {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700165 System.err.println("Can't initialize XML Generator " + OUTPUTFILE + ".xml");
Urs Grobfc77f6e2009-04-17 02:07:14 -0700166 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700167 }
168
Brett Chabot5977e942010-12-13 16:42:42 -0800169 try {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700170 libcoreVogarExpectationStore
171 = VogarUtils.provideExpectationStore(LIBCORE_EXPECTATION_DIR);
Brian Muramatsu7f64e852011-02-17 16:52:16 -0800172 ctsVogarExpectationStore = VogarUtils.provideExpectationStore(CTS_EXPECTATION_DIR);
Brett Chabot5977e942010-12-13 16:42:42 -0800173 } catch (IOException e) {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700174 System.err.println("Can't initialize vogar expectation store from "
175 + LIBCORE_EXPECTATION_DIR);
Brett Chabot5977e942010-12-13 16:42:42 -0800176 e.printStackTrace(System.err);
177 System.exit(1);
178 }
179
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700180 JarFile jarFile = null;
181 try {
182 jarFile = new JarFile(JARFILE);
183 } catch (Exception e) {
184 System.err.println("cannot open jarfile " + JARFILE);
185 e.printStackTrace();
Urs Grobfc77f6e2009-04-17 02:07:14 -0700186 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700187 }
188
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700189 testCases = new LinkedHashMap<String, TestClass>();
190
191 Enumeration<JarEntry> jarEntries = jarFile.entries();
192 while (jarEntries.hasMoreElements()) {
193 JarEntry jarEntry = jarEntries.nextElement();
194 String name = jarEntry.getName();
195 if (!name.endsWith(".class")) {
196 continue;
197 }
198 String className
199 = name.substring(0, name.length() - ".class".length()).replace('/', '.');
200 try {
201 Class<?> klass = Class.forName(className,
202 false,
203 CollectAllTests.class.getClassLoader());
204 if (!TestCase.class.isAssignableFrom(klass)) {
205 continue;
206 }
207 if (Modifier.isAbstract(klass.getModifiers())) {
208 continue;
209 }
210 if (!Modifier.isPublic(klass.getModifiers())) {
211 continue;
212 }
213 try {
214 klass.getConstructor(new Class<?>[] { String.class } );
215 addToTests(klass.asSubclass(TestCase.class));
216 continue;
217 } catch (NoSuchMethodException e) {
218 }
219 try {
220 klass.getConstructor(new Class<?>[0]);
221 addToTests(klass.asSubclass(TestCase.class));
222 continue;
223 } catch (NoSuchMethodException e) {
224 }
225 } catch (ClassNotFoundException e) {
226 System.out.println("class not found " + className);
227 e.printStackTrace();
228 System.exit(1);
229 }
230 }
231
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700232 for (Iterator<TestClass> iterator = testCases.values().iterator(); iterator.hasNext();) {
233 TestClass type = iterator.next();
234 xmlGenerator.addTestClass(type);
235 }
236
237 try {
238 xmlGenerator.dump();
239 } catch (Exception e) {
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700240 System.err.println("cannot dump xml to " + OUTPUTFILE + ".xml");
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700241 e.printStackTrace();
Urs Grobfc77f6e2009-04-17 02:07:14 -0700242 System.exit(1);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700243 }
244 }
245
246 private static int getTestType(String makeFileName) {
247
248 int type = DEVICE_SIDE_ONLY;
249 try {
250 BufferedReader reader = new BufferedReader(new FileReader(makeFileName));
251 String line;
252
253 while ((line =reader.readLine())!=null) {
254 if (line.startsWith(TEST_TYPE)) {
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -0700255 if (line.indexOf(ATTRIBUTE_VM_HOST_TEST) >= 0) {
256 type = VM_HOST_TEST;
257 } else {
258 type = HOST_SIDE_ONLY;
259 }
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700260 } else if (line.startsWith(JAR_PATH)) {
261 jarPath = line.substring(JAR_PATH.length(), line.length()).trim();
262 }
263 }
264 reader.close();
265 } catch (IOException e) {
266 }
267
268 return type;
269 }
270
271 private static Element getElement(Element element, String tagName) {
272 NodeList elements = element.getElementsByTagName(tagName);
273 if (elements.getLength() > 0) {
274 return (Element) elements.item(0);
275 } else {
276 return null;
277 }
278 }
279
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700280 private static String getElementAttribute(Element element,
281 String elementName,
282 String attributeName) {
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700283 Element e = getElement(element, elementName);
284 if (e != null) {
285 return e.getAttribute(attributeName);
286 } else {
287 return "";
288 }
289 }
290
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700291 private static String getKnownFailure(final Class<? extends TestCase> testClass,
Urs Grobfc77f6e2009-04-17 02:07:14 -0700292 final String testName) {
293 return getAnnotation(testClass, testName, KNOWN_FAILURE);
294 }
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700295
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700296 private static boolean isKnownFailure(final Class<? extends TestCase> testClass,
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700297 final String testName) {
298 return getAnnotation(testClass, testName, KNOWN_FAILURE) != null;
299 }
300
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700301 private static boolean isBrokenTest(final Class<? extends TestCase> testClass,
Urs Grobfc77f6e2009-04-17 02:07:14 -0700302 final String testName) {
303 return getAnnotation(testClass, testName, BROKEN_TEST) != null;
304 }
Brian Muramatsub8ed3162010-07-13 12:43:52 -0700305
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700306 private static boolean isSuppressed(final Class<? extends TestCase> testClass,
Brian Muramatsu168beb02010-10-21 12:39:45 -0700307 final String testName) {
308 return getAnnotation(testClass, testName, SUPPRESSED_TEST) != null;
309 }
310
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700311 private static boolean hasSideEffects(final Class<? extends TestCase> testClass,
Brian Muramatsu282c6fe2011-01-18 17:14:15 -0800312 final String testName) {
313 return getAnnotation(testClass, testName, SIDE_EFFECT) != null;
314 }
315
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700316 private static String getAnnotation(final Class<? extends TestCase> testClass,
Urs Grobfc77f6e2009-04-17 02:07:14 -0700317 final String testName, final String annotationName) {
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700318 try {
Urs Grobfc77f6e2009-04-17 02:07:14 -0700319 Method testMethod = testClass.getMethod(testName, (Class[])null);
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700320 Annotation[] annotations = testMethod.getAnnotations();
321 for (Annotation annot : annotations) {
322
Urs Grobfc77f6e2009-04-17 02:07:14 -0700323 if (annot.annotationType().getName().equals(annotationName)) {
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700324 String annotStr = annot.toString();
325 String knownFailure = null;
326 if (annotStr.contains("(value=")) {
327 knownFailure =
Urs Grobfc77f6e2009-04-17 02:07:14 -0700328 annotStr.substring(annotStr.indexOf("=") + 1,
329 annotStr.length() - 1);
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700330
331 }
332
333 if (knownFailure == null) {
334 knownFailure = "true";
335 }
336
337 return knownFailure;
338 }
339
340 }
341
The Android Open Source Project7671bec2009-03-19 23:08:36 -0700342 } catch (java.lang.NoSuchMethodException e) {
343 }
344
345 return null;
346 }
347
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700348 private static void addToTests(Class<? extends TestCase> test) {
349 Class testClass = test;
350 Set<String> testNames = new HashSet<String>();
351 while (TestCase.class.isAssignableFrom(testClass)) {
352 Method[] testMethods = testClass.getDeclaredMethods();
353 for (Method testMethod : testMethods) {
354 String testName = testMethod.getName();
355 if (testNames.contains(testName)) {
356 continue;
357 }
358 if (!testName.startsWith("test")) {
359 continue;
360 }
361 if (testMethod.getParameterTypes().length != 0) {
362 continue;
363 }
364 if (!testMethod.getReturnType().equals(Void.TYPE)) {
365 continue;
366 }
367 if (!Modifier.isPublic(testMethod.getModifiers())) {
368 continue;
369 }
370 testNames.add(testName);
371 addToTests(test, testName);
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700372 }
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700373 testClass = testClass.getSuperclass();
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700374 }
Brian Carlstrom9f2dab82011-04-01 15:47:17 -0700375 }
376
377 private static void addToTests(Class<? extends TestCase> test, String testName) {
378
379 String testClassName = test.getName();
380 String knownFailure = getKnownFailure(test, testName);
381
382 if (isKnownFailure(test, testName)) {
383 System.out.println("ignoring known failure: " + test + "#" + testName);
384 return;
385 } else if (isBrokenTest(test, testName)) {
386 System.out.println("ignoring broken test: " + test + "#" + testName);
387 return;
388 } else if (isSuppressed(test, testName)) {
389 System.out.println("ignoring suppressed test: " + test + "#" + testName);
390 return;
391 } else if (hasSideEffects(test, testName)) {
392 System.out.println("ignoring test with side effects: " + test + "#" + testName);
393 return;
394 } else if (VogarUtils.isVogarKnownFailure(libcoreVogarExpectationStore,
395 testClassName,
396 testName)) {
397 System.out.println("ignoring libcore expectation known failure: " + test
398 + "#" + testName);
399 return;
400 } else if (VogarUtils.isVogarKnownFailure(ctsVogarExpectationStore,
401 testClassName,
402 testName)) {
403 System.out.println("ignoring cts expectation known failure: " + test
404 + "#" + testName);
405 return;
406 }
407
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700408 TestClass testClass = null;
409 if (testCases.containsKey(testClassName)) {
410 testClass = testCases.get(testClassName);
411 } else {
412 testClass = new TestClass(testClassName, new ArrayList<TestMethod>());
413 testCases.put(testClassName, testClass);
414 }
415
Brian Muramatsu168beb02010-10-21 12:39:45 -0700416 testClass.mCases.add(new TestMethod(testName, "", "", knownFailure, false, false));
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700417 }
The Android Open Source Projectf8057102009-03-15 16:47:16 -0700418}