/* * Copyright 2002-2017 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.concurrency; import java.lang.annotation.Annotation; import java.util.Arrays; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.ParallelComputer; import org.springframework.test.context.hierarchies.web.DispatcherWacRootWacEarTests; import org.springframework.test.context.junit4.InheritedConfigSpringJUnit4ClassRunnerAppCtxTests; import org.springframework.test.context.junit4.MethodLevelTransactionalSpringRunnerTests; import org.springframework.test.context.junit4.SpringJUnit47ClassRunnerRuleTests; import org.springframework.test.context.junit4.SpringJUnit4ClassRunnerAppCtxTests; import org.springframework.test.context.junit4.SpringRunner; import org.springframework.test.context.junit4.TimedTransactionalSpringRunnerTests; import org.springframework.test.context.junit4.rules.BaseAppCtxRuleTests; import org.springframework.test.context.junit4.rules.BasicAnnotationConfigWacSpringRuleTests; import org.springframework.test.context.junit4.rules.SpringClassRule; import org.springframework.test.context.junit4.rules.SpringMethodRule; import org.springframework.test.context.web.RequestAndSessionScopedBeansWacTests; import org.springframework.test.context.web.socket.WebSocketServletServerContainerFactoryBeanTests; import org.springframework.test.web.client.samples.SampleTests; import org.springframework.test.web.servlet.samples.context.JavaConfigTests; import org.springframework.test.web.servlet.samples.context.WebAppResourceTests; import org.springframework.tests.Assume; import org.springframework.tests.TestGroup; import org.springframework.util.ReflectionUtils; import static org.springframework.core.annotation.AnnotatedElementUtils.*; import static org.springframework.test.context.junit4.JUnitTestingUtils.*; /** * Concurrency tests for the {@link SpringRunner}, {@link SpringClassRule}, and * {@link SpringMethodRule} that use JUnit 4's experimental {@link ParallelComputer} * to execute tests in parallel. * * <p>The tests executed by this test class come from a hand-picked collection of test * classes within the test suite that is intended to cover most categories of tests * that are currently supported by the TestContext Framework on JUnit 4. * * <p>The chosen test classes intentionally do <em>not</em> include any classes that * fall under the following categories. * * <ul> * <li>tests that make use of Spring's {@code @DirtiesContext} support * <li>tests that make use of JUnit 4's {@code @FixMethodOrder} support * <li>tests that commit changes to the state of a shared in-memory database * </ul> * * <p><strong>NOTE</strong>: these tests only run if the {@link TestGroup#LONG_RUNNING * LONG_RUNNING} test group is enabled. * * @author Sam Brannen * @since 5.0 * @see org.springframework.test.context.TestContextConcurrencyTests */ public class SpringJUnit4ConcurrencyTests { // @formatter:off private final Class<?>[] testClasses = new Class[] { // Basics SpringJUnit4ClassRunnerAppCtxTests.class, InheritedConfigSpringJUnit4ClassRunnerAppCtxTests.class, SpringJUnit47ClassRunnerRuleTests.class, BaseAppCtxRuleTests.class, // Transactional MethodLevelTransactionalSpringRunnerTests.class, TimedTransactionalSpringRunnerTests.class, // Web and Scopes DispatcherWacRootWacEarTests.class, BasicAnnotationConfigWacSpringRuleTests.class, RequestAndSessionScopedBeansWacTests.class, WebSocketServletServerContainerFactoryBeanTests.class, // Spring MVC Test JavaConfigTests.class, WebAppResourceTests.class, SampleTests.class }; // @formatter:on @BeforeClass public static void abortIfLongRunningTestGroupIsNotEnabled() { Assume.group(TestGroup.LONG_RUNNING); } @Test public void runAllTestsConcurrently() throws Exception { final int FAILED = 0; final int ABORTED = 0; final int IGNORED = countAnnotatedMethods(Ignore.class); final int TESTS = countAnnotatedMethods(Test.class) - IGNORED; runTestsAndAssertCounters(new ParallelComputer(true, true), TESTS, FAILED, TESTS, IGNORED, ABORTED, this.testClasses); } private int countAnnotatedMethods(Class<? extends Annotation> annotationType) { return (int) Arrays.stream(this.testClasses) .map(ReflectionUtils::getUniqueDeclaredMethods) .flatMap(Arrays::stream) .filter(method -> hasAnnotation(method, annotationType)) .count(); } }