99 lines
3.5 KiB
Go
99 lines
3.5 KiB
Go
package validator
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/go-webauthn/webauthn/protocol"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
)
|
|
|
|
func TestWebAuthnShouldSetDefaultValues(t *testing.T) {
|
|
validator := schema.NewStructValidator()
|
|
config := &schema.Configuration{
|
|
WebAuthn: schema.WebAuthnConfiguration{},
|
|
}
|
|
|
|
ValidateWebAuthn(config, validator)
|
|
|
|
require.Len(t, validator.Errors(), 0)
|
|
assert.Equal(t, schema.DefaultWebAuthnConfiguration.DisplayName, config.WebAuthn.DisplayName)
|
|
assert.Equal(t, schema.DefaultWebAuthnConfiguration.Timeout, config.WebAuthn.Timeout)
|
|
assert.Equal(t, schema.DefaultWebAuthnConfiguration.ConveyancePreference, config.WebAuthn.ConveyancePreference)
|
|
assert.Equal(t, schema.DefaultWebAuthnConfiguration.UserVerification, config.WebAuthn.UserVerification)
|
|
}
|
|
|
|
func TestWebAuthnShouldSetDefaultTimeoutWhenNegative(t *testing.T) {
|
|
validator := schema.NewStructValidator()
|
|
config := &schema.Configuration{
|
|
WebAuthn: schema.WebAuthnConfiguration{
|
|
Timeout: -1,
|
|
},
|
|
}
|
|
|
|
ValidateWebAuthn(config, validator)
|
|
|
|
require.Len(t, validator.Errors(), 0)
|
|
assert.Equal(t, schema.DefaultWebAuthnConfiguration.Timeout, config.WebAuthn.Timeout)
|
|
}
|
|
|
|
func TestWebAuthnShouldNotSetDefaultValuesWhenConfigured(t *testing.T) {
|
|
validator := schema.NewStructValidator()
|
|
config := &schema.Configuration{
|
|
WebAuthn: schema.WebAuthnConfiguration{
|
|
DisplayName: "Test",
|
|
Timeout: time.Second * 50,
|
|
ConveyancePreference: protocol.PreferNoAttestation,
|
|
UserVerification: protocol.VerificationDiscouraged,
|
|
},
|
|
}
|
|
|
|
ValidateWebAuthn(config, validator)
|
|
|
|
require.Len(t, validator.Errors(), 0)
|
|
assert.Equal(t, "Test", config.WebAuthn.DisplayName)
|
|
assert.Equal(t, time.Second*50, config.WebAuthn.Timeout)
|
|
assert.Equal(t, protocol.PreferNoAttestation, config.WebAuthn.ConveyancePreference)
|
|
assert.Equal(t, protocol.VerificationDiscouraged, config.WebAuthn.UserVerification)
|
|
|
|
config.WebAuthn.ConveyancePreference = protocol.PreferIndirectAttestation
|
|
config.WebAuthn.UserVerification = protocol.VerificationPreferred
|
|
|
|
ValidateWebAuthn(config, validator)
|
|
|
|
require.Len(t, validator.Errors(), 0)
|
|
assert.Equal(t, protocol.PreferIndirectAttestation, config.WebAuthn.ConveyancePreference)
|
|
assert.Equal(t, protocol.VerificationPreferred, config.WebAuthn.UserVerification)
|
|
|
|
config.WebAuthn.ConveyancePreference = protocol.PreferDirectAttestation
|
|
config.WebAuthn.UserVerification = protocol.VerificationRequired
|
|
|
|
ValidateWebAuthn(config, validator)
|
|
|
|
require.Len(t, validator.Errors(), 0)
|
|
assert.Equal(t, protocol.PreferDirectAttestation, config.WebAuthn.ConveyancePreference)
|
|
assert.Equal(t, protocol.VerificationRequired, config.WebAuthn.UserVerification)
|
|
}
|
|
|
|
func TestWebAuthnShouldRaiseErrorsOnInvalidOptions(t *testing.T) {
|
|
validator := schema.NewStructValidator()
|
|
config := &schema.Configuration{
|
|
WebAuthn: schema.WebAuthnConfiguration{
|
|
DisplayName: "Test",
|
|
Timeout: time.Second * 50,
|
|
ConveyancePreference: "no",
|
|
UserVerification: "yes",
|
|
},
|
|
}
|
|
|
|
ValidateWebAuthn(config, validator)
|
|
|
|
require.Len(t, validator.Errors(), 2)
|
|
|
|
assert.EqualError(t, validator.Errors()[0], "webauthn: option 'attestation_conveyance_preference' must be one of 'none', 'indirect', or 'direct' but it's configured as 'no'")
|
|
assert.EqualError(t, validator.Errors()[1], "webauthn: option 'user_verification' must be one of 'none', 'indirect', or 'direct' but it's configured as 'yes'")
|
|
}
|