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 | |
Brian Muramatsu | 7f64e85 | 2011-02-17 16:52:16 -0800 | [diff] [blame] | 17 | import org.w3c.dom.Document; |
| 18 | import org.w3c.dom.Element; |
| 19 | import org.w3c.dom.Node; |
| 20 | import org.w3c.dom.NodeList; |
| 21 | |
| 22 | import vogar.Expectation; |
| 23 | import vogar.ExpectationStore; |
| 24 | import vogar.ModeId; |
| 25 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 26 | import java.io.BufferedReader; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 27 | import java.io.File; |
| 28 | import java.io.FileInputStream; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 29 | import java.io.FileReader; |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 30 | import java.io.FilenameFilter; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 31 | import java.io.IOException; |
| 32 | import java.lang.annotation.Annotation; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 33 | import java.lang.reflect.InvocationTargetException; |
| 34 | import java.lang.reflect.Method; |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 35 | import java.lang.reflect.Modifier; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 36 | import java.util.ArrayList; |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 37 | import java.util.Arrays; |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 38 | import java.util.Enumeration; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 39 | import java.util.HashSet; |
| 40 | import java.util.Iterator; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 41 | import java.util.LinkedHashMap; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 42 | import java.util.Map; |
| 43 | import java.util.Set; |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 44 | import java.util.jar.JarEntry; |
| 45 | import java.util.jar.JarFile; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 46 | |
| 47 | import javax.xml.parsers.DocumentBuilderFactory; |
| 48 | import javax.xml.parsers.ParserConfigurationException; |
| 49 | |
| 50 | import junit.framework.Test; |
| 51 | import junit.framework.TestCase; |
| 52 | import junit.framework.TestResult; |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 53 | import junit.textui.ResultPrinter; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 54 | import junit.textui.TestRunner; |
| 55 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 56 | public 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 Pleumann | 8a6c9f9 | 2009-05-07 01:33:15 -0700 | [diff] [blame] | 61 | static final String ATTRIBUTE_TARGET = "targetNameSpace"; |
| 62 | static final String ATTRIBUTE_TARGET_BINARY = "targetBinaryName"; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 63 | static final String ATTRIBUTE_HOST_SIDE_ONLY = "hostSideOnly"; |
Tsu Chiang Chuang | 9a223d7 | 2011-04-27 17:19:46 -0700 | [diff] [blame^] | 64 | static final String ATTRIBUTE_VM_HOST_TEST = "vmHostTest"; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 65 | 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 Chuang | 9a223d7 | 2011-04-27 17:19:46 -0700 | [diff] [blame^] | 72 | static final int VM_HOST_TEST = 3; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 73 | |
| 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 82 | |
| 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 Chuang | 9a223d7 | 2011-04-27 17:19:46 -0700 | [diff] [blame^] | 100 | 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 105 | if (!packageName.equals(target)) { |
| 106 | setAttribute(testPackageElem, ATTRIBUTE_TARGET, target); |
Jorg Pleumann | 8a6c9f9 | 2009-05-07 01:33:15 -0700 | [diff] [blame] | 107 | setAttribute(testPackageElem, ATTRIBUTE_TARGET_BINARY, target); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 108 | } |
Jorg Pleumann | 8a6c9f9 | 2009-05-07 01:33:15 -0700 | [diff] [blame] | 109 | } |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 112 | 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 116 | private static String ANDROID_MAKE_FILE = ""; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 117 | |
| 118 | static XMLGenerator xmlGenerator; |
Brian Muramatsu | 7f64e85 | 2011-02-17 16:52:16 -0800 | [diff] [blame] | 119 | private static ExpectationStore libcoreVogarExpectationStore; |
| 120 | private static ExpectationStore ctsVogarExpectationStore; |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 121 | |
| 122 | public static void main(String[] args) { |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 123 | if (args.length >= 3 && args.length <= 5) { |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 124 | OUTPUTFILE = args[0]; |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 125 | MANIFESTFILE = args[1]; |
| 126 | JARFILE = args[2]; |
| 127 | if (args.length >= 4) { |
Brian Muramatsu | 7f64e85 | 2011-02-17 16:52:16 -0800 | [diff] [blame] | 128 | LIBCORE_EXPECTATION_DIR = args[3]; |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 129 | if (args.length >= 5) { |
| 130 | ANDROID_MAKE_FILE = args[4]; |
| 131 | } |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 132 | } |
| 133 | } else { |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 134 | System.err.println("usage: CollectAllTests <output-file> <manifest-file> <jar-file>" |
| 135 | + "[expectation-dir [makefile-file]]"); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 136 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | if (ANDROID_MAKE_FILE.length() > 0) { |
| 140 | testType = getTestType(ANDROID_MAKE_FILE); |
| 141 | } |
| 142 | |
| 143 | Document manifest = null; |
| 144 | try { |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 145 | manifest = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse( |
| 146 | new FileInputStream(MANIFESTFILE)); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 147 | } catch (Exception e) { |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 148 | System.err.println("cannot open manifest " + MANIFESTFILE); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 149 | e.printStackTrace(); |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 150 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 151 | } |
| 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 162 | try { |
| 163 | xmlGenerator = new MyXMLGenerator(OUTPUTFILE + ".xml"); |
| 164 | } catch (ParserConfigurationException e) { |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 165 | System.err.println("Can't initialize XML Generator " + OUTPUTFILE + ".xml"); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 166 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 169 | try { |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 170 | libcoreVogarExpectationStore |
| 171 | = VogarUtils.provideExpectationStore(LIBCORE_EXPECTATION_DIR); |
Brian Muramatsu | 7f64e85 | 2011-02-17 16:52:16 -0800 | [diff] [blame] | 172 | ctsVogarExpectationStore = VogarUtils.provideExpectationStore(CTS_EXPECTATION_DIR); |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 173 | } catch (IOException e) { |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 174 | System.err.println("Can't initialize vogar expectation store from " |
| 175 | + LIBCORE_EXPECTATION_DIR); |
Brett Chabot | 5977e94 | 2010-12-13 16:42:42 -0800 | [diff] [blame] | 176 | e.printStackTrace(System.err); |
| 177 | System.exit(1); |
| 178 | } |
| 179 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 180 | 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 Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 186 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 187 | } |
| 188 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 189 | 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 232 | 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 Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 240 | System.err.println("cannot dump xml to " + OUTPUTFILE + ".xml"); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 241 | e.printStackTrace(); |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 242 | System.exit(1); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 243 | } |
| 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 Chuang | 9a223d7 | 2011-04-27 17:19:46 -0700 | [diff] [blame^] | 255 | 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 260 | } 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 Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 280 | private static String getElementAttribute(Element element, |
| 281 | String elementName, |
| 282 | String attributeName) { |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 283 | Element e = getElement(element, elementName); |
| 284 | if (e != null) { |
| 285 | return e.getAttribute(attributeName); |
| 286 | } else { |
| 287 | return ""; |
| 288 | } |
| 289 | } |
| 290 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 291 | private static String getKnownFailure(final Class<? extends TestCase> testClass, |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 292 | final String testName) { |
| 293 | return getAnnotation(testClass, testName, KNOWN_FAILURE); |
| 294 | } |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 295 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 296 | private static boolean isKnownFailure(final Class<? extends TestCase> testClass, |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 297 | final String testName) { |
| 298 | return getAnnotation(testClass, testName, KNOWN_FAILURE) != null; |
| 299 | } |
| 300 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 301 | private static boolean isBrokenTest(final Class<? extends TestCase> testClass, |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 302 | final String testName) { |
| 303 | return getAnnotation(testClass, testName, BROKEN_TEST) != null; |
| 304 | } |
Brian Muramatsu | b8ed316 | 2010-07-13 12:43:52 -0700 | [diff] [blame] | 305 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 306 | private static boolean isSuppressed(final Class<? extends TestCase> testClass, |
Brian Muramatsu | 168beb0 | 2010-10-21 12:39:45 -0700 | [diff] [blame] | 307 | final String testName) { |
| 308 | return getAnnotation(testClass, testName, SUPPRESSED_TEST) != null; |
| 309 | } |
| 310 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 311 | private static boolean hasSideEffects(final Class<? extends TestCase> testClass, |
Brian Muramatsu | 282c6fe | 2011-01-18 17:14:15 -0800 | [diff] [blame] | 312 | final String testName) { |
| 313 | return getAnnotation(testClass, testName, SIDE_EFFECT) != null; |
| 314 | } |
| 315 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 316 | private static String getAnnotation(final Class<? extends TestCase> testClass, |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 317 | final String testName, final String annotationName) { |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 318 | try { |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 319 | Method testMethod = testClass.getMethod(testName, (Class[])null); |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 320 | Annotation[] annotations = testMethod.getAnnotations(); |
| 321 | for (Annotation annot : annotations) { |
| 322 | |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 323 | if (annot.annotationType().getName().equals(annotationName)) { |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 324 | String annotStr = annot.toString(); |
| 325 | String knownFailure = null; |
| 326 | if (annotStr.contains("(value=")) { |
| 327 | knownFailure = |
Urs Grob | fc77f6e | 2009-04-17 02:07:14 -0700 | [diff] [blame] | 328 | annotStr.substring(annotStr.indexOf("=") + 1, |
| 329 | annotStr.length() - 1); |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 330 | |
| 331 | } |
| 332 | |
| 333 | if (knownFailure == null) { |
| 334 | knownFailure = "true"; |
| 335 | } |
| 336 | |
| 337 | return knownFailure; |
| 338 | } |
| 339 | |
| 340 | } |
| 341 | |
The Android Open Source Project | 7671bec | 2009-03-19 23:08:36 -0700 | [diff] [blame] | 342 | } catch (java.lang.NoSuchMethodException e) { |
| 343 | } |
| 344 | |
| 345 | return null; |
| 346 | } |
| 347 | |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 348 | 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 372 | } |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 373 | testClass = testClass.getSuperclass(); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 374 | } |
Brian Carlstrom | 9f2dab8 | 2011-04-01 15:47:17 -0700 | [diff] [blame] | 375 | } |
| 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 Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 408 | 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 Muramatsu | 168beb0 | 2010-10-21 12:39:45 -0700 | [diff] [blame] | 416 | testClass.mCases.add(new TestMethod(testName, "", "", knownFailure, false, false)); |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 417 | } |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 418 | } |