blob: d6e9ec6ac3de851deeb578a1c1bffff808ea4d2e [file] [log] [blame]
Brett Chabot3add9162010-09-12 17:23:05 -07001/*
2 * Copyright (C) 2010 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 */
Brett Chabot13638ab2011-10-16 13:59:03 -070016
Brett Chabot3add9162010-09-12 17:23:05 -070017package com.android.cts.tradefed.testtype;
18
Brett Chabot82d9daf2010-10-20 20:07:14 -070019import com.android.ddmlib.testrunner.TestIdentifier;
Brett Chabot58c43a82011-09-13 14:13:57 -070020import com.android.tradefed.log.LogUtil.CLog;
Brett Chabot3add9162010-09-12 17:23:05 -070021import com.android.tradefed.testtype.IRemoteTest;
22import com.android.tradefed.testtype.InstrumentationTest;
Brett Chabot58c43a82011-09-13 14:13:57 -070023import com.android.tradefed.util.StreamUtil;
Brett Chabot3add9162010-09-12 17:23:05 -070024
Brett Chabot58c43a82011-09-13 14:13:57 -070025import java.io.BufferedInputStream;
Brett Chabot3add9162010-09-12 17:23:05 -070026import java.io.File;
Brett Chabot58c43a82011-09-13 14:13:57 -070027import java.io.FileInputStream;
28import java.io.FileNotFoundException;
29import java.io.IOException;
30import java.io.InputStream;
31import java.security.DigestInputStream;
32import java.security.MessageDigest;
33import java.security.NoSuchAlgorithmException;
Brett Chabot82d9daf2010-10-20 20:07:14 -070034import java.util.Collection;
Brett Chabotef5a6042011-01-19 19:54:14 -080035import java.util.LinkedHashSet;
Brett Chabot3add9162010-09-12 17:23:05 -070036
37/**
38 * Container for CTS test info.
39 * <p/>
40 * Knows how to translate this info into a runnable {@link IRemoteTest}.
41 */
Brett Chabot4f8143c2010-12-14 18:29:44 -080042class TestPackageDef implements ITestPackageDef {
Brett Chabot3add9162010-09-12 17:23:05 -070043
Brian Muramatsu60695072012-01-09 18:11:03 -080044 public static final String HOST_SIDE_ONLY_TEST = "hostSideOnly";
45 public static final String NATIVE_TEST = "native";
46 public static final String VM_HOST_TEST = "vmHostTest";
47
Brett Chabot584d2b92011-02-03 17:56:49 -080048 private static final String SIGNATURE_TEST_METHOD = "testSignature";
49 private static final String SIGNATURE_TEST_CLASS = "android.tests.sigtest.SimpleSignatureTest";
Brett Chabot3add9162010-09-12 17:23:05 -070050
51 private String mUri = null;
52 private String mAppNameSpace = null;
53 private String mName = null;
54 private String mRunner = null;
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070055 private boolean mIsVMHostTest = false;
Brian Muramatsu88d32a82011-12-02 10:55:12 -080056 private String mTestType = null;
Brett Chabot3add9162010-09-12 17:23:05 -070057 private String mJarPath = null;
58 private boolean mIsSignatureTest = false;
Brian Carlstrom022aff42011-05-17 23:16:51 -070059 private String mTestPackageName = null;
Brett Chabot58c43a82011-09-13 14:13:57 -070060 private String mDigest = null;
Brett Chabot3add9162010-09-12 17:23:05 -070061
Brett Chabot13638ab2011-10-16 13:59:03 -070062 // use a LinkedHashSet for predictable iteration insertion-order, and fast
63 // lookups
Brett Chabotef5a6042011-01-19 19:54:14 -080064 private Collection<TestIdentifier> mTests = new LinkedHashSet<TestIdentifier>();
65 // also maintain an index of known test classes
66 private Collection<String> mTestClasses = new LinkedHashSet<String>();
Brett Chabot4f8143c2010-12-14 18:29:44 -080067
Brett Chabot53e68a32011-10-05 14:14:55 -070068 // dynamic options, not parsed from package xml
69 private String mClassName;
70 private String mMethodName;
71 private TestFilter mExcludedTestFilter = new TestFilter();
Brett Chabot358dc562011-10-25 15:46:48 -070072 private String mTargetBinaryName;
73 private String mTargetNameSpace;
Brett Chabot53e68a32011-10-05 14:14:55 -070074
Brett Chabot3add9162010-09-12 17:23:05 -070075 void setUri(String uri) {
76 mUri = uri;
77 }
78
79 /**
Brett Chabot4f8143c2010-12-14 18:29:44 -080080 * {@inheritDoc}
Brett Chabot3add9162010-09-12 17:23:05 -070081 */
Brian Muramatsu88d32a82011-12-02 10:55:12 -080082 @Override
Brett Chabot3add9162010-09-12 17:23:05 -070083 public String getUri() {
84 return mUri;
85 }
86
87 void setAppNameSpace(String appNameSpace) {
88 mAppNameSpace = appNameSpace;
89 }
90
91 String getAppNameSpace() {
92 return mAppNameSpace;
93 }
94
95 void setName(String name) {
96 mName = name;
97 }
98
Brett Chabot58c43a82011-09-13 14:13:57 -070099 /**
100 * {@inheritDoc}
101 */
102 @Override
103 public String getName() {
Brett Chabot3add9162010-09-12 17:23:05 -0700104 return mName;
105 }
106
107 void setRunner(String runnerName) {
108 mRunner = runnerName;
109 }
110
111 String getRunner() {
112 return mRunner;
113 }
114
Brian Muramatsu88d32a82011-12-02 10:55:12 -0800115 void setTestType(String testType) {
116 mTestType = testType;
117 }
118
Brian Muramatsu60695072012-01-09 18:11:03 -0800119 String getTestType() {
120 return mTestType;
121 }
122
Brett Chabot3add9162010-09-12 17:23:05 -0700123 void setJarPath(String jarPath) {
124 mJarPath = jarPath;
125 }
126
127 String getJarPath() {
128 return mJarPath;
129 }
130
131 void setIsSignatureCheck(boolean isSignatureCheckTest) {
132 mIsSignatureTest = isSignatureCheckTest;
133 }
134
135 boolean isSignatureCheck() {
136 return mIsSignatureTest;
137 }
138
Brian Carlstrom022aff42011-05-17 23:16:51 -0700139 void setTestPackageName(String testPackageName) {
140 mTestPackageName = testPackageName;
141 }
142
Brett Chabot358dc562011-10-25 15:46:48 -0700143 void setTargetBinaryName(String targetBinaryName) {
144 mTargetBinaryName = targetBinaryName;
145 }
146
147 void setTargetNameSpace(String targetNameSpace) {
148 mTargetNameSpace = targetNameSpace;
149 }
150
151 @Override
152 public String getTargetApkName() {
153 if (mTargetBinaryName != null && !mTargetBinaryName.isEmpty()) {
154 return String.format("%s.apk", mTargetBinaryName);
155 }
156 return null;
157 }
158
159 @Override
160 public String getTargetPackageName() {
161 if (mTargetNameSpace != null && mTargetNameSpace.isEmpty()) {
162 return null;
163 }
164 return mTargetNameSpace;
165 }
166
Brett Chabot3add9162010-09-12 17:23:05 -0700167 /**
Brett Chabot4f8143c2010-12-14 18:29:44 -0800168 * {@inheritDoc}
Brett Chabot3add9162010-09-12 17:23:05 -0700169 */
Brett Chabot53e68a32011-10-05 14:14:55 -0700170 @Override
171 public void setExcludedTestFilter(TestFilter excludeFilter) {
172 mExcludedTestFilter = excludeFilter;
173 }
174
175 /**
176 * {@inheritDoc}
177 */
178 @Override
179 public void setClassName(String className, String methodName) {
180 mClassName = className;
181 mMethodName = methodName;
182 }
183
184 /**
185 * {@inheritDoc}
186 */
187 @Override
188 public IRemoteTest createTest(File testCaseDir) {
189 mExcludedTestFilter.setTestInclusion(mClassName, mMethodName);
190 mTests = filterTests();
191
Brian Muramatsu60695072012-01-09 18:11:03 -0800192 if (HOST_SIDE_ONLY_TEST.equals(mTestType)) {
Brett Chabot13638ab2011-10-16 13:59:03 -0700193 CLog.d("Creating host test for %s", mName);
Brett Chabot82d9daf2010-10-20 20:07:14 -0700194 JarHostTest hostTest = new JarHostTest();
Brett Chabot58c43a82011-09-13 14:13:57 -0700195 hostTest.setRunName(getUri());
Brett Chabotf4bec732011-04-19 17:31:06 -0700196 hostTest.setJarFileName(mJarPath);
Brett Chabot53e68a32011-10-05 14:14:55 -0700197 hostTest.setTests(mTests);
Brett Chabot58c43a82011-09-13 14:13:57 -0700198 mDigest = generateDigest(testCaseDir, mJarPath);
Brett Chabot82d9daf2010-10-20 20:07:14 -0700199 return hostTest;
Brian Muramatsu60695072012-01-09 18:11:03 -0800200 } else if (VM_HOST_TEST.equals(mTestType)) {
Brett Chabot13638ab2011-10-16 13:59:03 -0700201 CLog.d("Creating vm host test for %s", mName);
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -0700202 VMHostTest vmHostTest = new VMHostTest();
Brett Chabot58c43a82011-09-13 14:13:57 -0700203 vmHostTest.setRunName(getUri());
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -0700204 vmHostTest.setJarFileName(mJarPath);
Brett Chabot53e68a32011-10-05 14:14:55 -0700205 vmHostTest.setTests(mTests);
Brett Chabot58c43a82011-09-13 14:13:57 -0700206 mDigest = generateDigest(testCaseDir, mJarPath);
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -0700207 return vmHostTest;
Brian Muramatsu60695072012-01-09 18:11:03 -0800208 } else if (NATIVE_TEST.equals(mTestType)) {
Brian Muramatsu88d32a82011-12-02 10:55:12 -0800209 return new GeeTest(mUri, mName);
Brett Chabot3add9162010-09-12 17:23:05 -0700210 } else if (mIsSignatureTest) {
Brett Chabot13638ab2011-10-16 13:59:03 -0700211 // TODO: hardcode the runner/class/method for now, since current package xml points to
212 // specialized instrumentation. Eventually this special case for signatureTest can be
213 // removed, and it can be treated just like a normal InstrumentationTest
214 CLog.d("Creating signature test %s", mName);
Brett Chabotf4bec732011-04-19 17:31:06 -0700215 InstrumentationApkTest instrTest = new InstrumentationApkTest();
Brett Chabot584d2b92011-02-03 17:56:49 -0800216 instrTest.setPackageName(mAppNameSpace);
217 instrTest.setRunnerName("android.test.InstrumentationTestRunner");
218 instrTest.setClassName(SIGNATURE_TEST_CLASS);
219 instrTest.setMethodName(SIGNATURE_TEST_METHOD);
Brett Chabot13638ab2011-10-16 13:59:03 -0700220 // set expected tests to the single signature test
221 TestIdentifier t = new TestIdentifier(SIGNATURE_TEST_CLASS, SIGNATURE_TEST_METHOD);
222 mTests.clear();
223 mTests.add(t);
Brett Chabot584d2b92011-02-03 17:56:49 -0800224 // mName means 'apk file name' for instrumentation tests
Brett Chabotf4bec732011-04-19 17:31:06 -0700225 instrTest.addInstallApk(String.format("%s.apk", mName), mAppNameSpace);
Brett Chabot58c43a82011-09-13 14:13:57 -0700226 mDigest = generateDigest(testCaseDir, String.format("%s.apk", mName));
Brett Chabot584d2b92011-02-03 17:56:49 -0800227 return instrTest;
Brett Chabota0f443c2011-02-04 13:57:55 -0800228 } else {
Brett Chabot13638ab2011-10-16 13:59:03 -0700229 CLog.d("Creating instrumentation test for %s", mName);
Brett Chabot4263db42011-04-15 13:51:48 -0700230 InstrumentationApkTest instrTest = new InstrumentationApkTest();
Brett Chabot53e68a32011-10-05 14:14:55 -0700231 return setInstrumentationTest(instrTest, testCaseDir);
Brett Chabot3add9162010-09-12 17:23:05 -0700232 }
233 }
Brett Chabot82d9daf2010-10-20 20:07:14 -0700234
235 /**
Brett Chabot13638ab2011-10-16 13:59:03 -0700236 * Populates given {@link InstrumentationApkTest} with data from the package xml.
Brett Chabota0f443c2011-02-04 13:57:55 -0800237 *
238 * @param testCaseDir
Brett Chabota0f443c2011-02-04 13:57:55 -0800239 * @param instrTest
240 * @return the populated {@link InstrumentationTest} or <code>null</code>
241 */
Brett Chabot53e68a32011-10-05 14:14:55 -0700242 private InstrumentationTest setInstrumentationTest(InstrumentationApkTest instrTest,
243 File testCaseDir) {
Brett Chabot58c43a82011-09-13 14:13:57 -0700244 instrTest.setRunName(getUri());
Brett Chabota0f443c2011-02-04 13:57:55 -0800245 instrTest.setPackageName(mAppNameSpace);
246 instrTest.setRunnerName(mRunner);
Brian Carlstrom022aff42011-05-17 23:16:51 -0700247 instrTest.setTestPackageName(mTestPackageName);
Brett Chabot53e68a32011-10-05 14:14:55 -0700248 instrTest.setClassName(mClassName);
249 instrTest.setMethodName(mMethodName);
250 instrTest.setTestsToRun(mTests,
251 !mExcludedTestFilter.hasExclusion()
252 /* only force batch mode if no tests are excluded */);
Brett Chabota0f443c2011-02-04 13:57:55 -0800253 // mName means 'apk file name' for instrumentation tests
Brett Chabot4263db42011-04-15 13:51:48 -0700254 instrTest.addInstallApk(String.format("%s.apk", mName), mAppNameSpace);
Brett Chabot58c43a82011-09-13 14:13:57 -0700255 mDigest = generateDigest(testCaseDir, String.format("%s.apk", mName));
Brett Chabot4263db42011-04-15 13:51:48 -0700256 if (mTests.size() > 1000) {
257 // TODO: hack, large test suites can take longer to collect tests, increase timeout
Brett Chabot13638ab2011-10-16 13:59:03 -0700258 instrTest.setCollectsTestsShellTimeout(10 * 60 * 1000);
Brett Chabota0f443c2011-02-04 13:57:55 -0800259 }
Brett Chabota0f443c2011-02-04 13:57:55 -0800260 return instrTest;
261 }
262
263 /**
Brett Chabot13638ab2011-10-16 13:59:03 -0700264 * Filter the tests to run based on list of excluded tests, class and method name.
Brett Chabotef5a6042011-01-19 19:54:14 -0800265 *
Brett Chabotef5a6042011-01-19 19:54:14 -0800266 * @return the filtered collection of tests
267 */
Brett Chabot53e68a32011-10-05 14:14:55 -0700268 private Collection<TestIdentifier> filterTests() {
269 mExcludedTestFilter.setTestInclusion(mClassName, mMethodName);
270 return mExcludedTestFilter.filter(mTests);
Brett Chabotef5a6042011-01-19 19:54:14 -0800271 }
272
273 /**
Brett Chabot4f8143c2010-12-14 18:29:44 -0800274 * {@inheritDoc}
275 */
Brian Muramatsu88d32a82011-12-02 10:55:12 -0800276 @Override
Brett Chabot4f8143c2010-12-14 18:29:44 -0800277 public boolean isKnownTest(TestIdentifier testDef) {
278 return mTests.contains(testDef);
279 }
280
281 /**
Brett Chabotef5a6042011-01-19 19:54:14 -0800282 * {@inheritDoc}
283 */
Brian Muramatsu88d32a82011-12-02 10:55:12 -0800284 @Override
Brett Chabotef5a6042011-01-19 19:54:14 -0800285 public boolean isKnownTestClass(String className) {
286 return mTestClasses.contains(className);
287 }
288
289 /**
Brian Muramatsu29d34782012-01-06 18:00:21 -0800290 * Add a {@link TestIdentifier} to the list of tests in this package.
Brett Chabot82d9daf2010-10-20 20:07:14 -0700291 *
Brian Muramatsu29d34782012-01-06 18:00:21 -0800292 * @param testDef
Brett Chabot82d9daf2010-10-20 20:07:14 -0700293 */
294 void addTest(TestIdentifier testDef) {
295 mTests.add(testDef);
Brett Chabotef5a6042011-01-19 19:54:14 -0800296 mTestClasses.add(testDef.getClassName());
Brett Chabot82d9daf2010-10-20 20:07:14 -0700297 }
298
299 /**
300 * Get the collection of tests in this test package.
Brett Chabot82d9daf2010-10-20 20:07:14 -0700301 */
Brett Chabot1dcb9a52011-02-10 20:26:57 -0800302 @Override
303 public Collection<TestIdentifier> getTests() {
Brett Chabot82d9daf2010-10-20 20:07:14 -0700304 return mTests;
305 }
Brett Chabot58c43a82011-09-13 14:13:57 -0700306
307 /**
308 * {@inheritDoc}
309 */
310 @Override
311 public String getDigest() {
312 return mDigest;
313 }
314
315 /**
316 * Generate a sha1sum digest for a file.
317 * <p/>
318 * Exposed for unit testing.
319 *
320 * @param fileDir the directory of the file
321 * @param fileName the name of the file
322 * @return a hex {@link String} of the digest
323 */
Brett Chabot13638ab2011-10-16 13:59:03 -0700324 String generateDigest(File fileDir, String fileName) {
Brett Chabot58c43a82011-09-13 14:13:57 -0700325 final String algorithm = "SHA-1";
326 InputStream fileStream = null;
Brett Chabot13638ab2011-10-16 13:59:03 -0700327 DigestInputStream d = null;
Brett Chabot58c43a82011-09-13 14:13:57 -0700328 try {
329 fileStream = getFileStream(fileDir, fileName);
330 MessageDigest md = MessageDigest.getInstance(algorithm);
331 d = new DigestInputStream(fileStream, md);
332 byte[] buffer = new byte[8196];
Brian Muramatsu29d34782012-01-06 18:00:21 -0800333 while (d.read(buffer) != -1) {
334 }
Brett Chabot58c43a82011-09-13 14:13:57 -0700335 return toHexString(md.digest());
336 } catch (NoSuchAlgorithmException e) {
337 return algorithm + " not found";
338 } catch (IOException e) {
339 CLog.e(e);
340 } finally {
341 StreamUtil.closeStream(d);
342 StreamUtil.closeStream(fileStream);
343 }
344 return "failed to generate digest";
345 }
346
347 /**
348 * Retrieve an input stream for given file
349 * <p/>
350 * Exposed so unit tests can mock.
351 */
352 InputStream getFileStream(File fileDir, String fileName) throws FileNotFoundException {
353 InputStream fileStream;
354 fileStream = new BufferedInputStream(new FileInputStream(new File(fileDir, fileName)));
355 return fileStream;
356 }
357
358 /**
359 * Convert the given byte array into a lowercase hex string.
360 *
361 * @param arr The array to convert.
362 * @return The hex encoded string.
363 */
364 private String toHexString(byte[] arr) {
365 StringBuffer buf = new StringBuffer(arr.length * 2);
366 for (byte b : arr) {
367 buf.append(String.format("%02x", b & 0xFF));
368 }
369 return buf.toString();
370 }
Brett Chabot3add9162010-09-12 17:23:05 -0700371}