mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
de2c5836fd
* [Buildkite] Introduce CI linting with golangci-lint and reviewdog * Initial pass of golangci-lint * Add gosimple (megacheck) recommendations * Add golint recommendations * [BUGFIX] Migrate authentication traces from v3 mongodb * Add deadcode recommendations * [BUGFIX] Fix ShortTimeouts suite when run in dev workflow * Add unused recommendations * Add unparam recommendations * Disable linting on unfixable errors instead of skipping files * Adjust nolint notation for unparam * Fix ineffectual assignment to err raised by linter. * Export environment variable in agent hook * Add ineffassign recommendations * Add staticcheck recommendations * Add gocyclo recommendations * Adjust ineffassign recommendations Co-authored-by: Clement Michaud <clement.michaud34@gmail.com>
36 lines
1011 B
Go
36 lines
1011 B
Go
package validator
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
)
|
|
|
|
func TestShouldSetDefaultTOTPValues(t *testing.T) {
|
|
validator := schema.NewStructValidator()
|
|
config := schema.TOTPConfiguration{}
|
|
|
|
ValidateTOTP(&config, validator)
|
|
|
|
require.Len(t, validator.Errors(), 0)
|
|
assert.Equal(t, "Authelia", config.Issuer)
|
|
assert.Equal(t, *schema.DefaultTOTPConfiguration.Skew, *config.Skew)
|
|
assert.Equal(t, schema.DefaultTOTPConfiguration.Period, config.Period)
|
|
}
|
|
|
|
func TestShouldRaiseErrorWhenInvalidTOTPMinimumValues(t *testing.T) {
|
|
var badSkew = -1
|
|
validator := schema.NewStructValidator()
|
|
config := schema.TOTPConfiguration{
|
|
Period: -5,
|
|
Skew: &badSkew,
|
|
}
|
|
ValidateTOTP(&config, validator)
|
|
assert.Len(t, validator.Errors(), 2)
|
|
assert.EqualError(t, validator.Errors()[0], "TOTP Period must be 1 or more")
|
|
assert.EqualError(t, validator.Errors()[1], "TOTP Skew must be 0 or more")
|
|
}
|