mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
3d20142292
Providing a GA tracking ID allows administrators to analyze how the portal is used by their users in large environments, i.e., with many users. This will make even more sense when we have users and admins management interfaces.
62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
package suites
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
var standaloneSuiteName = "Standalone"
|
|
|
|
func init() {
|
|
dockerEnvironment := NewDockerEnvironment([]string{
|
|
"docker-compose.yml",
|
|
"internal/suites/Standalone/docker-compose.yml",
|
|
"example/compose/authelia/docker-compose.backend.yml",
|
|
"example/compose/authelia/docker-compose.frontend.yml",
|
|
"example/compose/nginx/backend/docker-compose.yml",
|
|
"example/compose/nginx/portal/docker-compose.yml",
|
|
"example/compose/smtp/docker-compose.yml",
|
|
})
|
|
|
|
setup := func(suitePath string) error {
|
|
err := dockerEnvironment.Up()
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return waitUntilAutheliaBackendIsReady(dockerEnvironment)
|
|
}
|
|
|
|
onSetupTimeout := 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(standaloneSuiteName, Suite{
|
|
SetUp: setup,
|
|
SetUpTimeout: 5 * time.Minute,
|
|
OnSetupTimeout: onSetupTimeout,
|
|
TearDown: teardown,
|
|
TestTimeout: 3 * time.Minute,
|
|
TearDownTimeout: 2 * time.Minute,
|
|
Description: `This suite is used to test Authelia in a standalone
|
|
configuration with in-memory sessions and a local sqlite db stored on disk`,
|
|
})
|
|
}
|