1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
package suites
import (
"time"
)
var highAvailabilitySuiteName = "HighAvailability"
var haDockerEnvironment = NewDockerEnvironment([]string{
"internal/suites/compose.yml",
"internal/suites/HighAvailability/compose.yml",
"internal/suites/example/compose/authelia/compose.backend.{}.yml",
"internal/suites/example/compose/authelia/compose.frontend.{}.yml",
"internal/suites/example/compose/mariadb/compose.yml",
"internal/suites/example/compose/redis-sentinel/compose.yml",
"internal/suites/example/compose/nginx/backend/compose.yml",
"internal/suites/example/compose/nginx/portal/compose.yml",
"internal/suites/example/compose/smtp/compose.yml",
"internal/suites/example/compose/httpbin/compose.yml",
"internal/suites/example/compose/ldap/compose.admin.yml", // This is just used for administration, not for testing.
"internal/suites/example/compose/ldap/compose.yml",
})
func init() {
setup := func(suitePath string) (err error) {
if err = haDockerEnvironment.Up(); err != nil {
return err
}
if err = waitUntilAutheliaIsReady(haDockerEnvironment, highAvailabilitySuiteName); err != nil {
return err
}
return updateDevEnvFileForDomain(BaseDomain, true)
}
displayAutheliaLogs := func() error {
return haDockerEnvironment.PrintLogs("authelia-backend", "authelia-frontend")
}
teardown := func(suitePath string) error {
return haDockerEnvironment.Down()
}
GlobalRegistry.Register(highAvailabilitySuiteName, Suite{
SetUp: setup,
SetUpTimeout: 5 * time.Minute,
OnSetupTimeout: displayAutheliaLogs,
TestTimeout: 6 * time.Minute,
TearDown: teardown,
TearDownTimeout: 2 * time.Minute,
OnError: displayAutheliaLogs,
Description: `This suite is made to test Authelia in a *complete*
environment, that is, with all components making Authelia highly available.`,
})
}
|