debian-mirror-gitlab/spec/javascripts/u2f/authenticate_spec.js

64 lines
2.4 KiB
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import U2FAuthenticate from '~/u2f/authenticate';
2017-09-10 17:25:29 +05:30
import 'vendor/u2f';
2018-03-17 18:26:18 +05:30
import MockU2FDevice from './mock_u2f_device';
describe('U2FAuthenticate', () => {
preloadFixtures('u2f/authenticate.html.raw');
2016-09-13 17:45:13 +05:30
2018-03-27 19:54:05 +05:30
beforeEach((done) => {
2018-03-17 18:26:18 +05:30
loadFixtures('u2f/authenticate.html.raw');
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'),
);
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
// bypass automatic form submission within renderAuthenticated
spyOn(this.component, 'renderAuthenticated').and.returnValue(true);
2017-08-17 22:00:37 +05:30
2018-03-27 19:54:05 +05:30
this.component.start().then(done).catch(done.fail);
2018-03-17 18:26:18 +05:30
});
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
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',
2016-09-13 17:45:13 +05:30
});
2018-03-17 18:26:18 +05:30
expect(this.component.renderAuthenticated).toHaveBeenCalledWith('{"deviceData":"this is data from the device"}');
});
2018-03-27 19:54:05 +05:30
describe('errors', () => {
2018-03-17 18:26:18 +05:30
it('displays an error message', () => {
const setupButton = this.container.find('#js-login-u2f-device');
setupButton.trigger('click');
2016-09-13 17:45:13 +05:30
this.u2fDevice.respondToAuthenticateRequest({
2018-03-17 18:26:18 +05:30
errorCode: 'error!',
2016-09-13 17:45:13 +05:30
});
2018-03-17 18:26:18 +05:30
const errorMessage = this.container.find('p');
return expect(errorMessage.text()).toContain('There was a problem communicating with your device');
2016-09-13 17:45:13 +05:30
});
2018-03-17 18:26:18 +05:30
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!',
2016-09-13 17:45:13 +05:30
});
2018-03-17 18:26:18 +05:30
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',
2016-09-13 17:45:13 +05:30
});
2018-03-17 18:26:18 +05:30
expect(this.component.renderAuthenticated).toHaveBeenCalledWith('{"deviceData":"this is data from the device"}');
2016-09-13 17:45:13 +05:30
});
});
2018-03-17 18:26:18 +05:30
});