JavaLessons/springboot2-junit5-skiptest
bvn13 d20d62698d SpringBoot2 - JUnit5 - skip test - next improvement 2019-08-24 17:12:13 +03:00
..
.mvn/wrapper SpringBoot2 - JUnit5 - skip test 2019-07-28 22:28:53 +03:00
img SpringBoot2 - JUnit5 - skip test 2019-07-28 22:28:53 +03:00
src SpringBoot2 - JUnit5 - skip test - next improvement 2019-08-24 17:12:13 +03:00
.gitignore girignore 2019-07-30 12:22:43 +03:00
README.md SpringBoot2 - JUnit5 - skip test - next improvement 2019-08-24 17:12:13 +03:00
mvnw SpringBoot2 - JUnit5 - skip test 2019-07-28 22:28:53 +03:00
mvnw.cmd SpringBoot2 - JUnit5 - skip test 2019-07-28 22:28:53 +03:00
pom.xml SpringBoot2 - JUnit5 - skip test 2019-07-28 22:28:53 +03:00

README.md

SpringBoot JUnit5 SkipTest

  • SpringBoot 2
  • JUnit 5

Prerequisites

Imagine the situation that your project must be built on several environments.

Imagine that all tests you've implemented must not be run on each environment.

And you prefer to select which of them should be run by setting it up with... application.properties file with concrete property per test.

Looks like delicious, doesn't it?

Settings

First of all let's disable JUnit 4 supplied in SpringBoot2 by default and enable JUnit 5.

Changes in pom.xml are:

<dependencies>
    <!--...-->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
        <version>5.3.2</version>
        <scope>test</scope>
    </dependency>
    <!--...-->
</dependencies>

Solution

We'd like to annotate each test with simple annotation and point on application property to check if it is true to start the test.

Annotation

Here is our annotation:

@Retention(RetentionPolicy.RUNTIME)
@ExtendWith(TestEnabledCondition.class)
public @interface TestEnabled {
    String property();
}

Annotation processor

But this annotation is nothing without its processor.

public class TestEnabledCondition implements ExecutionCondition {

    @Override
    public ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext context) {
        Optional<TestEnabled> annotation = context.getElement().map(e -> e.getAnnotation(TestEnabled.class));

        return context.getElement()
                        .map(e -> e.getAnnotation(TestEnabled.class))
                        .map(annotation -> {
                            String property = annotation.property();
        
                            return Optional.ofNullable(environment.getProperty(property, Boolean.class))
                                    .map(value -> {
                                        if (Boolean.TRUE.equals(value)) {
                                            return ConditionEvaluationResult.enabled("Enabled by property: "+property);
                                        } else {
                                            return ConditionEvaluationResult.disabled("Disabled by property: "+property);
                                        }
                                    }).orElse(
                                            ConditionEvaluationResult.disabled("Disabled - property <"+property+"> not set!")
                                    );
                        }).orElse(
                                ConditionEvaluationResult.enabled("Enabled by default")
                        );
    }
}

You must create a class (without Spring @Component annotation) which implements ExecutionCondition interface.

Then you must implement one method of this interface - ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext context).

This method takes JUnit test's execution context and returns the condition - should the test be started or not. Simply, right?

You can read more about Conditional test execution with JUnit5 in official documentation as well.

But how to check application property in this context?

Obtaining the access to SpringBoot context from JUnit context

Here is the snippet to obtain Spring environment right from the ExtensionContext of JUnit:

Environment environment = SpringExtension.getApplicationContext(context).getEnvironment();

Take a look at full class code of TestEnabledCondition

Make some tests

It's showtime!

Let's create our tests and manage them starts:

@SpringBootTest
public class SkiptestApplicationTests {

    @TestEnabled(property = "app.skip.test.first")
    @Test
    public void testFirst() {
        assertTrue(true);
    }

    @TestEnabled(property = "app.skip.test.second")
    @Test
    public void testSecond() {
        assertTrue(false);
    }

}

Our application.propertis file is look like:

app.skip.test.first=true
app.skip.test.second=false

So...

The result:

Next step - generalizing properties' names

It is so annoyingly to write the full path to our application properties in every test.

So the next step is to generalify that path in test class annotation.

Let's create a new annotation called TestEnabledPrefix:

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface TestEnabledPrefix {
    String prefix();
}

TestEnabledPrefix annotation usage

There is no way avoiding new annotation processing:

Let's create Annotation Descriptor as follows

public class TestEnabledCondition implements ExecutionCondition {

    static class AnnotationDescription {
            String name;
            Boolean annotationEnabled;
            AnnotationDescription(String prefix, String property) {
                this.name = prefix + property;
            }
            String getName() {
                return name;
            }
            AnnotationDescription setAnnotationEnabled(Boolean value) {
                this.annotationEnabled = value;
                return this;
            }
            Boolean isAnnotationEnabled() {
                return annotationEnabled;
            }
        }

    /* ... */
}

It helps us to process annotations using lambdas.

Then create a method to extract prefix from context

public class TestEnabledCondition implements ExecutionCondition {

    /* ... */

    private AnnotationDescription makeDescription(ExtensionContext context, String property) {
        String prefix = context.getTestClass()
                .map(cl -> cl.getAnnotation(TestEnabledPrefix.class))
                .map(TestEnabledPrefix::prefix)
                .map(pref -> !pref.isEmpty() && !pref.endsWith(".") ? pref + "." : "")
                .orElse("");
        return new AnnotationDescription(prefix, property);
    }

    /* ... */

}

And now process the annotation value

public class TestEnabledCondition implements ExecutionCondition {

    /* ... */

    @Override
    public ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext context) {
        Environment environment = SpringExtension.getApplicationContext(context).getEnvironment();

        return context.getElement()
                .map(e -> e.getAnnotation(TestEnabled.class))
                .map(TestEnabled::property)
                .map(property -> makeDescription(context, property))
                .map(description -> description.setAnnotationEnabled(environment.getProperty(description.getName(), Boolean.class)))
                .map(description -> {
                    if (description.isAnnotationEnabled()) {
                        return ConditionEvaluationResult.enabled("Enabled by property: "+description.getName());
                    } else {
                        return ConditionEvaluationResult.disabled("Disabled by property: "+description.getName());
                    }
                }).orElse(
                        ConditionEvaluationResult.enabled("Enabled by default")
                );

    }

}

You can take a look at full class code folowing to link.

New annotation usage

And now we'll apply new annotation to our test class:

@SpringBootTest
@TestEnabledPrefix(property = "app.skip.test")
public class SkiptestApplicationTests {

    @TestEnabled(property = "first")
    @Test
    public void testFirst() {
        assertTrue(true);
    }

    @TestEnabled(property = "second")
    @Test
    public void testSecond() {
        assertTrue(false);
    }

}

Much more clear and obvious code.

Thanks to...

  1. Reddit user dpash for advice
  2. Reddit user BoyRobot777 for advice