2019-11-02 21:32:58 +07:00
|
|
|
package suites
|
|
|
|
|
|
|
|
import (
|
2019-11-30 23:49:52 +07:00
|
|
|
"fmt"
|
2020-05-08 08:01:57 +07:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2019-11-02 21:32:58 +07:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var standaloneSuiteName = "Standalone"
|
|
|
|
|
|
|
|
func init() {
|
2020-05-08 08:01:57 +07: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 21:32:58 +07:00
|
|
|
dockerEnvironment := NewDockerEnvironment([]string{
|
2020-02-10 00:04:28 +07:00
|
|
|
"internal/suites/docker-compose.yml",
|
2019-11-25 03:27:59 +07:00
|
|
|
"internal/suites/Standalone/docker-compose.yml",
|
2020-02-10 00:04:28 +07: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-14 06:57:28 +07:00
|
|
|
"internal/suites/example/compose/nginx/portal/docker-compose.yml",
|
2020-02-10 00:04:28 +07:00
|
|
|
"internal/suites/example/compose/smtp/docker-compose.yml",
|
2019-11-02 21:32:58 +07:00
|
|
|
})
|
|
|
|
|
|
|
|
setup := func(suitePath string) error {
|
2020-11-27 16:59:22 +07:00
|
|
|
if err := dockerEnvironment.Up(); err != nil {
|
2019-11-02 21:32:58 +07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-11-27 16:59:22 +07:00
|
|
|
return waitUntilAutheliaIsReady(dockerEnvironment, standaloneSuiteName)
|
2019-11-30 23:49:52 +07:00
|
|
|
}
|
|
|
|
|
2020-03-03 14:18:25 +07:00
|
|
|
displayAutheliaLogs := func() error {
|
2019-11-30 23:49:52 +07:00
|
|
|
backendLogs, err := dockerEnvironment.Logs("authelia-backend", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-05-06 02:35:32 +07:00
|
|
|
|
2019-11-30 23:49:52 +07:00
|
|
|
fmt.Println(backendLogs)
|
|
|
|
|
|
|
|
frontendLogs, err := dockerEnvironment.Logs("authelia-frontend", nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-05-06 02:35:32 +07:00
|
|
|
|
2019-11-30 23:49:52 +07:00
|
|
|
fmt.Println(frontendLogs)
|
2020-05-06 02:35:32 +07:00
|
|
|
|
2019-11-30 23:49:52 +07:00
|
|
|
return nil
|
2019-11-02 21:32:58 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
teardown := func(suitePath string) error {
|
2019-11-25 03:27:59 +07:00
|
|
|
err := dockerEnvironment.Down()
|
2020-07-16 12:56:08 +07:00
|
|
|
_ = os.Remove("/tmp/db.sqlite3")
|
|
|
|
|
2019-11-02 21:32:58 +07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
GlobalRegistry.Register(standaloneSuiteName, Suite{
|
|
|
|
SetUp: setup,
|
|
|
|
SetUpTimeout: 5 * time.Minute,
|
2020-03-03 14:18:25 +07:00
|
|
|
OnError: displayAutheliaLogs,
|
|
|
|
OnSetupTimeout: displayAutheliaLogs,
|
2019-11-02 21:32:58 +07:00
|
|
|
TearDown: teardown,
|
2019-12-07 23:40:42 +07:00
|
|
|
TestTimeout: 3 * time.Minute,
|
2019-11-30 23:49:52 +07:00
|
|
|
TearDownTimeout: 2 * time.Minute,
|
2019-11-16 17:38:21 +07: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 21:32:58 +07:00
|
|
|
})
|
|
|
|
}
|