blob: 037522042d231fada1ff8bfd3222083b2ff8ca64 [file] [log] [blame]
Jason Monke7507482017-02-02 13:00:05 -05001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
5 * except in compliance with the License. You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the
10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
11 * KIND, either express or implied. See the License for the specific language governing
12 * permissions and limitations under the License.
13 */
14
Jason Monk340b0e52017-03-08 14:57:56 -050015package android.testing;
Jason Monke7507482017-02-02 13:00:05 -050016
Jason Monk745d0a82017-04-17 11:34:22 -040017import android.testing.TestableLooper.LooperFrameworkMethod;
Jason Monk340b0e52017-03-08 14:57:56 -050018import android.testing.TestableLooper.RunWithLooper;
Jason Monke7507482017-02-02 13:00:05 -050019
Brett Chabot84151d92019-02-27 15:37:59 -080020import androidx.test.internal.runner.junit4.statement.RunAfters;
21import androidx.test.internal.runner.junit4.statement.RunBefores;
22import androidx.test.internal.runner.junit4.statement.UiThreadStatement;
23
Jason Monke7507482017-02-02 13:00:05 -050024import org.junit.After;
25import org.junit.Before;
26import org.junit.Test;
27import org.junit.internal.runners.statements.FailOnTimeout;
28import org.junit.runners.BlockJUnit4ClassRunner;
29import org.junit.runners.model.FrameworkMethod;
30import org.junit.runners.model.InitializationError;
31import org.junit.runners.model.Statement;
32
Jason Monk745d0a82017-04-17 11:34:22 -040033import java.util.ArrayList;
Jason Monke7507482017-02-02 13:00:05 -050034import java.util.List;
35
Jason Monk340b0e52017-03-08 14:57:56 -050036/**
37 * A runner with support for extra annotations provided by the Testables library.
Jason Monk0c408002017-05-03 15:43:52 -040038 * @see UiThreadTest
39 * @see TestableLooper.RunWithLooper
Jason Monk340b0e52017-03-08 14:57:56 -050040 */
41public class AndroidTestingRunner extends BlockJUnit4ClassRunner {
Jason Monke7507482017-02-02 13:00:05 -050042
43 private final long mTimeout;
44 private final Class<?> mKlass;
45
Jason Monk340b0e52017-03-08 14:57:56 -050046 public AndroidTestingRunner(Class<?> klass) throws InitializationError {
Jason Monke7507482017-02-02 13:00:05 -050047 super(klass);
48 mKlass = klass;
49 // Can't seem to get reference to timeout parameter from here, so set default to 10 mins.
50 mTimeout = 10 * 60 * 1000;
51 }
52
53 @Override
54 protected Statement methodInvoker(FrameworkMethod method, Object test) {
Jason Monk745d0a82017-04-17 11:34:22 -040055 method = looperWrap(method, test, method);
56 final Statement statement = super.methodInvoker(method, test);
57 return shouldRunOnUiThread(method) ? new UiThreadStatement(statement, true) : statement;
Jason Monke7507482017-02-02 13:00:05 -050058 }
59
60 protected Statement withBefores(FrameworkMethod method, Object target, Statement statement) {
Jason Monk745d0a82017-04-17 11:34:22 -040061 List befores = looperWrap(method, target,
62 this.getTestClass().getAnnotatedMethods(Before.class));
Jason Monke7507482017-02-02 13:00:05 -050063 return befores.isEmpty() ? statement : new RunBefores(method, statement,
64 befores, target);
65 }
66
67 protected Statement withAfters(FrameworkMethod method, Object target, Statement statement) {
Jason Monk745d0a82017-04-17 11:34:22 -040068 List afters = looperWrap(method, target,
69 this.getTestClass().getAnnotatedMethods(After.class));
Jason Monke7507482017-02-02 13:00:05 -050070 return afters.isEmpty() ? statement : new RunAfters(method, statement, afters,
71 target);
72 }
73
74 protected Statement withPotentialTimeout(FrameworkMethod method, Object test, Statement next) {
75 long timeout = this.getTimeout(method.getAnnotation(Test.class));
76 if (timeout <= 0L && mTimeout > 0L) {
77 timeout = mTimeout;
78 }
79
80 return timeout <= 0L ? next : new FailOnTimeout(next, timeout);
81 }
82
83 private long getTimeout(Test annotation) {
84 return annotation == null ? 0L : annotation.timeout();
85 }
Jason Monkba364322017-03-06 11:19:20 -050086
Jason Monk745d0a82017-04-17 11:34:22 -040087 protected List<FrameworkMethod> looperWrap(FrameworkMethod method, Object test,
88 List<FrameworkMethod> methods) {
89 RunWithLooper annotation = method.getAnnotation(RunWithLooper.class);
90 if (annotation == null) annotation = mKlass.getAnnotation(RunWithLooper.class);
91 if (annotation != null) {
92 methods = new ArrayList<>(methods);
93 for (int i = 0; i < methods.size(); i++) {
94 methods.set(i, LooperFrameworkMethod.get(methods.get(i),
95 annotation.setAsMainLooper(), test));
96 }
97 }
98 return methods;
99 }
100
101 protected FrameworkMethod looperWrap(FrameworkMethod method, Object test,
102 FrameworkMethod base) {
103 RunWithLooper annotation = method.getAnnotation(RunWithLooper.class);
104 if (annotation == null) annotation = mKlass.getAnnotation(RunWithLooper.class);
105 if (annotation != null) {
106 return LooperFrameworkMethod.get(base, annotation.setAsMainLooper(), test);
107 }
108 return base;
109 }
110
Jason Monkba364322017-03-06 11:19:20 -0500111 public boolean shouldRunOnUiThread(FrameworkMethod method) {
112 if (mKlass.getAnnotation(UiThreadTest.class) != null) {
113 return true;
114 } else {
115 return UiThreadStatement.shouldRunOnUiThread(method);
116 }
117 }
Jason Monke7507482017-02-02 13:00:05 -0500118}