• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2007 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 
17 package android.test;
18 
19 import com.android.internal.util.Predicate;
20 import com.android.internal.util.Predicates;
21 
22 import android.app.Activity;
23 import android.app.Instrumentation;
24 import android.os.Bundle;
25 import android.os.Debug;
26 import android.os.Looper;
27 import android.os.Parcelable;
28 import android.os.PerformanceCollector;
29 import android.os.PerformanceCollector.PerformanceResultsWriter;
30 import android.test.suitebuilder.TestMethod;
31 import android.test.suitebuilder.TestPredicates;
32 import android.test.suitebuilder.TestSuiteBuilder;
33 import android.test.suitebuilder.annotation.HasAnnotation;
34 import android.test.suitebuilder.annotation.LargeTest;
35 import android.util.Log;
36 
37 import java.io.ByteArrayOutputStream;
38 import java.io.File;
39 import java.io.PrintStream;
40 import java.lang.annotation.Annotation;
41 import java.lang.reflect.InvocationTargetException;
42 import java.lang.reflect.Method;
43 import java.util.ArrayList;
44 import java.util.List;
45 
46 import junit.framework.AssertionFailedError;
47 import junit.framework.Test;
48 import junit.framework.TestCase;
49 import junit.framework.TestListener;
50 import junit.framework.TestResult;
51 import junit.framework.TestSuite;
52 import junit.runner.BaseTestRunner;
53 import junit.textui.ResultPrinter;
54 
55 /**
56  * An {@link Instrumentation} that runs various types of {@link junit.framework.TestCase}s against
57  * an Android package (application).
58  *
59  * <div class="special reference">
60  * <h3>Developer Guides</h3>
61  * <p>For more information about application testing, read the
62  * <a href="{@docRoot}guide/topics/testing/index.html">Testing</a> developer guide.</p>
63  * </div>
64  *
65  * <h3>Typical Usage</h3>
66  * <ol>
67  * <li>Write {@link junit.framework.TestCase}s that perform unit, functional, or performance tests
68  * against the classes in your package.  Typically these are subclassed from:
69  *   <ul><li>{@link android.test.ActivityInstrumentationTestCase2}</li>
70  *   <li>{@link android.test.ActivityUnitTestCase}</li>
71  *   <li>{@link android.test.AndroidTestCase}</li>
72  *   <li>{@link android.test.ApplicationTestCase}</li>
73  *   <li>{@link android.test.InstrumentationTestCase}</li>
74  *   <li>{@link android.test.ProviderTestCase}</li>
75  *   <li>{@link android.test.ServiceTestCase}</li>
76  *   <li>{@link android.test.SingleLaunchActivityTestCase}</li></ul>
77  *   <li>In an appropriate AndroidManifest.xml, define the this instrumentation with
78  * the appropriate android:targetPackage set.
79  * <li>Run the instrumentation using "adb shell am instrument -w",
80  * with no optional arguments, to run all tests (except performance tests).
81  * <li>Run the instrumentation using "adb shell am instrument -w",
82  * with the argument '-e func true' to run all functional tests. These are tests that derive from
83  * {@link android.test.InstrumentationTestCase}.
84  * <li>Run the instrumentation using "adb shell am instrument -w",
85  * with the argument '-e unit true' to run all unit tests. These are tests that <i>do not</i>derive
86  * from {@link android.test.InstrumentationTestCase} (and are not performance tests).
87  * <li>Run the instrumentation using "adb shell am instrument -w",
88  * with the argument '-e class' set to run an individual {@link junit.framework.TestCase}.
89  * </ol>
90  * <p/>
91  * <b>Running all tests:</b> adb shell am instrument -w
92  * com.android.foo/android.test.InstrumentationTestRunner
93  * <p/>
94  * <b>Running all small tests:</b> adb shell am instrument -w
95  * -e size small
96  * com.android.foo/android.test.InstrumentationTestRunner
97  * <p/>
98  * <b>Running all medium tests:</b> adb shell am instrument -w
99  * -e size medium
100  * com.android.foo/android.test.InstrumentationTestRunner
101  * <p/>
102  * <b>Running all large tests:</b> adb shell am instrument -w
103  * -e size large
104  * com.android.foo/android.test.InstrumentationTestRunner
105  * <p/>
106  * <b>Filter test run to tests with given annotation:</b> adb shell am instrument -w
107  * -e annotation com.android.foo.MyAnnotation
108  * com.android.foo/android.test.InstrumentationTestRunner
109  * <p/>
110  * If used with other options, the resulting test run will contain the union of the two options.
111  * e.g. "-e size large -e annotation com.android.foo.MyAnnotation" will run only tests with both
112  * the {@link LargeTest} and "com.android.foo.MyAnnotation" annotations.
113  * <p/>
114  * <b>Filter test run to tests <i>without</i> given annotation:</b> adb shell am instrument -w
115  * -e notAnnotation com.android.foo.MyAnnotation
116  * com.android.foo/android.test.InstrumentationTestRunner
117  * <p/>
118  * <b>Running a single testcase:</b> adb shell am instrument -w
119  * -e class com.android.foo.FooTest
120  * com.android.foo/android.test.InstrumentationTestRunner
121  * <p/>
122  * <b>Running a single test:</b> adb shell am instrument -w
123  * -e class com.android.foo.FooTest#testFoo
124  * com.android.foo/android.test.InstrumentationTestRunner
125  * <p/>
126  * <b>Running multiple tests:</b> adb shell am instrument -w
127  * -e class com.android.foo.FooTest,com.android.foo.TooTest
128  * com.android.foo/android.test.InstrumentationTestRunner
129  * <p/>
130  * <b>Running all tests in a java package:</b> adb shell am instrument -w
131  * -e package com.android.foo.subpkg
132  *  com.android.foo/android.test.InstrumentationTestRunner
133  * <p/>
134  * <b>Including performance tests:</b> adb shell am instrument -w
135  * -e perf true
136  * com.android.foo/android.test.InstrumentationTestRunner
137  * <p/>
138  * <b>To debug your tests, set a break point in your code and pass:</b>
139  * -e debug true
140  * <p/>
141  * <b>To run in 'log only' mode</b>
142  * -e log true
143  * This option will load and iterate through all test classes and methods, but will bypass actual
144  * test execution. Useful for quickly obtaining info on the tests to be executed by an
145  * instrumentation command.
146  * <p/>
147  * <b>To generate EMMA code coverage:</b>
148  * -e coverage true
149  * Note: this requires an emma instrumented build. By default, the code coverage results file
150  * will be saved in a /data/<app>/coverage.ec file, unless overridden by coverageFile flag (see
151  * below)
152  * <p/>
153  * <b> To specify EMMA code coverage results file path:</b>
154  * -e coverageFile /sdcard/myFile.ec
155  * <br/>
156  * in addition to the other arguments.
157  */
158 
159 /* (not JavaDoc)
160  * Although not necessary in most case, another way to use this class is to extend it and have the
161  * derived class return the desired test suite from the {@link #getTestSuite()} method. The test
162  * suite returned from this method will be used if no target class is defined in the meta-data or
163  * command line argument parameters. If a derived class is used it needs to be added as an
164  * instrumentation to the AndroidManifest.xml and the command to run it would look like:
165  * <p/>
166  * adb shell am instrument -w com.android.foo/<i>com.android.FooInstrumentationTestRunner</i>
167  * <p/>
168  * Where <i>com.android.FooInstrumentationTestRunner</i> is the derived class.
169  *
170  * This model is used by many existing app tests, but can probably be deprecated.
171  */
172 public class InstrumentationTestRunner extends Instrumentation implements TestSuiteProvider {
173 
174     /** @hide */
175     public static final String ARGUMENT_TEST_CLASS = "class";
176     /** @hide */
177     public static final String ARGUMENT_TEST_PACKAGE = "package";
178     /** @hide */
179     public static final String ARGUMENT_TEST_SIZE_PREDICATE = "size";
180     /** @hide */
181     public static final String ARGUMENT_DELAY_MSEC = "delay_msec";
182 
183     private static final String SMALL_SUITE = "small";
184     private static final String MEDIUM_SUITE = "medium";
185     private static final String LARGE_SUITE = "large";
186 
187     private static final String ARGUMENT_LOG_ONLY = "log";
188     /** @hide */
189     static final String ARGUMENT_ANNOTATION = "annotation";
190     /** @hide */
191     static final String ARGUMENT_NOT_ANNOTATION = "notAnnotation";
192 
193     /**
194      * This constant defines the maximum allowed runtime (in ms) for a test included in the "small"
195      * suite. It is used to make an educated guess at what suite an unlabeled test belongs.
196      */
197     private static final float SMALL_SUITE_MAX_RUNTIME = 100;
198 
199     /**
200      * This constant defines the maximum allowed runtime (in ms) for a test included in the
201      * "medium" suite. It is used to make an educated guess at what suite an unlabeled test belongs.
202      */
203     private static final float MEDIUM_SUITE_MAX_RUNTIME = 1000;
204 
205     /**
206      * The following keys are used in the status bundle to provide structured reports to
207      * an IInstrumentationWatcher.
208      */
209 
210     /**
211      * This value, if stored with key {@link android.app.Instrumentation#REPORT_KEY_IDENTIFIER},
212      * identifies InstrumentationTestRunner as the source of the report.  This is sent with all
213      * status messages.
214      */
215     public static final String REPORT_VALUE_ID = "InstrumentationTestRunner";
216     /**
217      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
218      * identifies the total number of tests that are being run.  This is sent with all status
219      * messages.
220      */
221     public static final String REPORT_KEY_NUM_TOTAL = "numtests";
222     /**
223      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
224      * identifies the sequence number of the current test.  This is sent with any status message
225      * describing a specific test being started or completed.
226      */
227     public static final String REPORT_KEY_NUM_CURRENT = "current";
228     /**
229      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
230      * identifies the name of the current test class.  This is sent with any status message
231      * describing a specific test being started or completed.
232      */
233     public static final String REPORT_KEY_NAME_CLASS = "class";
234     /**
235      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
236      * identifies the name of the current test.  This is sent with any status message
237      * describing a specific test being started or completed.
238      */
239     public static final String REPORT_KEY_NAME_TEST = "test";
240     /**
241      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
242      * reports the run time in seconds of the current test.
243      */
244     private static final String REPORT_KEY_RUN_TIME = "runtime";
245     /**
246      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
247      * reports the number of total iterations of the current test.
248      */
249     private static final String REPORT_KEY_NUM_ITERATIONS = "numiterations";
250     /**
251      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
252      * reports the guessed suite assignment for the current test.
253      */
254     private static final String REPORT_KEY_SUITE_ASSIGNMENT = "suiteassignment";
255     /**
256      * If included in the status or final bundle sent to an IInstrumentationWatcher, this key
257      * identifies the path to the generated code coverage file.
258      */
259     private static final String REPORT_KEY_COVERAGE_PATH = "coverageFilePath";
260 
261     /**
262      * The test is starting.
263      */
264     public static final int REPORT_VALUE_RESULT_START = 1;
265     /**
266      * The test completed successfully.
267      */
268     public static final int REPORT_VALUE_RESULT_OK = 0;
269     /**
270      * The test completed with an error.
271      */
272     public static final int REPORT_VALUE_RESULT_ERROR = -1;
273     /**
274      * The test completed with a failure.
275      */
276     public static final int REPORT_VALUE_RESULT_FAILURE = -2;
277     /**
278      * If included in the status bundle sent to an IInstrumentationWatcher, this key
279      * identifies a stack trace describing an error or failure.  This is sent with any status
280      * message describing a specific test being completed.
281      */
282     public static final String REPORT_KEY_STACK = "stack";
283 
284     // Default file name for code coverage
285     private static final String DEFAULT_COVERAGE_FILE_NAME = "coverage.ec";
286 
287     private static final String LOG_TAG = "InstrumentationTestRunner";
288 
289     private final Bundle mResults = new Bundle();
290     private Bundle mArguments;
291     private AndroidTestRunner mTestRunner;
292     private boolean mDebug;
293     private boolean mJustCount;
294     private boolean mSuiteAssignmentMode;
295     private int mTestCount;
296     private String mPackageOfTests;
297     private boolean mCoverage;
298     private String mCoverageFilePath;
299     private int mDelayMsec;
300 
301     @Override
onCreate(Bundle arguments)302     public void onCreate(Bundle arguments) {
303         super.onCreate(arguments);
304         mArguments = arguments;
305 
306         // Apk paths used to search for test classes when using TestSuiteBuilders.
307         String[] apkPaths =
308                 {getTargetContext().getPackageCodePath(), getContext().getPackageCodePath()};
309         ClassPathPackageInfoSource.setApkPaths(apkPaths);
310 
311         Predicate<TestMethod> testSizePredicate = null;
312         Predicate<TestMethod> testAnnotationPredicate = null;
313         Predicate<TestMethod> testNotAnnotationPredicate = null;
314         String testClassesArg = null;
315         boolean logOnly = false;
316 
317         if (arguments != null) {
318             // Test class name passed as an argument should override any meta-data declaration.
319             testClassesArg = arguments.getString(ARGUMENT_TEST_CLASS);
320             mDebug = getBooleanArgument(arguments, "debug");
321             mJustCount = getBooleanArgument(arguments, "count");
322             mSuiteAssignmentMode = getBooleanArgument(arguments, "suiteAssignment");
323             mPackageOfTests = arguments.getString(ARGUMENT_TEST_PACKAGE);
324             testSizePredicate = getSizePredicateFromArg(
325                     arguments.getString(ARGUMENT_TEST_SIZE_PREDICATE));
326             testAnnotationPredicate = getAnnotationPredicate(
327                     arguments.getString(ARGUMENT_ANNOTATION));
328             testNotAnnotationPredicate = getNotAnnotationPredicate(
329                     arguments.getString(ARGUMENT_NOT_ANNOTATION));
330 
331             logOnly = getBooleanArgument(arguments, ARGUMENT_LOG_ONLY);
332             mCoverage = getBooleanArgument(arguments, "coverage");
333             mCoverageFilePath = arguments.getString("coverageFile");
334 
335             try {
336                 Object delay = arguments.get(ARGUMENT_DELAY_MSEC);  // Accept either string or int
337                 if (delay != null) mDelayMsec = Integer.parseInt(delay.toString());
338             } catch (NumberFormatException e) {
339                 Log.e(LOG_TAG, "Invalid delay_msec parameter", e);
340             }
341         }
342 
343         TestSuiteBuilder testSuiteBuilder = new TestSuiteBuilder(getClass().getName(),
344                 getTargetContext().getClassLoader());
345 
346         if (testSizePredicate != null) {
347             testSuiteBuilder.addRequirements(testSizePredicate);
348         }
349         if (testAnnotationPredicate != null) {
350             testSuiteBuilder.addRequirements(testAnnotationPredicate);
351         }
352         if (testNotAnnotationPredicate != null) {
353             testSuiteBuilder.addRequirements(testNotAnnotationPredicate);
354         }
355 
356         if (testClassesArg == null) {
357             if (mPackageOfTests != null) {
358                 testSuiteBuilder.includePackages(mPackageOfTests);
359             } else {
360                 TestSuite testSuite = getTestSuite();
361                 if (testSuite != null) {
362                     testSuiteBuilder.addTestSuite(testSuite);
363                 } else {
364                     // no package or class bundle arguments were supplied, and no test suite
365                     // provided so add all tests in application
366                     testSuiteBuilder.includePackages("");
367                 }
368             }
369         } else {
370             parseTestClasses(testClassesArg, testSuiteBuilder);
371         }
372 
373         testSuiteBuilder.addRequirements(getBuilderRequirements());
374 
375         mTestRunner = getAndroidTestRunner();
376         mTestRunner.setContext(getTargetContext());
377         mTestRunner.setInstrumentation(this);
378         mTestRunner.setSkipExecution(logOnly);
379         mTestRunner.setTest(testSuiteBuilder.build());
380         mTestCount = mTestRunner.getTestCases().size();
381         if (mSuiteAssignmentMode) {
382             mTestRunner.addTestListener(new SuiteAssignmentPrinter());
383         } else {
384             WatcherResultPrinter resultPrinter = new WatcherResultPrinter(mTestCount);
385             mTestRunner.addTestListener(new TestPrinter("TestRunner", false));
386             mTestRunner.addTestListener(resultPrinter);
387             mTestRunner.setPerformanceResultsWriter(resultPrinter);
388         }
389         start();
390     }
391 
392     /**
393      * Get the Bundle object that contains the arguments
394      *
395      * @return the Bundle object
396      * @hide
397      */
getBundle()398     public Bundle getBundle(){
399         return mArguments;
400     }
401 
402     /**
403      * Add a {@link TestListener}
404      * @hide
405      */
addTestListener(TestListener listener)406     protected void addTestListener(TestListener listener){
407         if(mTestRunner!=null && listener!=null){
408             mTestRunner.addTestListener(listener);
409         }
410     }
411 
getBuilderRequirements()412     List<Predicate<TestMethod>> getBuilderRequirements() {
413         return new ArrayList<Predicate<TestMethod>>();
414     }
415 
416     /**
417      * Parses and loads the specified set of test classes
418      *
419      * @param testClassArg - comma-separated list of test classes and methods
420      * @param testSuiteBuilder - builder to add tests to
421      */
parseTestClasses(String testClassArg, TestSuiteBuilder testSuiteBuilder)422     private void parseTestClasses(String testClassArg, TestSuiteBuilder testSuiteBuilder) {
423         String[] testClasses = testClassArg.split(",");
424         for (String testClass : testClasses) {
425             parseTestClass(testClass, testSuiteBuilder);
426         }
427     }
428 
429     /**
430      * Parse and load the given test class and, optionally, method
431      *
432      * @param testClassName - full package name of test class and optionally method to add.
433      *        Expected format: com.android.TestClass#testMethod
434      * @param testSuiteBuilder - builder to add tests to
435      */
parseTestClass(String testClassName, TestSuiteBuilder testSuiteBuilder)436     private void parseTestClass(String testClassName, TestSuiteBuilder testSuiteBuilder) {
437         int methodSeparatorIndex = testClassName.indexOf('#');
438         String testMethodName = null;
439 
440         if (methodSeparatorIndex > 0) {
441             testMethodName = testClassName.substring(methodSeparatorIndex + 1);
442             testClassName = testClassName.substring(0, methodSeparatorIndex);
443         }
444         testSuiteBuilder.addTestClassByName(testClassName, testMethodName, getTargetContext());
445     }
446 
getAndroidTestRunner()447     protected AndroidTestRunner getAndroidTestRunner() {
448         return new AndroidTestRunner();
449     }
450 
getBooleanArgument(Bundle arguments, String tag)451     private boolean getBooleanArgument(Bundle arguments, String tag) {
452         String tagString = arguments.getString(tag);
453         return tagString != null && Boolean.parseBoolean(tagString);
454     }
455 
456     /*
457      * Returns the size predicate object, corresponding to the "size" argument value.
458      */
getSizePredicateFromArg(String sizeArg)459     private Predicate<TestMethod> getSizePredicateFromArg(String sizeArg) {
460 
461         if (SMALL_SUITE.equals(sizeArg)) {
462             return TestPredicates.SELECT_SMALL;
463         } else if (MEDIUM_SUITE.equals(sizeArg)) {
464             return TestPredicates.SELECT_MEDIUM;
465         } else if (LARGE_SUITE.equals(sizeArg)) {
466             return TestPredicates.SELECT_LARGE;
467         } else {
468             return null;
469         }
470     }
471 
472    /**
473     * Returns the test predicate object, corresponding to the annotation class value provided via
474     * the {@link ARGUMENT_ANNOTATION} argument.
475     *
476     * @return the predicate or <code>null</code>
477     */
getAnnotationPredicate(String annotationClassName)478     private Predicate<TestMethod> getAnnotationPredicate(String annotationClassName) {
479         Class<? extends Annotation> annotationClass = getAnnotationClass(annotationClassName);
480         if (annotationClass != null) {
481             return new HasAnnotation(annotationClass);
482         }
483         return null;
484     }
485 
486     /**
487      * Returns the negative test predicate object, corresponding to the annotation class value
488      * provided via the {@link ARGUMENT_NOT_ANNOTATION} argument.
489      *
490      * @return the predicate or <code>null</code>
491      */
getNotAnnotationPredicate(String annotationClassName)492      private Predicate<TestMethod> getNotAnnotationPredicate(String annotationClassName) {
493          Class<? extends Annotation> annotationClass = getAnnotationClass(annotationClassName);
494          if (annotationClass != null) {
495              return Predicates.not(new HasAnnotation(annotationClass));
496          }
497          return null;
498      }
499 
500     /**
501      * Helper method to return the annotation class with specified name
502      *
503      * @param annotationClassName the fully qualified name of the class
504      * @return the annotation class or <code>null</code>
505      */
getAnnotationClass(String annotationClassName)506     private Class<? extends Annotation> getAnnotationClass(String annotationClassName) {
507         if (annotationClassName == null) {
508             return null;
509         }
510         try {
511            Class<?> annotationClass = Class.forName(annotationClassName);
512            if (annotationClass.isAnnotation()) {
513                return (Class<? extends Annotation>)annotationClass;
514            } else {
515                Log.e(LOG_TAG, String.format("Provided annotation value %s is not an Annotation",
516                        annotationClassName));
517            }
518         } catch (ClassNotFoundException e) {
519             Log.e(LOG_TAG, String.format("Could not find class for specified annotation %s",
520                     annotationClassName));
521         }
522         return null;
523     }
524 
525     /**
526      * Initialize the current thread as a looper.
527      * <p/>
528      * Exposed for unit testing.
529      */
prepareLooper()530     void prepareLooper() {
531         Looper.prepare();
532     }
533 
534     @Override
onStart()535     public void onStart() {
536         prepareLooper();
537 
538         if (mJustCount) {
539             mResults.putString(Instrumentation.REPORT_KEY_IDENTIFIER, REPORT_VALUE_ID);
540             mResults.putInt(REPORT_KEY_NUM_TOTAL, mTestCount);
541             finish(Activity.RESULT_OK, mResults);
542         } else {
543             if (mDebug) {
544                 Debug.waitForDebugger();
545             }
546 
547             ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
548             PrintStream writer = new PrintStream(byteArrayOutputStream);
549             try {
550                 StringResultPrinter resultPrinter = new StringResultPrinter(writer);
551 
552                 mTestRunner.addTestListener(resultPrinter);
553 
554                 long startTime = System.currentTimeMillis();
555                 mTestRunner.runTest();
556                 long runTime = System.currentTimeMillis() - startTime;
557 
558                 resultPrinter.print(mTestRunner.getTestResult(), runTime);
559             } catch (Throwable t) {
560                 // catch all exceptions so a more verbose error message can be outputted
561                 writer.println(String.format("Test run aborted due to unexpected exception: %s",
562                                 t.getMessage()));
563                 t.printStackTrace(writer);
564             } finally {
565                 mResults.putString(Instrumentation.REPORT_KEY_STREAMRESULT,
566                         String.format("\nTest results for %s=%s",
567                         mTestRunner.getTestClassName(),
568                         byteArrayOutputStream.toString()));
569 
570                 if (mCoverage) {
571                     generateCoverageReport();
572                 }
573                 writer.close();
574 
575                 finish(Activity.RESULT_OK, mResults);
576             }
577         }
578     }
579 
getTestSuite()580     public TestSuite getTestSuite() {
581         return getAllTests();
582     }
583 
584     /**
585      * Override this to define all of the tests to run in your package.
586      */
getAllTests()587     public TestSuite getAllTests() {
588         return null;
589     }
590 
591     /**
592      * Override this to provide access to the class loader of your package.
593      */
getLoader()594     public ClassLoader getLoader() {
595         return null;
596     }
597 
generateCoverageReport()598     private void generateCoverageReport() {
599         // use reflection to call emma dump coverage method, to avoid
600         // always statically compiling against emma jar
601         String coverageFilePath = getCoverageFilePath();
602         java.io.File coverageFile = new java.io.File(coverageFilePath);
603         try {
604             Class<?> emmaRTClass = Class.forName("com.vladium.emma.rt.RT");
605             Method dumpCoverageMethod = emmaRTClass.getMethod("dumpCoverageData",
606                     coverageFile.getClass(), boolean.class, boolean.class);
607 
608             dumpCoverageMethod.invoke(null, coverageFile, false, false);
609             // output path to generated coverage file so it can be parsed by a test harness if
610             // needed
611             mResults.putString(REPORT_KEY_COVERAGE_PATH, coverageFilePath);
612             // also output a more user friendly msg
613             final String currentStream = mResults.getString(
614                     Instrumentation.REPORT_KEY_STREAMRESULT);
615             mResults.putString(Instrumentation.REPORT_KEY_STREAMRESULT,
616                 String.format("%s\nGenerated code coverage data to %s", currentStream,
617                 coverageFilePath));
618         } catch (ClassNotFoundException e) {
619             reportEmmaError("Is emma jar on classpath?", e);
620         } catch (SecurityException e) {
621             reportEmmaError(e);
622         } catch (NoSuchMethodException e) {
623             reportEmmaError(e);
624         } catch (IllegalArgumentException e) {
625             reportEmmaError(e);
626         } catch (IllegalAccessException e) {
627             reportEmmaError(e);
628         } catch (InvocationTargetException e) {
629             reportEmmaError(e);
630         }
631     }
632 
getCoverageFilePath()633     private String getCoverageFilePath() {
634         if (mCoverageFilePath == null) {
635             return getTargetContext().getFilesDir().getAbsolutePath() + File.separator +
636                    DEFAULT_COVERAGE_FILE_NAME;
637         } else {
638             return mCoverageFilePath;
639         }
640     }
641 
reportEmmaError(Exception e)642     private void reportEmmaError(Exception e) {
643         reportEmmaError("", e);
644     }
645 
reportEmmaError(String hint, Exception e)646     private void reportEmmaError(String hint, Exception e) {
647         String msg = "Failed to generate emma coverage. " + hint;
648         Log.e(LOG_TAG, msg, e);
649         mResults.putString(Instrumentation.REPORT_KEY_STREAMRESULT, "\nError: " + msg);
650     }
651 
652     // TODO kill this, use status() and prettyprint model for better output
653     private class StringResultPrinter extends ResultPrinter {
654 
StringResultPrinter(PrintStream writer)655         public StringResultPrinter(PrintStream writer) {
656             super(writer);
657         }
658 
print(TestResult result, long runTime)659         synchronized void print(TestResult result, long runTime) {
660             printHeader(runTime);
661             printFooter(result);
662         }
663     }
664 
665     /**
666      * This class sends status reports back to the IInstrumentationWatcher about
667      * which suite each test belongs.
668      */
669     private class SuiteAssignmentPrinter implements TestListener {
670 
671         private Bundle mTestResult;
672         private long mStartTime;
673         private long mEndTime;
674         private boolean mTimingValid;
675 
SuiteAssignmentPrinter()676         public SuiteAssignmentPrinter() {
677         }
678 
679         /**
680          * send a status for the start of a each test, so long tests can be seen as "running"
681          */
startTest(Test test)682         public void startTest(Test test) {
683             mTimingValid = true;
684             mStartTime = System.currentTimeMillis();
685         }
686 
687         /**
688          * @see junit.framework.TestListener#addError(Test, Throwable)
689          */
addError(Test test, Throwable t)690         public void addError(Test test, Throwable t) {
691             mTimingValid = false;
692         }
693 
694         /**
695          * @see junit.framework.TestListener#addFailure(Test, AssertionFailedError)
696          */
addFailure(Test test, AssertionFailedError t)697         public void addFailure(Test test, AssertionFailedError t) {
698             mTimingValid = false;
699         }
700 
701         /**
702          * @see junit.framework.TestListener#endTest(Test)
703          */
endTest(Test test)704         public void endTest(Test test) {
705             float runTime;
706             String assignmentSuite;
707             mEndTime = System.currentTimeMillis();
708             mTestResult = new Bundle();
709 
710             if (!mTimingValid || mStartTime < 0) {
711                 assignmentSuite = "NA";
712                 runTime = -1;
713             } else {
714                 runTime = mEndTime - mStartTime;
715                 if (runTime < SMALL_SUITE_MAX_RUNTIME
716                         && !InstrumentationTestCase.class.isAssignableFrom(test.getClass())) {
717                     assignmentSuite = SMALL_SUITE;
718                 } else if (runTime < MEDIUM_SUITE_MAX_RUNTIME) {
719                     assignmentSuite = MEDIUM_SUITE;
720                 } else {
721                     assignmentSuite = LARGE_SUITE;
722                 }
723             }
724             // Clear mStartTime so that we can verify that it gets set next time.
725             mStartTime = -1;
726 
727             mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT,
728                     test.getClass().getName() + "#" + ((TestCase) test).getName()
729                     + "\nin " + assignmentSuite + " suite\nrunTime: "
730                     + String.valueOf(runTime) + "\n");
731             mTestResult.putFloat(REPORT_KEY_RUN_TIME, runTime);
732             mTestResult.putString(REPORT_KEY_SUITE_ASSIGNMENT, assignmentSuite);
733 
734             sendStatus(0, mTestResult);
735         }
736     }
737 
738     /**
739      * This class sends status reports back to the IInstrumentationWatcher
740      */
741     private class WatcherResultPrinter implements TestListener, PerformanceResultsWriter {
742         private final Bundle mResultTemplate;
743         Bundle mTestResult;
744         int mTestNum = 0;
745         int mTestResultCode = 0;
746         String mTestClass = null;
747         PerformanceCollector mPerfCollector = new PerformanceCollector();
748         boolean mIsTimedTest = false;
749         boolean mIncludeDetailedStats = false;
750 
WatcherResultPrinter(int numTests)751         public WatcherResultPrinter(int numTests) {
752             mResultTemplate = new Bundle();
753             mResultTemplate.putString(Instrumentation.REPORT_KEY_IDENTIFIER, REPORT_VALUE_ID);
754             mResultTemplate.putInt(REPORT_KEY_NUM_TOTAL, numTests);
755         }
756 
757         /**
758          * send a status for the start of a each test, so long tests can be seen
759          * as "running"
760          */
startTest(Test test)761         public void startTest(Test test) {
762             String testClass = test.getClass().getName();
763             String testName = ((TestCase)test).getName();
764             mTestResult = new Bundle(mResultTemplate);
765             mTestResult.putString(REPORT_KEY_NAME_CLASS, testClass);
766             mTestResult.putString(REPORT_KEY_NAME_TEST, testName);
767             mTestResult.putInt(REPORT_KEY_NUM_CURRENT, ++mTestNum);
768             // pretty printing
769             if (testClass != null && !testClass.equals(mTestClass)) {
770                 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT,
771                         String.format("\n%s:", testClass));
772                 mTestClass = testClass;
773             } else {
774                 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, "");
775             }
776 
777             Method testMethod = null;
778             try {
779                 testMethod = test.getClass().getMethod(testName);
780                 // Report total number of iterations, if test is repetitive
781                 if (testMethod.isAnnotationPresent(RepetitiveTest.class)) {
782                     int numIterations = testMethod.getAnnotation(
783                         RepetitiveTest.class).numIterations();
784                     mTestResult.putInt(REPORT_KEY_NUM_ITERATIONS, numIterations);
785                 }
786             } catch (NoSuchMethodException e) {
787                 // ignore- the test with given name does not exist. Will be handled during test
788                 // execution
789             }
790 
791             // The delay_msec parameter is normally used to provide buffers of idle time
792             // for power measurement purposes. To make sure there is a delay before and after
793             // every test in a suite, we delay *after* every test (see endTest below) and also
794             // delay *before* the first test. So, delay test1 delay test2 delay.
795 
796             try {
797                 if (mTestNum == 1) Thread.sleep(mDelayMsec);
798             } catch (InterruptedException e) {
799                 throw new IllegalStateException(e);
800             }
801 
802             sendStatus(REPORT_VALUE_RESULT_START, mTestResult);
803             mTestResultCode = 0;
804 
805             mIsTimedTest = false;
806             mIncludeDetailedStats = false;
807             try {
808                 // Look for TimedTest annotation on both test class and test method
809                 if (testMethod != null && testMethod.isAnnotationPresent(TimedTest.class)) {
810                     mIsTimedTest = true;
811                     mIncludeDetailedStats = testMethod.getAnnotation(
812                             TimedTest.class).includeDetailedStats();
813                 } else if (test.getClass().isAnnotationPresent(TimedTest.class)) {
814                     mIsTimedTest = true;
815                     mIncludeDetailedStats = test.getClass().getAnnotation(
816                             TimedTest.class).includeDetailedStats();
817                 }
818             } catch (SecurityException e) {
819                 // ignore - the test with given name cannot be accessed. Will be handled during
820                 // test execution
821             }
822 
823             if (mIsTimedTest && mIncludeDetailedStats) {
824                 mPerfCollector.beginSnapshot("");
825             } else if (mIsTimedTest) {
826                 mPerfCollector.startTiming("");
827             }
828         }
829 
830         /**
831          * @see junit.framework.TestListener#addError(Test, Throwable)
832          */
addError(Test test, Throwable t)833         public void addError(Test test, Throwable t) {
834             mTestResult.putString(REPORT_KEY_STACK, BaseTestRunner.getFilteredTrace(t));
835             mTestResultCode = REPORT_VALUE_RESULT_ERROR;
836             // pretty printing
837             mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT,
838                 String.format("\nError in %s:\n%s",
839                     ((TestCase)test).getName(), BaseTestRunner.getFilteredTrace(t)));
840         }
841 
842         /**
843          * @see junit.framework.TestListener#addFailure(Test, AssertionFailedError)
844          */
addFailure(Test test, AssertionFailedError t)845         public void addFailure(Test test, AssertionFailedError t) {
846             mTestResult.putString(REPORT_KEY_STACK, BaseTestRunner.getFilteredTrace(t));
847             mTestResultCode = REPORT_VALUE_RESULT_FAILURE;
848             // pretty printing
849             mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT,
850                 String.format("\nFailure in %s:\n%s",
851                     ((TestCase)test).getName(), BaseTestRunner.getFilteredTrace(t)));
852         }
853 
854         /**
855          * @see junit.framework.TestListener#endTest(Test)
856          */
endTest(Test test)857         public void endTest(Test test) {
858             if (mIsTimedTest && mIncludeDetailedStats) {
859                 mTestResult.putAll(mPerfCollector.endSnapshot());
860             } else if (mIsTimedTest) {
861                 writeStopTiming(mPerfCollector.stopTiming(""));
862             }
863 
864             if (mTestResultCode == 0) {
865                 mTestResult.putString(Instrumentation.REPORT_KEY_STREAMRESULT, ".");
866             }
867             sendStatus(mTestResultCode, mTestResult);
868 
869             try { // Sleep after every test, if specified
870                 Thread.sleep(mDelayMsec);
871             } catch (InterruptedException e) {
872                 throw new IllegalStateException(e);
873             }
874         }
875 
writeBeginSnapshot(String label)876         public void writeBeginSnapshot(String label) {
877             // Do nothing
878         }
879 
writeEndSnapshot(Bundle results)880         public void writeEndSnapshot(Bundle results) {
881             // Copy all snapshot data fields into mResults, which is outputted
882             // via Instrumentation.finish
883             mResults.putAll(results);
884         }
885 
writeStartTiming(String label)886         public void writeStartTiming(String label) {
887             // Do nothing
888         }
889 
writeStopTiming(Bundle results)890         public void writeStopTiming(Bundle results) {
891             // Copy results into mTestResult by flattening list of iterations,
892             // which is outputted via WatcherResultPrinter.endTest
893             int i = 0;
894             for (Parcelable p :
895                     results.getParcelableArrayList(PerformanceCollector.METRIC_KEY_ITERATIONS)) {
896                 Bundle iteration = (Bundle)p;
897                 String index = "iteration" + i + ".";
898                 mTestResult.putString(index + PerformanceCollector.METRIC_KEY_LABEL,
899                         iteration.getString(PerformanceCollector.METRIC_KEY_LABEL));
900                 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_CPU_TIME,
901                         iteration.getLong(PerformanceCollector.METRIC_KEY_CPU_TIME));
902                 mTestResult.putLong(index + PerformanceCollector.METRIC_KEY_EXECUTION_TIME,
903                         iteration.getLong(PerformanceCollector.METRIC_KEY_EXECUTION_TIME));
904                 i++;
905             }
906         }
907 
writeMeasurement(String label, long value)908         public void writeMeasurement(String label, long value) {
909             mTestResult.putLong(label, value);
910         }
911 
writeMeasurement(String label, float value)912         public void writeMeasurement(String label, float value) {
913             mTestResult.putFloat(label, value);
914         }
915 
writeMeasurement(String label, String value)916         public void writeMeasurement(String label, String value) {
917             mTestResult.putString(label, value);
918         }
919 
920         // TODO report the end of the cycle
921     }
922 }
923