aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjdesprez <jdesprez@google.com>2017-09-05 16:49:51 -0700
committerjdesprez <jdesprez@google.com>2017-09-05 16:51:45 -0700
commit4d21e17b7890e0e9c41b2b8766145d8a052e513e (patch)
treed3b98b9284b37e0eb84b9aba5878a2cc6902786e /src
parent76bdb173f38bb72f1cc6cb6b60c11b4aaab32707 (diff)
downloadtradefederation-4d21e17b7890e0e9c41b2b8766145d8a052e513e.tar.gz
Move the TestSuiteStub class to tests/
- move the test helper class. - small clean up for log level - add a very basic test for runtimehint Test: unit tests Bug: 37211399 Change-Id: Ib3d83925180df6ad416ce0bb9bc56a878a15bf21
Diffstat (limited to 'src')
-rw-r--r--src/com/android/tradefed/testtype/suite/ITestSuite.java2
-rw-r--r--src/com/android/tradefed/testtype/suite/TestSuiteStub.java190
-rw-r--r--src/com/android/tradefed/testtype/suite/ValidateSuiteConfigHelper.java2
3 files changed, 3 insertions, 191 deletions
diff --git a/src/com/android/tradefed/testtype/suite/ITestSuite.java b/src/com/android/tradefed/testtype/suite/ITestSuite.java
index 45db8cf09..0b4f3f6a7 100644
--- a/src/com/android/tradefed/testtype/suite/ITestSuite.java
+++ b/src/com/android/tradefed/testtype/suite/ITestSuite.java
@@ -508,7 +508,7 @@ public abstract class ITestSuite
@Override
public long getRuntimeHint() {
if (mDirectModule != null) {
- CLog.e(
+ CLog.d(
" %s: %s",
mDirectModule.getId(),
TimeUtil.formatElapsedTime(mDirectModule.getRuntimeHint()));
diff --git a/src/com/android/tradefed/testtype/suite/TestSuiteStub.java b/src/com/android/tradefed/testtype/suite/TestSuiteStub.java
deleted file mode 100644
index 79f8ee1cc..000000000
--- a/src/com/android/tradefed/testtype/suite/TestSuiteStub.java
+++ /dev/null
@@ -1,190 +0,0 @@
-/*
- * Copyright (C) 2017 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package com.android.tradefed.testtype.suite;
-
-import com.android.ddmlib.testrunner.TestIdentifier;
-import com.android.tradefed.config.Option;
-import com.android.tradefed.config.OptionCopier;
-import com.android.tradefed.device.DeviceNotAvailableException;
-import com.android.tradefed.result.ITestInvocationListener;
-import com.android.tradefed.testtype.IAbi;
-import com.android.tradefed.testtype.IAbiReceiver;
-import com.android.tradefed.testtype.IRemoteTest;
-import com.android.tradefed.testtype.IRuntimeHintProvider;
-import com.android.tradefed.testtype.IShardableTest;
-import com.android.tradefed.testtype.ITestCollector;
-import com.android.tradefed.testtype.ITestFilterReceiver;
-
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.List;
-import java.util.Set;
-
-/** A test Stub that can be used to fake some runs for suite's testing. */
-public class TestSuiteStub
- implements IRemoteTest,
- IAbiReceiver,
- IRuntimeHintProvider,
- ITestCollector,
- ITestFilterReceiver,
- IShardableTest {
-
- @Option(name = "module")
- private String mModule;
-
- @Option(name = "foo")
- protected String mFoo;
-
- @Option(name = "blah")
- protected String mBlah;
-
- @Option(name = "report-test")
- protected boolean mReportTest = false;
-
- @Option(name = "run-complete")
- protected boolean mIsComplete = true;
-
- @Option(name = "test-fail")
- protected boolean mDoesOneTestFail = true;
-
- @Option(name = "internal-retry")
- protected boolean mRetry = false;
-
- @Option(name = "throw-device-not-available")
- protected boolean mThrow = false;
-
- protected List<TestIdentifier> mShardedTestToRun;
- protected Integer mShardIndex = null;
-
- /** Tests attempt. */
- private void testAttempt(ITestInvocationListener listener) throws DeviceNotAvailableException {
- listener.testRunStarted(mModule, 3);
- TestIdentifier tid = new TestIdentifier("TestStub", "test1");
- listener.testStarted(tid);
- listener.testEnded(tid, Collections.emptyMap());
-
- if (mIsComplete) {
- // possibly skip this one to create some not_executed case.
- TestIdentifier tid2 = new TestIdentifier("TestStub", "test2");
- listener.testStarted(tid2);
- if (mThrow) {
- throw new DeviceNotAvailableException();
- }
- listener.testEnded(tid2, Collections.emptyMap());
- }
-
- TestIdentifier tid3 = new TestIdentifier("TestStub", "test3");
- listener.testStarted(tid3);
- if (mDoesOneTestFail) {
- listener.testFailed(tid3, "ouch this is bad.");
- }
- listener.testEnded(tid3, Collections.emptyMap());
-
- listener.testRunEnded(0, Collections.emptyMap());
- }
-
- /** {@inheritDoc} */
- @Override
- public void run(ITestInvocationListener listener) throws DeviceNotAvailableException {
- if (mReportTest) {
- if (mShardedTestToRun == null) {
- if (!mRetry) {
- testAttempt(listener);
- } else {
- // We fake an internal retry by calling testRunStart/Ended again.
- listener.testRunStarted(mModule, 3);
- listener.testRunEnded(0, Collections.emptyMap());
- testAttempt(listener);
- }
- } else {
- // Run the shard
- if (mDoesOneTestFail) {
- listener.testRunStarted(mModule, mShardedTestToRun.size() + 1);
- } else {
- listener.testRunStarted(mModule, mShardedTestToRun.size());
- }
-
- if (mIsComplete) {
- for (TestIdentifier tid : mShardedTestToRun) {
- listener.testStarted(tid);
- listener.testEnded(tid, Collections.emptyMap());
- }
- } else {
- TestIdentifier tid = mShardedTestToRun.get(0);
- listener.testStarted(tid);
- listener.testEnded(tid, Collections.emptyMap());
- }
-
- if (mDoesOneTestFail) {
- TestIdentifier tid = new TestIdentifier("TestStub", "failed" + mShardIndex);
- listener.testStarted(tid);
- listener.testFailed(tid, "shard failed this one.");
- listener.testEnded(tid, Collections.emptyMap());
- }
- listener.testRunEnded(0, Collections.emptyMap());
- }
- }
- }
-
- @Override
- public Collection<IRemoteTest> split(int shardCountHint) {
- if (mShardedTestToRun == null) {
- return null;
- }
- Collection<IRemoteTest> listTest = new ArrayList<>();
- for (TestIdentifier id : mShardedTestToRun) {
- TestSuiteStub stub = new TestSuiteStub();
- OptionCopier.copyOptionsNoThrow(this, stub);
- stub.mShardedTestToRun = new ArrayList<>();
- stub.mShardedTestToRun.add(id);
- listTest.add(stub);
- }
- return listTest;
- }
-
- @Override
- public void setAbi(IAbi abi) {
- // Do nothing
- }
-
- @Override
- public IAbi getAbi() {
- return null;
- }
-
- @Override
- public long getRuntimeHint() {
- return 1L;
- }
-
- @Override
- public void setCollectTestsOnly(boolean shouldCollectTest) {
- // Do nothing
- }
-
- @Override
- public void addIncludeFilter(String filter) {}
-
- @Override
- public void addAllIncludeFilters(Set<String> filters) {}
-
- @Override
- public void addExcludeFilter(String filter) {}
-
- @Override
- public void addAllExcludeFilters(Set<String> filters) {}
-}
diff --git a/src/com/android/tradefed/testtype/suite/ValidateSuiteConfigHelper.java b/src/com/android/tradefed/testtype/suite/ValidateSuiteConfigHelper.java
index 914037f7e..11701a0b5 100644
--- a/src/com/android/tradefed/testtype/suite/ValidateSuiteConfigHelper.java
+++ b/src/com/android/tradefed/testtype/suite/ValidateSuiteConfigHelper.java
@@ -26,6 +26,8 @@ import com.android.tradefed.result.TextResultReporter;
*/
public class ValidateSuiteConfigHelper {
+ private ValidateSuiteConfigHelper() {}
+
/**
* Check that a configuration is properly built to run in a suite.
*