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 17 package com.android.dumprendertree; 18 19 import android.os.Bundle; 20 import android.test.InstrumentationTestRunner; 21 import android.test.InstrumentationTestSuite; 22 23 import junit.framework.TestSuite; 24 25 26 /** 27 * Instrumentation Test Runner for all DumpRenderTree tests. 28 * 29 * Running all tests: 30 * 31 * adb shell am instrument \ 32 * -w com.android.dumprendertree.LayoutTestsAutoRunner 33 */ 34 35 public class LayoutTestsAutoRunner extends InstrumentationTestRunner { 36 @Override 37 public TestSuite getAllTests() { 38 TestSuite suite = new InstrumentationTestSuite(this); 39 suite.addTestSuite(LayoutTestsAutoTest.class); 40 suite.addTestSuite(LoadTestsAutoTest.class); 41 return suite; 42 } 43 44 @Override 45 public ClassLoader getLoader() { 46 return LayoutTestsAutoRunner.class.getClassLoader(); 47 } 48 49 @Override 50 public void onCreate(Bundle icicle) { 51 this.mTestPath = (String) icicle.get("path"); 52 String timeout_str = (String) icicle.get("timeout"); 53 if (timeout_str != null) { 54 try { 55 this.mTimeoutInMillis = Integer.parseInt(timeout_str); 56 } catch (Exception e) { 57 e.printStackTrace(); 58 } 59 } 60 61 String r = icicle.getString("rebaseline"); 62 this.mRebaseline = (r != null && r.toLowerCase().equals("true")); 63 64 mJsEngine = icicle.getString("jsengine"); 65 66 mPageCyclerSuite = icicle.getString("suite"); 67 mPageCyclerForwardHost = icicle.getString("forward"); 68 mPageCyclerIteration = icicle.getString("iteration", "5"); 69 70 super.onCreate(icicle); 71 } 72 73 String mPageCyclerSuite; 74 String mPageCyclerForwardHost; 75 String mPageCyclerIteration; 76 String mTestPath; 77 int mTimeoutInMillis = 0; 78 boolean mRebaseline; 79 String mJsEngine; 80 } 81