mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
29e54c231b
* [MISC] Template global config and refactor some /api endpoints * /api/configuration has been removed in favour of templating said global config * /api/configuration/extended has been renamed to /api/configuration and display_name has been removed * /api/user/info has been modified to include display_name Co-authored-by: Clement Michaud <clement.michaud34@gmail.com>
160 lines
4.3 KiB
Go
160 lines
4.3 KiB
Go
package handlers
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/authelia/authelia/internal/authorization"
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
"github.com/authelia/authelia/internal/mocks"
|
|
)
|
|
|
|
type SecondFactorAvailableMethodsFixture struct {
|
|
suite.Suite
|
|
mock *mocks.MockAutheliaCtx
|
|
}
|
|
|
|
func (s *SecondFactorAvailableMethodsFixture) SetupTest() {
|
|
s.mock = mocks.NewMockAutheliaCtx(s.T())
|
|
s.mock.Ctx.Providers.Authorizer = authorization.NewAuthorizer(schema.AccessControlConfiguration{
|
|
DefaultPolicy: "deny",
|
|
Rules: []schema.ACLRule{},
|
|
})
|
|
}
|
|
|
|
func (s *SecondFactorAvailableMethodsFixture) TearDownTest() {
|
|
s.mock.Close()
|
|
}
|
|
|
|
func (s *SecondFactorAvailableMethodsFixture) TestShouldServeDefaultMethods() {
|
|
s.mock.Ctx.Configuration = schema.Configuration{
|
|
TOTP: &schema.TOTPConfiguration{
|
|
Period: schema.DefaultTOTPConfiguration.Period,
|
|
},
|
|
}
|
|
expectedBody := ConfigurationBody{
|
|
AvailableMethods: []string{"totp", "u2f"},
|
|
SecondFactorEnabled: false,
|
|
TOTPPeriod: schema.DefaultTOTPConfiguration.Period,
|
|
}
|
|
|
|
ConfigurationGet(s.mock.Ctx)
|
|
s.mock.Assert200OK(s.T(), expectedBody)
|
|
}
|
|
|
|
func (s *SecondFactorAvailableMethodsFixture) TestShouldServeDefaultMethodsAndMobilePush() {
|
|
s.mock.Ctx.Configuration = schema.Configuration{
|
|
DuoAPI: &schema.DuoAPIConfiguration{},
|
|
TOTP: &schema.TOTPConfiguration{
|
|
Period: schema.DefaultTOTPConfiguration.Period,
|
|
},
|
|
}
|
|
expectedBody := ConfigurationBody{
|
|
AvailableMethods: []string{"totp", "u2f", "mobile_push"},
|
|
SecondFactorEnabled: false,
|
|
TOTPPeriod: schema.DefaultTOTPConfiguration.Period,
|
|
}
|
|
|
|
ConfigurationGet(s.mock.Ctx)
|
|
s.mock.Assert200OK(s.T(), expectedBody)
|
|
}
|
|
|
|
func (s *SecondFactorAvailableMethodsFixture) TestShouldCheckSecondFactorIsDisabledWhenNoRuleIsSetToTwoFactor() {
|
|
s.mock.Ctx.Configuration = schema.Configuration{
|
|
TOTP: &schema.TOTPConfiguration{
|
|
Period: schema.DefaultTOTPConfiguration.Period,
|
|
},
|
|
}
|
|
s.mock.Ctx.Providers.Authorizer = authorization.NewAuthorizer(schema.AccessControlConfiguration{
|
|
DefaultPolicy: "bypass",
|
|
Rules: []schema.ACLRule{
|
|
{
|
|
Domains: []string{"example.com"},
|
|
Policy: "deny",
|
|
},
|
|
{
|
|
Domains: []string{"abc.example.com"},
|
|
Policy: "single_factor",
|
|
},
|
|
{
|
|
Domains: []string{"def.example.com"},
|
|
Policy: "bypass",
|
|
},
|
|
},
|
|
})
|
|
ConfigurationGet(s.mock.Ctx)
|
|
s.mock.Assert200OK(s.T(), ConfigurationBody{
|
|
AvailableMethods: []string{"totp", "u2f"},
|
|
SecondFactorEnabled: false,
|
|
TOTPPeriod: schema.DefaultTOTPConfiguration.Period,
|
|
})
|
|
}
|
|
|
|
func (s *SecondFactorAvailableMethodsFixture) TestShouldCheckSecondFactorIsEnabledWhenDefaultPolicySetToTwoFactor() {
|
|
s.mock.Ctx.Configuration = schema.Configuration{
|
|
TOTP: &schema.TOTPConfiguration{
|
|
Period: schema.DefaultTOTPConfiguration.Period,
|
|
},
|
|
}
|
|
s.mock.Ctx.Providers.Authorizer = authorization.NewAuthorizer(schema.AccessControlConfiguration{
|
|
DefaultPolicy: "two_factor",
|
|
Rules: []schema.ACLRule{
|
|
{
|
|
Domains: []string{"example.com"},
|
|
Policy: "deny",
|
|
},
|
|
{
|
|
Domains: []string{"abc.example.com"},
|
|
Policy: "single_factor",
|
|
},
|
|
{
|
|
Domains: []string{"def.example.com"},
|
|
Policy: "bypass",
|
|
},
|
|
},
|
|
})
|
|
ConfigurationGet(s.mock.Ctx)
|
|
s.mock.Assert200OK(s.T(), ConfigurationBody{
|
|
AvailableMethods: []string{"totp", "u2f"},
|
|
SecondFactorEnabled: true,
|
|
TOTPPeriod: schema.DefaultTOTPConfiguration.Period,
|
|
})
|
|
}
|
|
|
|
func (s *SecondFactorAvailableMethodsFixture) TestShouldCheckSecondFactorIsEnabledWhenSomePolicySetToTwoFactor() {
|
|
s.mock.Ctx.Configuration = schema.Configuration{
|
|
TOTP: &schema.TOTPConfiguration{
|
|
Period: schema.DefaultTOTPConfiguration.Period,
|
|
},
|
|
}
|
|
s.mock.Ctx.Providers.Authorizer = authorization.NewAuthorizer(schema.AccessControlConfiguration{
|
|
DefaultPolicy: "bypass",
|
|
Rules: []schema.ACLRule{
|
|
{
|
|
Domains: []string{"example.com"},
|
|
Policy: "deny",
|
|
},
|
|
{
|
|
Domains: []string{"abc.example.com"},
|
|
Policy: "two_factor",
|
|
},
|
|
{
|
|
Domains: []string{"def.example.com"},
|
|
Policy: "bypass",
|
|
},
|
|
},
|
|
})
|
|
ConfigurationGet(s.mock.Ctx)
|
|
s.mock.Assert200OK(s.T(), ConfigurationBody{
|
|
AvailableMethods: []string{"totp", "u2f"},
|
|
SecondFactorEnabled: true,
|
|
TOTPPeriod: schema.DefaultTOTPConfiguration.Period,
|
|
})
|
|
}
|
|
|
|
func TestRunSuite(t *testing.T) {
|
|
s := new(SecondFactorAvailableMethodsFixture)
|
|
suite.Run(t, s)
|
|
}
|