Groovy / Maven

Testing Micronaut Security

Learn how to test your application's behavior when a user with specific roles is authenticated

Sergio del Amo
On this guide
In this section

Getting Started

In this guide, you will learn how to test your application’s behavior when a user with specific roles is authenticated.

What you will need

To complete this guide, you will need the following:

Solution

We recommend that you follow the instructions in the next sections and create the application step by step. However, you can go right to the completed example.

Writing the Application

Create an application using the Micronaut Command Line Interface or with Micronaut Launch.

mn create-app example.micronaut.micronautguide \
    --features=security \
    --build=maven \
    --lang=groovy \
    --test=spock
Note
If you don’t specify the --build argument, Gradle with the Kotlin DSL is used as the build tool.
If you don’t specify the --lang argument, Java is used as the language.
If you don’t specify the --test argument, JUnit is used for Java and Kotlin, and Spock is used for Groovy.

The previous command creates a Micronaut application with the default package example.micronaut in a directory named micronautguide.

If you use Micronaut Launch, select Micronaut Application as application type and add security features.

Note
If you have an existing Micronaut application and want to add the functionality described here, you can view the dependency and configuration changes from the specified features, and apply those changes to your application.

Controller

Given a controller that returns a different output depending on whether the user has a certain role or not:

groovy/src/main/groovy/example/micronaut/PlanController.groovy

Tests

Test authentication required

You can write tests to verify the behavior of the controller.

The following test verifies that authentication is required to access the endpoint:

groovy/src/test/groovy/example/micronaut/PlanControllerRequiresAuthenticationSpec.groovy

Test behavior with an authenticated user without roles

The following test verifies how the controller behaves when the authenticated user lacks the ROLE_EVIL_MASTERMIND role:

groovy/src/test/groovy/example/micronaut/PlanControllerAuthenticatedSpec.groovy

Test behavior with an authenticated user with a role

The following test verifies how the controller behaves when the authenticated user has the ROLE_EVIL_MASTERMIND role:

groovy/src/test/groovy/example/micronaut/PlanControllerAuthenticatedWithRolesSpec.groovy

Testing the Application

To run the tests:

./mvnw test

Next Steps

See the Micronaut security documentation to learn more.

Help with the Micronaut Framework

The Micronaut Foundation sponsored the creation of this Guide. A variety of consulting and support services are available.

License

Note
All guides are released with an Apache License 2.0 for the code and a Creative Commons Attribution 4.0 license for the writing and media (images).