mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
74721a9f41
* feat: go:embed static assets Go 1.16 introduced the ability to embed files within a generated binary directly with the go tool chain. This simplifies our dependencies and the significantly improves the development workflow for future developers. Key points to note: Due to the inability to embed files that do not reside within the local package we need to duplicate our `config.template.yml` within `internal/configuration`. To avoid issues with the development workflow empty mock files have been included within `internal/server/public_html`. These are substituted with the respective generated files during the CI/CD and build workflows. * fix(suites): increase ldap suite test timeout * fix(server): fix swagger asset CSP
64 lines
1.6 KiB
Go
64 lines
1.6 KiB
Go
package suites
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
var ldapSuiteName = "LDAP"
|
|
|
|
func init() {
|
|
dockerEnvironment := NewDockerEnvironment([]string{
|
|
"internal/suites/docker-compose.yml",
|
|
"internal/suites/LDAP/docker-compose.yml",
|
|
"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",
|
|
})
|
|
|
|
setup := func(suitePath string) error {
|
|
if err := dockerEnvironment.Up(); err != nil {
|
|
return err
|
|
}
|
|
|
|
return waitUntilAutheliaIsReady(dockerEnvironment, ldapSuiteName)
|
|
}
|
|
|
|
displayAutheliaLogs := func() error {
|
|
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
|
|
}
|
|
|
|
teardown := func(suitePath string) error {
|
|
err := dockerEnvironment.Down()
|
|
return err
|
|
}
|
|
|
|
GlobalRegistry.Register(ldapSuiteName, Suite{
|
|
SetUp: setup,
|
|
SetUpTimeout: 5 * time.Minute,
|
|
OnSetupTimeout: displayAutheliaLogs,
|
|
TestTimeout: 120 * time.Second,
|
|
TearDown: teardown,
|
|
TearDownTimeout: 2 * time.Minute,
|
|
OnError: displayAutheliaLogs,
|
|
})
|
|
}
|