2019-11-02 14:32:58 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var highAvailabilitySuiteName = "HighAvailability"
|
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
var haDockerEnvironment = NewDockerEnvironment([]string{
|
|
|
|
"docker-compose.yml",
|
|
|
|
"internal/suites/HighAvailability/docker-compose.yml",
|
|
|
|
"example/compose/authelia/docker-compose.backend.yml",
|
|
|
|
"example/compose/authelia/docker-compose.frontend.yml",
|
|
|
|
"example/compose/mariadb/docker-compose.yml",
|
|
|
|
"example/compose/redis/docker-compose.yml",
|
|
|
|
"example/compose/nginx/backend/docker-compose.yml",
|
|
|
|
"example/compose/nginx/portal/docker-compose.yml",
|
|
|
|
"example/compose/smtp/docker-compose.yml",
|
|
|
|
"example/compose/httpbin/docker-compose.yml",
|
|
|
|
"example/compose/ldap/docker-compose.admin.yml", // This is just used for administration, not for testing.
|
|
|
|
"example/compose/ldap/docker-compose.yml",
|
|
|
|
})
|
2019-11-02 14:32:58 +00:00
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
func init() {
|
2019-11-02 14:32:58 +00:00
|
|
|
setup := func(suitePath string) error {
|
2019-11-24 20:27:59 +00:00
|
|
|
if err := haDockerEnvironment.Up(); err != nil {
|
2019-11-02 14:32:58 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
return waitUntilAutheliaIsReady(haDockerEnvironment)
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
teardown := func(suitePath string) error {
|
2019-11-24 20:27:59 +00:00
|
|
|
return haDockerEnvironment.Down()
|
2019-11-02 14:32:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GlobalRegistry.Register(highAvailabilitySuiteName, Suite{
|
|
|
|
SetUp: setup,
|
|
|
|
SetUpTimeout: 5 * time.Minute,
|
|
|
|
TestTimeout: 1 * time.Minute,
|
|
|
|
TearDown: teardown,
|
|
|
|
TearDownTimeout: 2 * time.Minute,
|
|
|
|
Description: `This suite is made to test Authelia in a *complete*
|
|
|
|
environment, that is, with all components making Authelia highly available.`,
|
|
|
|
})
|
|
|
|
}
|