blob: 440f00478c1897ccb17b2635112c55162a5858c1 [file] [log] [blame]
/*
* Copyright (C) 2014 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 android.support.test.internal.runner.junit3;
import android.util.Log;
import android.support.test.internal.util.AndroidRunnerParams;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.junit.internal.builders.SuiteMethodBuilder;
import org.junit.internal.runners.SuiteMethod;
import org.junit.runner.Runner;
import org.junit.runners.model.RunnerBuilder;
/**
* A {@link RunnerBuilder} that properly injects Android constructs into
* classes with suite() methods.
*/
public class AndroidSuiteBuilder extends SuiteMethodBuilder {
private static final String LOG_TAG = "AndroidSuiteBuilder";
private final AndroidRunnerParams mAndroidRunnerParams;
/**
* @param runnerParams {@link AndroidRunnerParams} that stores common runner parameters
*/
public AndroidSuiteBuilder(AndroidRunnerParams runnerParams) {
mAndroidRunnerParams = runnerParams;
}
@Override
public Runner runnerForClass(Class<?> testClass) throws Throwable {
if (mAndroidRunnerParams.isIgnoreSuiteMethods()) {
return null;
}
try {
if (hasSuiteMethod(testClass)) {
Test t = SuiteMethod.testFromSuiteMethod(testClass);
if (!(t instanceof TestSuite)) {
// this should not be possible
throw new IllegalArgumentException(testClass.getName() +
"#suite() did not return a TestSuite");
}
if (mAndroidRunnerParams.isSkipExecution()) {
return new JUnit38ClassRunner(new NoExecTestSuite((TestSuite) t));
} else {
return new JUnit38ClassRunner(new AndroidTestSuite((TestSuite) t,
mAndroidRunnerParams));
}
}
} catch (Throwable e) {
// log error message including stack trace before throwing to help with debugging.
Log.e(LOG_TAG, "Error constructing runner", e);
throw e;
}
return null;
}
}