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 ldapSuiteName = "LDAP"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
dockerEnvironment := 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/LDAP/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/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/ldap/docker-compose.yml",
|
|
|
|
"internal/suites/example/compose/ldap/docker-compose.admin.yml",
|
2019-11-02 14:32:58 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
setup := func(suitePath string) error {
|
2019-11-24 20:27:59 +00:00
|
|
|
err := dockerEnvironment.Up()
|
2019-11-02 14:32:58 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-01-17 19:46:51 +00:00
|
|
|
return waitUntilAutheliaBackendIsReady(dockerEnvironment)
|
2019-11-30 16:49:52 +00:00
|
|
|
}
|
|
|
|
|
2020-03-15 07:10:25 +00:00
|
|
|
displayAutheliaLogs := func() error {
|
2019-11-30 16:49:52 +00:00
|
|
|
backendLogs, err := dockerEnvironment.Logs("authelia-backend", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println(backendLogs)
|
|
|
|
|
|
|
|
frontendLogs, err := dockerEnvironment.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
|
|
|
err := dockerEnvironment.Down()
|
2019-11-02 14:32:58 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
GlobalRegistry.Register(ldapSuiteName, Suite{
|
|
|
|
SetUp: setup,
|
|
|
|
SetUpTimeout: 5 * time.Minute,
|
2020-03-15 07:10:25 +00:00
|
|
|
OnSetupTimeout: displayAutheliaLogs,
|
2019-11-02 14:32:58 +00:00
|
|
|
TestTimeout: 1 * time.Minute,
|
|
|
|
TearDown: teardown,
|
|
|
|
TearDownTimeout: 2 * time.Minute,
|
2020-03-15 07:10:25 +00:00
|
|
|
OnError: displayAutheliaLogs,
|
2019-11-02 14:32:58 +00:00
|
|
|
})
|
|
|
|
}
|