2016-12-14 00:26:26 -05:00
|
|
|
/* eslint-disable space-before-function-paren, new-parens, quotes, comma-dangle, no-var, one-var, one-var-declaration-per-line, padded-blocks, max-len */
|
|
|
|
/* global MockU2FDevice */
|
|
|
|
/* global U2FAuthenticate */
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2016-12-29 16:42:48 -05:00
|
|
|
require('u2f/authenticate');
|
|
|
|
require('u2f/util');
|
|
|
|
require('u2f/error');
|
|
|
|
require('vendor/u2f');
|
|
|
|
require('./mock_u2f_device');
|
2016-07-24 16:45:11 -04:00
|
|
|
|
|
|
|
(function() {
|
|
|
|
describe('U2FAuthenticate', function() {
|
2016-12-30 19:14:33 -05:00
|
|
|
preloadFixtures('u2f/authenticate.html.raw');
|
2017-01-03 15:48:37 -05:00
|
|
|
|
2016-07-24 16:45:11 -04:00
|
|
|
beforeEach(function() {
|
2016-12-30 19:14:33 -05:00
|
|
|
loadFixtures('u2f/authenticate.html.raw');
|
2016-07-24 16:45:11 -04:00
|
|
|
this.u2fDevice = new MockU2FDevice;
|
|
|
|
this.container = $("#js-authenticate-u2f");
|
2016-12-24 11:53:13 -05:00
|
|
|
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')
|
|
|
|
);
|
2016-07-24 16:45:11 -04:00
|
|
|
return this.component.start();
|
|
|
|
});
|
|
|
|
it('allows authenticating via a U2F device', function() {
|
2016-12-24 11:53:13 -05:00
|
|
|
var authenticatedMessage, deviceResponse, inProgressMessage;
|
2016-07-24 16:45:11 -04:00
|
|
|
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"
|
|
|
|
});
|
|
|
|
authenticatedMessage = this.container.find("p");
|
|
|
|
deviceResponse = this.container.find('#js-device-response');
|
2016-12-24 11:53:13 -05:00
|
|
|
expect(authenticatedMessage.text()).toContain('We heard back from your U2F device. You have been authenticated.');
|
2016-07-24 16:45:11 -04:00
|
|
|
return expect(deviceResponse.val()).toBe('{"deviceData":"this is data from the device"}');
|
|
|
|
});
|
|
|
|
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() {
|
|
|
|
var authenticatedMessage, retryButton, setupButton;
|
|
|
|
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"
|
|
|
|
});
|
|
|
|
authenticatedMessage = this.container.find("p");
|
2016-12-24 11:53:13 -05:00
|
|
|
return expect(authenticatedMessage.text()).toContain("We heard back from your U2F device. You have been authenticated.");
|
2016-07-24 16:45:11 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
}).call(this);
|