mail/test/unit/controller/app/privatekey-upload-ctrl-test.js

225 lines
7.3 KiB
JavaScript
Raw Normal View History

2014-10-07 14:32:23 -04:00
'use strict';
2014-11-25 12:19:40 -05:00
var PrivateKeyUploadCtrl = require('../../../../src/js/controller/app/privatekey-upload'),
KeychainDAO = require('../../../../src/js/service/keychain'),
PGP = require('../../../../src/js/crypto/pgp'),
Dialog = require('../../../../src/js/util/dialog');
2014-10-07 14:32:23 -04:00
describe('Private Key Upload Controller unit test', function() {
var scope, location, ctrl,
2014-11-25 12:19:40 -05:00
keychainMock, pgpStub, dialogStub,
2014-10-07 14:32:23 -04:00
emailAddress = 'fred@foo.com';
2014-11-25 12:19:40 -05:00
beforeEach(function() {
keychainMock = sinon.createStubInstance(KeychainDAO);
pgpStub = sinon.createStubInstance(PGP);
dialogStub = sinon.createStubInstance(Dialog);
2014-10-07 14:32:23 -04:00
2014-11-25 12:19:40 -05:00
angular.module('login-privatekey-download-test', ['woServices']);
angular.mock.module('login-privatekey-download-test');
angular.mock.inject(function($controller, $rootScope) {
2014-10-07 14:32:23 -04:00
scope = $rootScope.$new();
scope.state = {};
ctrl = $controller(PrivateKeyUploadCtrl, {
$location: location,
2014-11-25 12:19:40 -05:00
$scope: scope,
2014-12-18 09:19:06 -05:00
$q: window.qMock,
2014-11-25 12:19:40 -05:00
keychain: keychainMock,
pgp: pgpStub,
dialog: dialogStub,
auth: {
emailAddress: emailAddress
}
});
});
2014-10-07 14:32:23 -04:00
});
2014-11-25 12:19:40 -05:00
afterEach(function() {});
2014-10-07 14:32:23 -04:00
describe('checkServerForKey', function() {
var keyParams = {
userId: emailAddress,
_id: 'keyId',
};
2014-12-18 09:19:06 -05:00
it('should fail', function(done) {
2014-10-07 14:32:23 -04:00
pgpStub.getKeyParams.returns(keyParams);
2014-12-18 09:19:06 -05:00
keychainMock.hasPrivateKey.returns(rejects(42));
2014-10-07 14:32:23 -04:00
2014-12-18 09:19:06 -05:00
scope.checkServerForKey().then(function() {
expect(dialogStub.error.calledOnce).to.be.true;
expect(keychainMock.hasPrivateKey.calledOnce).to.be.true;
done();
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
it('should return true', function(done) {
pgpStub.getKeyParams.returns(keyParams);
keychainMock.hasPrivateKey.withArgs({
userId: keyParams.userId,
keyId: keyParams._id
2014-12-18 09:19:06 -05:00
}).returns(resolves(true));
2014-12-18 09:19:06 -05:00
scope.checkServerForKey().then(function(privateKeySynced) {
2014-10-07 14:32:23 -04:00
expect(privateKeySynced).to.be.true;
done();
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
it('should return undefined', function(done) {
pgpStub.getKeyParams.returns(keyParams);
keychainMock.hasPrivateKey.withArgs({
userId: keyParams.userId,
keyId: keyParams._id
2014-12-18 09:19:06 -05:00
}).returns(resolves(false));
2014-12-18 09:19:06 -05:00
scope.checkServerForKey().then(function(privateKeySynced) {
2014-10-07 14:32:23 -04:00
expect(privateKeySynced).to.be.undefined;
done();
});
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('displayUploadUi', function() {
it('should work', function() {
// add some artifacts from a previous key input
2014-12-01 07:25:25 -05:00
scope.inputCode = 'asdasd';
2014-10-07 14:32:23 -04:00
scope.displayUploadUi();
expect(scope.step).to.equal(1);
expect(scope.code.length).to.equal(24);
// artifacts should be cleared
2014-12-01 07:25:25 -05:00
expect(scope.inputCode).to.be.empty;
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('verifyCode', function() {
it('should fail for wrong code', function() {
2014-12-01 07:25:25 -05:00
scope.inputCode = 'bbbbbb';
scope.code = 'AAAAAA';
2014-10-07 14:32:23 -04:00
expect(scope.verifyCode()).to.be.false;
});
2014-10-07 14:32:23 -04:00
it('should work', function() {
2014-12-01 07:25:25 -05:00
scope.inputCode = 'aaAaaa';
scope.code = 'AAAAAA';
expect(scope.verifyCode()).to.be.true;
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('setDeviceName', function() {
it('should work', function(done) {
2014-12-18 09:19:06 -05:00
keychainMock.setDeviceName.returns(resolves());
scope.setDeviceName().then(done);
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('encryptAndUploadKey', function() {
2014-12-18 09:19:06 -05:00
it('should fail due to keychain.registerDevice', function(done) {
keychainMock.registerDevice.returns(rejects(42));
2014-12-18 09:19:06 -05:00
scope.encryptAndUploadKey().then(function() {
expect(dialogStub.error.calledOnce).to.be.true;
expect(keychainMock.registerDevice.calledOnce).to.be.true;
done();
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
it('should work', function(done) {
2014-12-18 09:19:06 -05:00
keychainMock.registerDevice.returns(resolves());
keychainMock.uploadPrivateKey.returns(resolves());
2014-12-18 09:19:06 -05:00
scope.encryptAndUploadKey().then(function() {
2014-10-07 14:32:23 -04:00
expect(keychainMock.registerDevice.calledOnce).to.be.true;
expect(keychainMock.uploadPrivateKey.calledOnce).to.be.true;
done();
});
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('goBack', function() {
it('should work', function() {
scope.step = 2;
scope.goBack();
expect(scope.step).to.equal(1);
});
2014-10-07 14:32:23 -04:00
it('should not work for < 2', function() {
scope.step = 1;
scope.goBack();
expect(scope.step).to.equal(1);
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('goForward', function() {
var verifyCodeStub, setDeviceNameStub, encryptAndUploadKeyStub;
beforeEach(function() {
verifyCodeStub = sinon.stub(scope, 'verifyCode');
setDeviceNameStub = sinon.stub(scope, 'setDeviceName');
encryptAndUploadKeyStub = sinon.stub(scope, 'encryptAndUploadKey');
});
afterEach(function() {
verifyCodeStub.restore();
setDeviceNameStub.restore();
encryptAndUploadKeyStub.restore();
});
2014-10-07 14:32:23 -04:00
it('should work for < 2', function() {
scope.step = 1;
scope.goForward();
expect(scope.step).to.equal(2);
});
2014-10-07 14:32:23 -04:00
it('should work for 2', function() {
verifyCodeStub.returns(true);
scope.step = 2;
scope.goForward();
expect(scope.step).to.equal(3);
});
2014-10-07 14:32:23 -04:00
it('should not work for 2 when code invalid', function() {
verifyCodeStub.returns(false);
scope.step = 2;
scope.goForward();
expect(scope.step).to.equal(2);
});
2014-12-18 09:19:06 -05:00
it('should fail for 3 due to error in setDeviceName', function(done) {
2014-10-07 14:32:23 -04:00
scope.step = 3;
2014-12-18 09:19:06 -05:00
setDeviceNameStub.returns(rejects(42));
2014-12-18 09:19:06 -05:00
scope.goForward().then(function() {
expect(dialogStub.error.calledOnce).to.be.true;
expect(scope.step).to.equal(3);
done();
});
2014-10-07 14:32:23 -04:00
});
2014-12-18 09:19:06 -05:00
it('should fail for 3 due to error in encryptAndUploadKey', function(done) {
2014-10-07 14:32:23 -04:00
scope.step = 3;
2014-12-18 09:19:06 -05:00
setDeviceNameStub.returns(resolves());
encryptAndUploadKeyStub.returns(rejects(42));
2014-12-18 09:19:06 -05:00
scope.goForward().then(function() {
expect(dialogStub.error.calledOnce).to.be.true;
expect(scope.step).to.equal(4);
done();
});
2014-10-07 14:32:23 -04:00
});
2014-12-18 09:19:06 -05:00
it('should work for 3', function(done) {
2014-10-07 14:32:23 -04:00
scope.step = 3;
2014-12-18 09:19:06 -05:00
setDeviceNameStub.returns(resolves());
encryptAndUploadKeyStub.returns(resolves());
2014-11-25 12:19:40 -05:00
2014-12-18 09:19:06 -05:00
scope.goForward().then(function() {
expect(dialogStub.info.calledOnce).to.be.true;
expect(scope.step).to.equal(4);
done();
});
});
});
});