mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
72a3f1e0d7
When no rule is set to two_factor in ACL configuration, 2FA is considered disabled. Therefore, when a user cannot be redirected correctly because no target URL is provided or the URL is unsafe, the user is either redirected to the default URL or to the 'already authenticated' view instead of the second factor view. Fixes #683
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
package suites
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
var oneFactorOnlySuiteName = "OneFactorOnly"
|
|
|
|
func init() {
|
|
dockerEnvironment := NewDockerEnvironment([]string{
|
|
"internal/suites/docker-compose.yml",
|
|
"internal/suites/OneFactorOnly/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",
|
|
})
|
|
|
|
setup := func(suitePath string) error {
|
|
if err := dockerEnvironment.Up(); 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 {
|
|
return dockerEnvironment.Down()
|
|
}
|
|
|
|
GlobalRegistry.Register(oneFactorOnlySuiteName, Suite{
|
|
SetUp: setup,
|
|
SetUpTimeout: 5 * time.Minute,
|
|
OnSetupTimeout: onSetupTimeout,
|
|
TestTimeout: 1 * time.Minute,
|
|
TearDown: teardown,
|
|
TearDownTimeout: 2 * time.Minute,
|
|
Description: "This suite has been created to test Authelia in a one-factor only configuration",
|
|
})
|
|
}
|