/* * Copyright 2002-2016 the original author or authors. * * 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 org.springframework.test.context.junit4; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runner.Runner; import org.junit.runners.JUnit4; import org.springframework.test.annotation.Timed; import org.springframework.test.context.TestExecutionListeners; import static org.springframework.test.context.junit4.JUnitTestingUtils.*; /** * Verifies proper handling of the following in conjunction with the * {@link SpringRunner}: * <ul> * <li>JUnit's {@link Test#timeout() @Test(timeout=...)}</li> * <li>Spring's {@link Timed @Timed}</li> * </ul> * * @author Sam Brannen * @since 3.0 */ @RunWith(JUnit4.class) public class TimedSpringRunnerTests { protected Class<?> getTestCase() { return TimedSpringRunnerTestCase.class; } protected Class<? extends Runner> getRunnerClass() { return SpringRunner.class; } @Test public void timedTests() throws Exception { runTestsAndAssertCounters(getRunnerClass(), getTestCase(), 7, 5, 7, 0, 0); } @Ignore("TestCase classes are run manually by the enclosing test class") @TestExecutionListeners({}) public static class TimedSpringRunnerTestCase { // Should Pass. @Test(timeout = 2000) public void jUnitTimeoutWithNoOp() { /* no-op */ } // Should Pass. @Test @Timed(millis = 2000) public void springTimeoutWithNoOp() { /* no-op */ } // Should Fail due to timeout. @Test(timeout = 100) public void jUnitTimeoutWithSleep() throws Exception { Thread.sleep(200); } // Should Fail due to timeout. @Test @Timed(millis = 100) public void springTimeoutWithSleep() throws Exception { Thread.sleep(200); } // Should Fail due to timeout. @Test @MetaTimed public void springTimeoutWithSleepAndMetaAnnotation() throws Exception { Thread.sleep(200); } // Should Fail due to timeout. @Test @MetaTimedWithOverride(millis = 100) public void springTimeoutWithSleepAndMetaAnnotationAndOverride() throws Exception { Thread.sleep(200); } // Should Fail due to duplicate configuration. @Test(timeout = 200) @Timed(millis = 200) public void springAndJUnitTimeouts() { /* no-op */ } } @Timed(millis = 100) @Retention(RetentionPolicy.RUNTIME) private static @interface MetaTimed { } @Timed(millis = 1000) @Retention(RetentionPolicy.RUNTIME) private static @interface MetaTimedWithOverride { long millis() default 1000; } }