Integration Suites
Important Note
The following document assumes you’ve completed all the prerequisites and have bootstrapped the Authelia Development Context.
Authelia is a single component in interaction with many others in a complete ecosystem. Consequently, testing the features is not as easy as we might think. In order to solve this problem, Authelia came up with the concept of suite which is a kind of virtual environment for Authelia and a set of tests. A suite can setup components such as NGINX, Redis or MariaDB in which Authelia can run and be tested.
This abstraction allows to prepare an environment for manual testing during development and also to craft and run integration tests efficiently.
Start a suite
Starting a suite called Standalone is done with the following command:
authelia-scripts suites setup Standalone
This command deploys the environment of the suite.
Accessing the Suite
The development suite has a standardized setup which makes it easy to interact with.
IP Addresses
- Backend: 192.168.240.50
- Frontend: 192.168.240.100
The backend is the Authelia binary running in a docker container, the frontend is the webserver which hosts all of the web frontends for each application.
Sites and Applications
All sites are hosted on the address 192.168.240.100:8080
. This list is not comprehensive and may change over time.
You can see a full list of the configured host entries by looking at
bootstrap.go. For an idea
of the applications setup in a suite take a look at the dockerEnvironment
var for the given suite. The file that
contains the dockerEnvironment
var for a given suite is located in the
internal/suites directory and has the name format
suite_<name>.go
and does not end with _test.go
. For example here is
suite_standalone.go.
- Authelia: https://login.example.com:8080
- Mailpit: https://mail.example.com:8080
- OpenID Connect 1.0 Testing Apps:
- Duo: https://duo.exmaple.com:8080
- Kubernetes Dashboard: https://kubernetes.exmaple.com:8080
- Traefik Dashboard: https://traefik.exmaple.com:8080
- HAProxy: https://haproxy.exmaple.com:8080
- Simple Test Applications:
Remote Debugging
The Authelia Suites run via delve and can be remotely debugged. You can connect to the debugger on the address
192.168.240.50:2345
.
Example connect command:
dlv connect 192.168.240.50:2345
Run tests of a suite
Run tests of running suite
If a suite is already running, you can simply type the test command that will run the test related to the currently running suite:
authelia-scripts suites test
Run tests in headless mode
As you might have noticed, the tests are run using chromedriver and selenium. It means that the tests open an instance of Chrome that might interfere with your other activities. In order to run the tests in headless mode to avoid the interference, use the following command:
authelia-scripts suites test --headless
Run tests of non-running suite
However, if no suite is running yet and you just want to run the tests of a specific suite like HighAvailability, you can do so with the next command:
authelia-scripts suites test HighAvailability
Create a new suite
Creating a suite is as easy. Let’s take the example of the Standalone suite:
- internal/suites/suite_standalone.go - It defines the setup and teardown phases. It likely uses docker compose to setup the ecosystem. This file also defines the timeouts.
- internal/suites/suite_standalone_test.go
- It defines the set of tests to run against the suite.
- internal/suites/Standalone directory - It contains resources required by the suite and likely mounted in the containers.
A suite can also be much more complex like setting up a complete Kubernetes ecosystem. You can check the Kubernetes suite as example.