1
0
mirror of https://github.com/moparisthebest/mail synced 2024-12-01 13:22:16 -05:00
mail/test/unit/controller/app/contacts-ctrl-test.js

112 lines
3.6 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 ContactsCtrl = require('../../../../src/js/controller/app/contacts'),
Keychain = 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('Contacts Controller unit test', function() {
2014-11-25 12:19:40 -05:00
var scope, contactsCtrl, keychainStub, pgpStub, dialogStub;
2014-10-07 14:32:23 -04:00
beforeEach(function() {
2014-11-25 12:19:40 -05:00
pgpStub = sinon.createStubInstance(PGP);
keychainStub = sinon.createStubInstance(Keychain);
dialogStub = sinon.createStubInstance(Dialog);
angular.module('contactstest', ['woServices']);
angular.mock.module('contactstest');
angular.mock.inject(function($rootScope, $controller) {
2014-10-07 14:32:23 -04:00
scope = $rootScope.$new();
scope.state = {};
contactsCtrl = $controller(ContactsCtrl, {
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: keychainStub,
pgp: pgpStub,
dialog: dialogStub
});
});
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('scope variables', function() {
it('should be set correctly', function() {
expect(scope.state.contacts.toggle).to.exist;
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('listKeys', function() {
2014-12-18 09:19:06 -05:00
it('should fail due to error in keychain.listLocalPublicKeys', function(done) {
keychainStub.listLocalPublicKeys.returns(rejects(42));
2014-12-18 09:19:06 -05:00
scope.listKeys().then(function() {
expect(dialogStub.error.calledOnce).to.be.true;
done();
});
2014-10-07 14:32:23 -04:00
});
2014-12-18 09:19:06 -05:00
it('should work', function(done) {
keychainStub.listLocalPublicKeys.returns(resolves([{
2014-10-07 14:32:23 -04:00
_id: '12345'
2014-12-18 09:19:06 -05:00
}]));
2014-11-25 12:19:40 -05:00
pgpStub.getKeyParams.returns({
fingerprint: 'asdf',
userIds: [{
name: 'Firstname Lastname',
emailAddress: 'first.last@example.com'
}]
});
2014-10-07 14:32:23 -04:00
expect(scope.keys).to.not.exist;
2014-12-18 09:19:06 -05:00
scope.listKeys().then(function() {
expect(scope.keys.length).to.equal(1);
expect(scope.keys[0]._id).to.equal('12345');
expect(scope.keys[0].fingerprint).to.equal('asdf');
expect(scope.keys[0].fullUserId).to.equal('Firstname Lastname <first.last@example.com>');
2014-12-18 09:19:06 -05:00
done();
});
});
2014-10-07 14:32:23 -04:00
});
2014-10-07 14:32:23 -04:00
describe('getFingerprint', function() {
it('should work', function() {
var key = {
fingerprint: 'YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY'
};
2014-10-07 14:32:23 -04:00
scope.getFingerprint(key);
2014-10-07 14:32:23 -04:00
expect(scope.fingerprint).to.equal('YYYY YYYY YYYY YYYY YYYY ... YYYY YYYY YYYY YYYY YYYY');
});
2014-10-07 14:32:23 -04:00
});
describe('removeKey', function() {
it('should work', function(done) {
var key = {
_id: '12345'
};
2014-12-18 09:19:06 -05:00
keychainStub.removeLocalPublicKey.withArgs('12345').returns(resolves());
2014-12-18 09:19:06 -05:00
scope.listKeys = function() {};
2014-12-18 09:19:06 -05:00
scope.removeKey(key).then(function() {
done();
});
2014-10-07 14:32:23 -04:00
});
2014-12-18 09:19:06 -05:00
it('should fail due to error in keychain.removeLocalPublicKey', function(done) {
2014-10-07 14:32:23 -04:00
var key = {
_id: '12345'
};
2014-12-18 09:19:06 -05:00
keychainStub.removeLocalPublicKey.withArgs('12345').returns(rejects(42));
2014-11-25 12:19:40 -05:00
2014-12-18 09:19:06 -05:00
scope.removeKey(key).then(function() {
expect(dialogStub.error.calledOnce).to.be.true;
done();
});
});
});
});