Welcome to mirror list, hosted at ThFree Co, Russian Federation.

util_spec.js « webauthn « authentication « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc44b47d0ba5a45344db4a10bd0fa9d3ec1f0c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { base64ToBuffer, bufferToBase64, base64ToBase64Url } from '~/authentication/webauthn/util';

const encodedString = 'SGVsbG8gd29ybGQh';
const stringBytes = [72, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100, 33];

describe('Webauthn utils', () => {
  it('base64ToBuffer', () => {
    const toArray = (val) => new Uint8Array(val);

    expect(base64ToBuffer(encodedString)).toBeInstanceOf(ArrayBuffer);

    expect(toArray(base64ToBuffer(encodedString))).toEqual(toArray(stringBytes));
  });

  it('bufferToBase64', () => {
    const buffer = base64ToBuffer(encodedString);
    expect(bufferToBase64(buffer)).toBe(encodedString);
  });

  describe('base64ToBase64Url', () => {
    it.each`
      argument               | expectedResult
      ${'asd+'}              | ${'asd-'}
      ${'asd/'}              | ${'asd_'}
      ${'asd='}              | ${'asd'}
      ${'+asd'}              | ${'-asd'}
      ${'/asd'}              | ${'_asd'}
      ${'=asd'}              | ${'=asd'}
      ${'a+bc/def=ghigjk=='} | ${'a-bc_def=ghigjk'}
    `('returns $expectedResult when argument is $argument', ({ argument, expectedResult }) => {
      expect(base64ToBase64Url(argument)).toBe(expectedResult);
    });
  });
});