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 getAllTests()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 getLoader()45 public ClassLoader getLoader() { 46 return LayoutTestsAutoRunner.class.getClassLoader(); 47 } 48 49 @Override onCreate(Bundle icicle)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 delay_str = (String) icicle.get("delay"); 62 if(delay_str != null) { 63 try { 64 this.mDelay = Integer.parseInt(delay_str); 65 } catch (Exception e) { 66 } 67 } 68 69 String r = icicle.getString("rebaseline"); 70 this.mRebaseline = (r != null && r.toLowerCase().equals("true")); 71 72 String logtime = icicle.getString("logtime"); 73 this.mLogtime = (logtime != null 74 && logtime.toLowerCase().equals("true")); 75 76 String drawTime = icicle.getString("drawtime"); 77 this.mGetDrawTime = (drawTime != null 78 && drawTime.toLowerCase().equals("true")); 79 80 mSaveImagePath = icicle.getString("saveimage"); 81 82 mJsEngine = icicle.getString("jsengine"); 83 84 mPageCyclerSuite = icicle.getString("suite"); 85 mPageCyclerForwardHost = icicle.getString("forward"); 86 mPageCyclerIteration = icicle.getString("iteration", "5"); 87 88 super.onCreate(icicle); 89 } 90 91 String mPageCyclerSuite; 92 String mPageCyclerForwardHost; 93 String mPageCyclerIteration; 94 String mTestPath; 95 String mSaveImagePath; 96 int mTimeoutInMillis; 97 int mDelay; 98 boolean mRebaseline; 99 boolean mLogtime; 100 boolean mGetDrawTime; 101 String mJsEngine; 102 } 103