summaryrefslogtreecommitdiff
path: root/spec/frontend/authentication/webauthn/error_spec.js
blob: 9b71f77dde2661d114c86dee35cb5c3f2383908e (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
35
36
37
38
39
40
import setWindowLocation from 'helpers/set_window_location_helper';
import WebAuthnError from '~/authentication/webauthn/error';

describe('WebAuthnError', () => {
  it.each([
    [
      'NotSupportedError',
      'Your device is not compatible with GitLab. Please try another device',
      'authenticate',
    ],
    ['InvalidStateError', 'This device has not been registered with us.', 'authenticate'],
    ['InvalidStateError', 'This device has already been registered with us.', 'register'],
    ['UnknownError', 'There was a problem communicating with your device.', 'register'],
  ])('exception %s will have message %s, flow type: %s', (exception, expectedMessage, flowType) => {
    expect(new WebAuthnError(new DOMException('', exception), flowType).message()).toEqual(
      expectedMessage,
    );
  });

  describe('SecurityError', () => {
    it('returns a descriptive error if https is disabled', () => {
      setWindowLocation('http://localhost');

      const expectedMessage =
        'WebAuthn only works with HTTPS-enabled websites. Contact your administrator for more details.';
      expect(
        new WebAuthnError(new DOMException('', 'SecurityError'), 'authenticate').message(),
      ).toEqual(expectedMessage);
    });

    it('returns a generic error if https is enabled', () => {
      setWindowLocation('https://localhost');

      const expectedMessage = 'There was a problem communicating with your device.';
      expect(
        new WebAuthnError(new DOMException('', 'SecurityError'), 'authenticate').message(),
      ).toEqual(expectedMessage);
    });
  });
});