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

73 lines
2.8 KiB
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
/* eslint-disable space-before-function-paren, new-parens, quotes, comma-dangle, no-var, one-var, one-var-declaration-per-line, max-len */
/* global MockU2FDevice */
/* global U2FAuthenticate */
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
import '~/u2f/authenticate';
import '~/u2f/util';
import '~/u2f/error';
import 'vendor/u2f';
import './mock_u2f_device';
2016-09-13 17:45:13 +05:30
(function() {
describe('U2FAuthenticate', function() {
2017-08-17 22:00:37 +05:30
preloadFixtures('u2f/authenticate.html.raw');
2016-09-13 17:45:13 +05:30
beforeEach(function() {
2017-08-17 22:00:37 +05:30
loadFixtures('u2f/authenticate.html.raw');
2016-09-13 17:45:13 +05:30
this.u2fDevice = new MockU2FDevice;
this.container = $("#js-authenticate-u2f");
2017-08-17 22:00:37 +05:30
this.component = new window.gl.U2FAuthenticate(
this.container,
'#js-login-u2f-form',
{
sign_requests: []
},
document.querySelector('#js-login-2fa-device'),
document.querySelector('.js-2fa-form')
);
// bypass automatic form submission within renderAuthenticated
spyOn(this.component, 'renderAuthenticated').and.returnValue(true);
2016-09-13 17:45:13 +05:30
return this.component.start();
});
it('allows authenticating via a U2F device', function() {
2017-08-17 22:00:37 +05:30
var inProgressMessage;
2016-09-13 17:45:13 +05:30
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"
});
2017-08-17 22:00:37 +05:30
expect(this.component.renderAuthenticated).toHaveBeenCalledWith('{"deviceData":"this is data from the device"}');
2016-09-13 17:45:13 +05:30
});
return describe("errors", function() {
it("displays an error message", function() {
var errorMessage, setupButton;
setupButton = this.container.find("#js-login-u2f-device");
setupButton.trigger('click');
this.u2fDevice.respondToAuthenticateRequest({
errorCode: "error!"
});
errorMessage = this.container.find("p");
return expect(errorMessage.text()).toContain("There was a problem communicating with your device");
});
return it("allows retrying authentication after an error", function() {
2017-08-17 22:00:37 +05:30
var retryButton, setupButton;
2016-09-13 17:45:13 +05:30
setupButton = this.container.find("#js-login-u2f-device");
setupButton.trigger('click');
this.u2fDevice.respondToAuthenticateRequest({
errorCode: "error!"
});
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"
});
2017-08-17 22:00:37 +05:30
expect(this.component.renderAuthenticated).toHaveBeenCalledWith('{"deviceData":"this is data from the device"}');
2016-09-13 17:45:13 +05:30
});
});
});
2017-08-17 22:00:37 +05:30
}).call(window);