diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2023-04-15 02:04:42 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-15 02:04:42 +1000 |
| commit | 2733fc040cc43269889f5e11fd64c1fdb2e09ebd (patch) | |
| tree | 2459462966d202d1177fb166a83a476c2e9c5a51 /internal/handlers/webauthn_test.go | |
| parent | 37a49b21af4550525890a84b5a7ccf6f1ed51243 (diff) | |
refactor: webauthn naming (#5243)
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/handlers/webauthn_test.go')
| -rw-r--r-- | internal/handlers/webauthn_test.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/internal/handlers/webauthn_test.go b/internal/handlers/webauthn_test.go index cba439188..434ed496b 100644 --- a/internal/handlers/webauthn_test.go +++ b/internal/handlers/webauthn_test.go @@ -13,7 +13,7 @@ import ( "github.com/authelia/authelia/v4/internal/session" ) -func TestWebauthnGetUser(t *testing.T) { +func TestWebAuthnGetUser(t *testing.T) { ctx := mocks.NewMockAutheliaCtx(t) userSession := session.UserSession{ @@ -21,7 +21,7 @@ func TestWebauthnGetUser(t *testing.T) { DisplayName: "John Smith", } - ctx.StorageMock.EXPECT().LoadWebauthnDevicesByUsername(ctx.Ctx, "john").Return([]model.WebAuthnDevice{ + ctx.StorageMock.EXPECT().LoadWebAuthnDevicesByUsername(ctx.Ctx, "john").Return([]model.WebAuthnDevice{ { ID: 1, RPID: "https://example.com", @@ -99,14 +99,14 @@ func TestWebauthnGetUser(t *testing.T) { assert.Equal(t, protocol.AuthenticatorTransport("nfc"), descriptors[1].Transport[1]) } -func TestWebauthnGetUserWithoutDisplayName(t *testing.T) { +func TestWebAuthnGetUserWithoutDisplayName(t *testing.T) { ctx := mocks.NewMockAutheliaCtx(t) userSession := session.UserSession{ Username: "john", } - ctx.StorageMock.EXPECT().LoadWebauthnDevicesByUsername(ctx.Ctx, "john").Return([]model.WebAuthnDevice{ + ctx.StorageMock.EXPECT().LoadWebAuthnDevicesByUsername(ctx.Ctx, "john").Return([]model.WebAuthnDevice{ { ID: 1, RPID: "https://example.com", @@ -129,14 +129,14 @@ func TestWebauthnGetUserWithoutDisplayName(t *testing.T) { assert.Equal(t, "john", user.DisplayName) } -func TestWebauthnGetUserWithErr(t *testing.T) { +func TestWebAuthnGetUserWithErr(t *testing.T) { ctx := mocks.NewMockAutheliaCtx(t) userSession := session.UserSession{ Username: "john", } - ctx.StorageMock.EXPECT().LoadWebauthnDevicesByUsername(ctx.Ctx, "john").Return(nil, errors.New("not found")) + ctx.StorageMock.EXPECT().LoadWebAuthnDevicesByUsername(ctx.Ctx, "john").Return(nil, errors.New("not found")) user, err := getWebAuthnUser(ctx.Ctx, userSession) @@ -144,24 +144,24 @@ func TestWebauthnGetUserWithErr(t *testing.T) { assert.Nil(t, user) } -func TestWebauthnNewWebauthnShouldReturnErrWhenHeadersNotAvailable(t *testing.T) { +func TestWebAuthnNewWebAuthnShouldReturnErrWhenHeadersNotAvailable(t *testing.T) { ctx := mocks.NewMockAutheliaCtx(t) ctx.Ctx.Request.Header.Del("X-Forwarded-Host") - w, err := newWebauthn(ctx.Ctx) + w, err := newWebAuthn(ctx.Ctx) assert.Nil(t, w) assert.EqualError(t, err, "missing required X-Forwarded-Host header") } -func TestWebauthnNewWebauthnShouldReturnErrWhenWebauthnNotConfigured(t *testing.T) { +func TestWebAuthnNewWebAuthnShouldReturnErrWhenWebAuthnNotConfigured(t *testing.T) { ctx := mocks.NewMockAutheliaCtx(t) ctx.Ctx.Request.Header.Set("X-Forwarded-Host", "example.com") ctx.Ctx.Request.Header.Set("X-Forwarded-URI", "/") ctx.Ctx.Request.Header.Set("X-Forwarded-Proto", "https") - w, err := newWebauthn(ctx.Ctx) + w, err := newWebAuthn(ctx.Ctx) assert.Nil(t, w) assert.EqualError(t, err, "Configuration error: Missing RPDisplayName") |
