2019-11-02 14:32:58 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
2019-11-30 16:49:52 +00:00
|
|
|
"fmt"
|
2019-11-02 14:32:58 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var highAvailabilitySuiteName = "HighAvailability"
|
|
|
|
|
2019-11-24 20:27:59 +00:00
|
|
|
var haDockerEnvironment = NewDockerEnvironment([]string{
|
2020-02-09 17:04:28 +00:00
|
|
|
"internal/suites/docker-compose.yml",
|
2019-11-24 20:27:59 +00:00
|
|
|
"internal/suites/HighAvailability/docker-compose.yml",
|
2020-02-09 17:04:28 +00:00
|
|
|
"internal/suites/example/compose/authelia/docker-compose.backend.{}.yml",
|
|
|
|
"internal/suites/example/compose/authelia/docker-compose.frontend.{}.yml",
|
|
|
|
"internal/suites/example/compose/mariadb/docker-compose.yml",
|
|
|
|
"internal/suites/example/compose/redis/docker-compose.yml",
|
|
|
|
"internal/suites/example/compose/nginx/backend/docker-compose.yml",
|
|
|
|
"internal/suites/example/compose/nginx/portal/docker-compose.yml",
|
|
|
|
"internal/suites/example/compose/smtp/docker-compose.yml",
|
|
|
|
"internal/suites/example/compose/httpbin/docker-compose.yml",
|
|
|
|
"internal/suites/example/compose/ldap/docker-compose.admin.yml", // This is just used for administration, not for testing.
|
|
|
|
"internal/suites/example/compose/ldap/docker-compose.yml",
|
2019-11-24 20:27:59 +00:00
|
|
|
})
|
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
|
|
|
|
}
|
|
|
|
|
2020-01-17 19:46:51 +00:00
|
|
|
return waitUntilAutheliaBackendIsReady(haDockerEnvironment)
|
2019-11-30 16:49:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onSetupTimeout := func() error {
|
|
|
|
backendLogs, err := haDockerEnvironment.Logs("authelia-backend", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println(backendLogs)
|
|
|
|
|
|
|
|
frontendLogs, err := haDockerEnvironment.Logs("authelia-frontend", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println(frontendLogs)
|
|
|
|
return nil
|
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,
|
2019-11-30 16:49:52 +00:00
|
|
|
OnSetupTimeout: onSetupTimeout,
|
|
|
|
TestTimeout: 5 * time.Minute,
|
2019-11-02 14:32:58 +00:00
|
|
|
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.`,
|
|
|
|
})
|
|
|
|
}
|