2019-11-02 14:32:58 +00:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
2019-11-30 16:49:52 +00:00
|
|
|
"fmt"
|
2020-05-08 01:01:57 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2019-11-02 14:32:58 +00:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var standaloneSuiteName = "Standalone"
|
|
|
|
|
|
|
|
func init() {
|
2020-05-08 01:01:57 +00:00
|
|
|
_ = os.MkdirAll("/tmp/authelia/StandaloneSuite/", 0700)
|
|
|
|
_ = ioutil.WriteFile("/tmp/authelia/StandaloneSuite/jwt", []byte("very_important_secret"), 0600) //nolint:gosec
|
|
|
|
_ = ioutil.WriteFile("/tmp/authelia/StandaloneSuite/session", []byte("unsecure_session_secret"), 0600) //nolint:gosec
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
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/Standalone/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",
|
2020-04-13 23:57:28 +00:00
|
|
|
"internal/suites/example/compose/nginx/portal/docker-compose.yml",
|
2020-02-09 17:04:28 +00:00
|
|
|
"internal/suites/example/compose/smtp/docker-compose.yml",
|
2019-11-02 14:32:58 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
setup := func(suitePath string) error {
|
2020-11-27 09:59:22 +00:00
|
|
|
if err := dockerEnvironment.Up(); err != nil {
|
2019-11-02 14:32:58 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-11-27 09:59:22 +00:00
|
|
|
return waitUntilAutheliaIsReady(dockerEnvironment, standaloneSuiteName)
|
2019-11-30 16:49:52 +00:00
|
|
|
}
|
|
|
|
|
2020-03-03 07:18: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
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
fmt.Println(backendLogs)
|
|
|
|
|
|
|
|
frontendLogs, err := dockerEnvironment.Logs("authelia-frontend", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
fmt.Println(frontendLogs)
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2019-11-30 16:49:52 +00:00
|
|
|
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()
|
2020-07-16 05:56:08 +00:00
|
|
|
_ = os.Remove("/tmp/db.sqlite3")
|
|
|
|
|
2019-11-02 14:32:58 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
GlobalRegistry.Register(standaloneSuiteName, Suite{
|
|
|
|
SetUp: setup,
|
|
|
|
SetUpTimeout: 5 * time.Minute,
|
2020-03-03 07:18:25 +00:00
|
|
|
OnError: displayAutheliaLogs,
|
|
|
|
OnSetupTimeout: displayAutheliaLogs,
|
2019-11-02 14:32:58 +00:00
|
|
|
TearDown: teardown,
|
2019-12-07 16:40:42 +00:00
|
|
|
TestTimeout: 3 * time.Minute,
|
2019-11-30 16:49:52 +00:00
|
|
|
TearDownTimeout: 2 * time.Minute,
|
2019-11-16 10:38:21 +00:00
|
|
|
Description: `This suite is used to test Authelia in a standalone
|
|
|
|
configuration with in-memory sessions and a local sqlite db stored on disk`,
|
2019-11-02 14:32:58 +00:00
|
|
|
})
|
|
|
|
}
|