diff options
author | Matthew Miller <matthew@millerti.me> | 2022-11-06 09:04:47 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-11-06 09:04:47 -0800 |
commit | 6ca32c507f99c456c999234c546f8712f88e0ee5 (patch) | |
tree | ac101a4288ba5b657c548f3280568e53f805104c /packages/server/src/authentication/generateAuthenticationOptions.test.ts | |
parent | 94101488e87a56393693e617d5502c6eae096d50 (diff) |
Switch to internal base64url
Diffstat (limited to 'packages/server/src/authentication/generateAuthenticationOptions.test.ts')
-rw-r--r-- | packages/server/src/authentication/generateAuthenticationOptions.test.ts | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/packages/server/src/authentication/generateAuthenticationOptions.test.ts b/packages/server/src/authentication/generateAuthenticationOptions.test.ts index 78c6473..fe365f2 100644 --- a/packages/server/src/authentication/generateAuthenticationOptions.test.ts +++ b/packages/server/src/authentication/generateAuthenticationOptions.test.ts @@ -1,9 +1,13 @@ jest.mock('../helpers/generateChallenge'); +import base64url from '../helpers/base64url'; + import { generateAuthenticationOptions } from './generateAuthenticationOptions'; +const challengeString = 'dG90YWxseXJhbmRvbXZhbHVl'; +const challengeBuffer = base64url.toBuffer(challengeString) + test('should generate credential request options suitable for sending via JSON', () => { - const challenge = 'totallyrandomvalue'; const options = generateAuthenticationOptions({ allowCredentials: [ @@ -19,12 +23,12 @@ test('should generate credential request options suitable for sending via JSON', }, ], timeout: 1, - challenge, + challenge: challengeBuffer, }); expect(options).toEqual({ // base64url-encoded - challenge: 'dG90YWxseXJhbmRvbXZhbHVl', + challenge: challengeString, allowCredentials: [ { id: 'MTIzNA', @@ -43,7 +47,7 @@ test('should generate credential request options suitable for sending via JSON', test('defaults to 60 seconds if no timeout is specified', () => { const options = generateAuthenticationOptions({ - challenge: 'totallyrandomvalue', + challenge: challengeBuffer, allowCredentials: [ { id: Buffer.from('1234', 'ascii'), type: 'public-key' }, { id: Buffer.from('5678', 'ascii'), type: 'public-key' }, @@ -55,7 +59,7 @@ test('defaults to 60 seconds if no timeout is specified', () => { test('should not set userVerification if not specified', () => { const options = generateAuthenticationOptions({ - challenge: 'totallyrandomvalue', + challenge: challengeBuffer, allowCredentials: [ { id: Buffer.from('1234', 'ascii'), type: 'public-key' }, { id: Buffer.from('5678', 'ascii'), type: 'public-key' }, @@ -86,7 +90,7 @@ test('should generate without params', () => { test('should set userVerification if specified', () => { const options = generateAuthenticationOptions({ - challenge: 'totallyrandomvalue', + challenge: challengeBuffer, allowCredentials: [ { id: Buffer.from('1234', 'ascii'), type: 'public-key' }, { id: Buffer.from('5678', 'ascii'), type: 'public-key' }, @@ -99,7 +103,7 @@ test('should set userVerification if specified', () => { test('should set extensions if specified', () => { const options = generateAuthenticationOptions({ - challenge: 'totallyrandomvalue', + challenge: challengeBuffer, allowCredentials: [ { id: Buffer.from('1234', 'ascii'), type: 'public-key' }, { id: Buffer.from('5678', 'ascii'), type: 'public-key' }, |