mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a991379a74
Some tests are not fully rewritten in Go, a typescript wrapper is called instead until we remove the remaining TS tests and dependencies. Also, dockerize every components (mainly Authelia backend, frontend and kind) so that the project does not interfere with user host anymore (open ports for instance). The only remaining intrusive change is the one done during bootstrap to add entries in /etc/hosts. It will soon be avoided using authelia.com domain that I own.
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
package suites
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
var networkACLSuiteName = "NetworkACL"
|
|
|
|
func init() {
|
|
dockerEnvironment := NewDockerEnvironment([]string{
|
|
"docker-compose.yml",
|
|
"example/compose/authelia/docker-compose.backend.yml",
|
|
"example/compose/authelia/docker-compose.frontend.yml",
|
|
"example/compose/nginx/backend/docker-compose.yml",
|
|
"example/compose/nginx/portal/docker-compose.yml",
|
|
"example/compose/squid/docker-compose.yml",
|
|
"example/compose/smtp/docker-compose.yml",
|
|
// To debug headers
|
|
"example/compose/httpbin/docker-compose.yml",
|
|
})
|
|
|
|
setup := func(suitePath string) error {
|
|
if err := dockerEnvironment.Up(suitePath); err != nil {
|
|
return err
|
|
}
|
|
|
|
return waitUntilAutheliaIsReady(dockerEnvironment)
|
|
}
|
|
|
|
teardown := func(suitePath string) error {
|
|
return dockerEnvironment.Down(suitePath)
|
|
}
|
|
|
|
GlobalRegistry.Register(networkACLSuiteName, Suite{
|
|
SetUp: setup,
|
|
SetUpTimeout: 5 * time.Minute,
|
|
TestTimeout: 1 * time.Minute,
|
|
TearDown: teardown,
|
|
TearDownTimeout: 2 * time.Minute,
|
|
Description: `This suite has been created to test Authelia with basic feature in a non highly-available setup.
|
|
Authelia basically use an in-memory cache to store user sessions and persist data on disk instead
|
|
of using a remote database. Also, the user accounts are stored in file-based database.`,
|
|
})
|
|
}
|