summaryrefslogtreecommitdiff
path: root/spec/javascripts/u2f/authenticate_spec.js
blob: 8f9cb27072994b7838aa63549f25ff1bae21a331 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import $ from 'jquery';
import U2FAuthenticate from '~/u2f/authenticate';
import 'vendor/u2f';
import MockU2FDevice from './mock_u2f_device';

describe('U2FAuthenticate', function() {
  preloadFixtures('u2f/authenticate.html');

  beforeEach(() => {
    loadFixtures('u2f/authenticate.html');
    this.u2fDevice = new MockU2FDevice();
    this.container = $('#js-authenticate-u2f');
    this.component = new U2FAuthenticate(
      this.container,
      '#js-login-u2f-form',
      {
        sign_requests: [],
      },
      document.querySelector('#js-login-2fa-device'),
      document.querySelector('.js-2fa-form'),
    );
  });

  describe('with u2f unavailable', () => {
    beforeEach(() => {
      spyOn(this.component, 'switchToFallbackUI');
      this.oldu2f = window.u2f;
      window.u2f = null;
    });

    afterEach(() => {
      window.u2f = this.oldu2f;
    });

    it('falls back to normal 2fa', done => {
      this.component
        .start()
        .then(() => {
          expect(this.component.switchToFallbackUI).toHaveBeenCalled();
          done();
        })
        .catch(done.fail);
    });
  });

  describe('with u2f available', () => {
    beforeEach(done => {
      // bypass automatic form submission within renderAuthenticated
      spyOn(this.component, 'renderAuthenticated').and.returnValue(true);
      this.u2fDevice = new MockU2FDevice();

      this.component
        .start()
        .then(done)
        .catch(done.fail);
    });

    it('allows authenticating via a U2F device', () => {
      const inProgressMessage = this.container.find('p');

      expect(inProgressMessage.text()).toContain('Trying to communicate with your device');
      this.u2fDevice.respondToAuthenticateRequest({
        deviceData: 'this is data from the device',
      });

      expect(this.component.renderAuthenticated).toHaveBeenCalledWith(
        '{"deviceData":"this is data from the device"}',
      );
    });

    describe('errors', () => {
      it('displays an error message', () => {
        const setupButton = this.container.find('#js-login-u2f-device');
        setupButton.trigger('click');
        this.u2fDevice.respondToAuthenticateRequest({
          errorCode: 'error!',
        });
        const errorMessage = this.container.find('p');

        expect(errorMessage.text()).toContain('There was a problem communicating with your device');
      });
      return it('allows retrying authentication after an error', () => {
        let setupButton = this.container.find('#js-login-u2f-device');
        setupButton.trigger('click');
        this.u2fDevice.respondToAuthenticateRequest({
          errorCode: 'error!',
        });
        const retryButton = this.container.find('#js-u2f-try-again');
        retryButton.trigger('click');
        setupButton = this.container.find('#js-login-u2f-device');
        setupButton.trigger('click');
        this.u2fDevice.respondToAuthenticateRequest({
          deviceData: 'this is data from the device',
        });

        expect(this.component.renderAuthenticated).toHaveBeenCalledWith(
          '{"deviceData":"this is data from the device"}',
        );
      });
    });
  });
});