mail/test/new-unit/write-ctrl-test.js

360 lines
13 KiB
JavaScript
Raw Normal View History

define(function(require) {
'use strict';
var expect = chai.expect,
angular = require('angular'),
mocks = require('angularMocks'),
WriteCtrl = require('js/controller/write'),
EmailDAO = require('js/dao/email-dao'),
2014-02-24 04:14:07 -05:00
OutboxBO = require('js/bo/outbox'),
KeychainDAO = require('js/dao/keychain-dao'),
appController = require('js/app-controller');
describe('Write controller unit test', function() {
2014-02-24 04:14:07 -05:00
var ctrl, scope,
2014-05-23 04:52:34 -04:00
origEmailDao, origOutbox, origKeychain,
2014-02-24 04:14:07 -05:00
emailDaoMock, keychainMock, outboxMock, emailAddress;
beforeEach(function() {
2014-02-24 04:14:07 -05:00
// the app controller is a singleton, we need to remember the
// outbox and email dao to restore it after the tests
origEmailDao = appController._emailDao;
2014-02-24 04:14:07 -05:00
origOutbox = appController._outboxBo;
2014-05-23 04:52:34 -04:00
origKeychain = appController._keychain;
2014-02-24 04:14:07 -05:00
outboxMock = sinon.createStubInstance(OutboxBO);
appController._outboxBo = outboxMock;
emailDaoMock = sinon.createStubInstance(EmailDAO);
appController._emailDao = emailDaoMock;
emailAddress = 'fred@foo.com';
emailDaoMock._account = {
emailAddress: emailAddress,
};
keychainMock = sinon.createStubInstance(KeychainDAO);
2014-05-23 04:52:34 -04:00
appController._keychain = keychainMock;
angular.module('writetest', []);
mocks.module('writetest');
mocks.inject(function($rootScope, $controller) {
scope = $rootScope.$new();
scope.state = {};
ctrl = $controller(WriteCtrl, {
$scope: scope
});
});
});
afterEach(function() {
2014-02-24 04:14:07 -05:00
// restore the app controller
appController._emailDao = origEmailDao;
2014-02-24 04:14:07 -05:00
appController._outboxBo = origOutbox;
2014-05-23 04:52:34 -04:00
appController._keychain = origKeychain;
});
describe('scope variables', function() {
it('should be set correctly', function() {
expect(scope.state.writer).to.exist;
2014-04-24 10:45:09 -04:00
expect(scope.state.lightbox).to.be.undefined;
expect(scope.state.writer.write).to.exist;
expect(scope.state.writer.close).to.exist;
2014-01-14 10:11:59 -05:00
expect(scope.verify).to.exist;
expect(scope.onAddressUpdate).to.exist;
expect(scope.checkSendStatus).to.exist;
expect(scope.updatePreview).to.exist;
expect(scope.sendToOutbox).to.exist;
});
});
describe('close', function() {
it('should close the writer', function() {
2014-04-24 10:45:09 -04:00
scope.state.lightbox = 'write';
scope.state.writer.close();
2014-04-24 10:45:09 -04:00
expect(scope.state.lightbox).to.be.undefined;
});
});
describe('write', function() {
it('should prepare write view', function() {
2014-01-14 10:11:59 -05:00
var verifyMock = sinon.stub(scope, 'verify');
scope.state.writer.write();
expect(scope.writerTitle).to.equal('New email');
2014-01-14 10:11:59 -05:00
expect(scope.to).to.deep.equal([{
address: ''
}]);
expect(scope.subject).to.equal('');
expect(scope.body).to.equal('');
expect(scope.ciphertextPreview).to.equal('');
2014-01-14 10:11:59 -05:00
expect(verifyMock.calledOnce).to.be.true;
2014-01-14 10:11:59 -05:00
scope.verify.restore();
});
it('should prefill write view for response', function() {
2014-01-14 10:11:59 -05:00
var verifyMock = sinon.stub(scope, 'verify'),
address = 'pity@dafool',
subject = 'Ermahgerd!',
body = 'so much body!',
re = {
id: 'abc',
from: [{
address: address
}],
subject: subject,
sentDate: new Date(),
body: body,
references: ['ghi', 'def']
};
scope.state.writer.write(re);
expect(scope.writerTitle).to.equal('Reply');
2014-01-14 10:11:59 -05:00
expect(scope.to).to.deep.equal([{
address: address,
}, {
address: ''
}]);
expect(scope.subject).to.equal('Re: ' + subject);
expect(scope.body).to.contain(body);
expect(scope.references).to.deep.equal(['ghi', 'def', 'abc']);
expect(scope.ciphertextPreview).to.not.be.empty;
expect(verifyMock.called).to.be.true;
2014-01-14 10:11:59 -05:00
scope.verify.restore();
});
it('should prefill write view for forward', function() {
var verifyMock = sinon.stub(scope, 'verify'),
address = 'pity@dafool',
subject = 'Ermahgerd!',
body = 'so much body!',
re = {
from: [{
address: address
}],
to: [{
address: address
}],
subject: subject,
sentDate: new Date(),
body: body,
attachments: [{}]
};
scope.state.writer.write(re, null, true);
expect(scope.writerTitle).to.equal('Forward');
expect(scope.to).to.deep.equal([{
address: ''
}]);
expect(scope.subject).to.equal('Fwd: ' + subject);
expect(scope.body).to.contain(body);
expect(scope.ciphertextPreview).to.not.be.empty;
expect(verifyMock.called).to.be.true;
expect(scope.attachments).to.not.equal(re.attachments); // not the same reference
expect(scope.attachments).to.deep.equal(re.attachments); // but the same content
scope.verify.restore();
});
});
2014-01-14 10:11:59 -05:00
describe('onAddressUpdate', function() {
var verifyMock;
2014-01-14 10:11:59 -05:00
beforeEach(function() {
verifyMock = sinon.stub(scope, 'verify');
});
2014-01-14 10:11:59 -05:00
afterEach(function() {
scope.verify.restore();
});
it('should do nothing for normal address', function() {
var to = [{
address: 'asdf@asdf.de'
}];
scope.onAddressUpdate(to, 0);
expect(to.length).to.equal(1);
expect(to[0].address).to.equal('asdf@asdf.de');
expect(verifyMock.calledOnce).to.be.true;
});
});
describe('verify', function() {
var checkSendStatusMock;
beforeEach(function() {
checkSendStatusMock = sinon.stub(scope, 'checkSendStatus');
});
2014-01-14 10:11:59 -05:00
afterEach(function() {
scope.checkSendStatus.restore();
});
it('should not work for invalid email addresses', function() {
var recipient = {
address: ''
};
scope.verify(recipient);
expect(recipient.key).to.be.undefined;
expect(recipient.secure).to.be.undefined;
2014-02-28 08:45:10 -05:00
expect(scope.checkSendStatus.callCount).to.equal(2);
2014-01-14 10:11:59 -05:00
expect(keychainMock.getReceiverPublicKey.called).to.be.false;
});
it('should not work for error in keychain', function(done) {
var recipient = {
address: 'asds@example.com'
};
2014-05-23 04:52:34 -04:00
keychainMock.refreshKeyForUserId.withArgs(recipient.address).yields({
errMsg: '404 not found yadda yadda'
});
2014-05-23 04:52:34 -04:00
scope.onError = function() {
2014-01-14 10:11:59 -05:00
expect(recipient.key).to.be.undefined;
expect(recipient.secure).to.be.false;
2014-02-28 08:45:10 -05:00
expect(scope.checkSendStatus.callCount).to.equal(1);
2014-05-23 04:52:34 -04:00
expect(keychainMock.refreshKeyForUserId.calledOnce).to.be.true;
2014-01-14 10:11:59 -05:00
done();
};
scope.verify(recipient);
});
it('should work', function(done) {
var recipient = {
address: 'asdf@example.com'
};
2014-05-23 04:52:34 -04:00
keychainMock.refreshKeyForUserId.withArgs(recipient.address).yields(null, {
2014-01-14 10:11:59 -05:00
userId: 'asdf@example.com'
});
2014-05-23 04:52:34 -04:00
2014-04-24 10:45:09 -04:00
scope.$digest = function() {
2014-01-14 10:11:59 -05:00
expect(recipient.key).to.deep.equal({
userId: 'asdf@example.com'
});
expect(recipient.secure).to.be.true;
2014-02-28 08:45:10 -05:00
expect(scope.checkSendStatus.callCount).to.equal(2);
2014-05-23 04:52:34 -04:00
expect(keychainMock.refreshKeyForUserId.calledOnce).to.be.true;
done();
};
2014-01-14 10:11:59 -05:00
scope.verify(recipient);
});
2014-01-14 10:11:59 -05:00
});
describe('checkSendStatus', function() {
beforeEach(function() {
scope.state.writer.write();
});
afterEach(function() {});
it('should not be able to send with no recipients', function() {
scope.checkSendStatus();
expect(scope.okToSend).to.be.false;
expect(scope.sendBtnText).to.be.undefined;
expect(scope.sendBtnSecure).to.be.undefined;
});
2014-02-28 08:45:10 -05:00
it('should be able to send plaintext', function() {
2014-01-14 10:11:59 -05:00
scope.to = [{
address: 'asdf@asdf.de'
}];
scope.checkSendStatus();
2014-01-14 10:11:59 -05:00
expect(scope.okToSend).to.be.true;
2014-02-28 08:45:10 -05:00
expect(scope.sendBtnText).to.equal('Send');
2014-01-14 10:11:59 -05:00
expect(scope.sendBtnSecure).to.be.false;
});
2014-02-28 08:45:10 -05:00
it('should send plaintext if one receiver is not secure', function() {
2014-01-14 10:11:59 -05:00
scope.to = [{
2014-02-28 08:45:10 -05:00
address: 'asdf@asdf.de',
secure: true
2014-01-14 10:11:59 -05:00
}, {
address: 'asdf@asdfg.de'
}];
scope.checkSendStatus();
2014-02-28 08:45:10 -05:00
expect(scope.okToSend).to.be.true;
expect(scope.sendBtnText).to.equal('Send');
expect(scope.sendBtnSecure).to.be.false;
2014-01-14 10:11:59 -05:00
});
it('should be able to send securely to multiple recipients', function() {
scope.to = [{
address: 'asdf@asdf.de',
secure: true
}, {
address: 'asdf@asdfg.de',
secure: true
}];
scope.checkSendStatus();
expect(scope.okToSend).to.be.true;
expect(scope.sendBtnText).to.equal('Send securely');
expect(scope.sendBtnSecure).to.be.true;
});
});
describe('send to outbox', function() {
2014-02-24 04:14:07 -05:00
it('should work', function() {
2014-02-25 08:19:01 -05:00
scope.to = [{
2014-02-24 04:14:07 -05:00
address: 'pity@dafool'
}];
2014-02-25 08:19:01 -05:00
scope.cc = [];
scope.bcc = [];
2014-02-24 04:14:07 -05:00
scope.subject = 'Ermahgerd!';
scope.body = 'wow. much body! very text!';
scope.attachments = [];
2013-12-04 10:33:10 -05:00
scope.state.nav = {
currentFolder: 'currentFolder'
};
2014-02-24 04:14:07 -05:00
scope.replyTo = {};
2013-12-05 12:50:03 -05:00
2014-03-06 12:02:05 -05:00
outboxMock.put.withArgs(sinon.match(function(mail) {
expect(mail.from).to.deep.equal([{
address: emailAddress
}]);
expect(mail.to).to.deep.equal(scope.to);
expect(mail.cc).to.deep.equal(scope.cc);
expect(mail.bcc).to.deep.equal(scope.bcc);
expect(mail.body).to.contain(scope.body);
expect(mail.subject).to.equal(scope.subject);
expect(mail.attachments).to.be.empty;
expect(mail.sentDate).to.exist;
return true;
})).yields();
emailDaoMock.setFlags.yields();
scope.onError = function(err) {
2014-02-24 04:14:07 -05:00
expect(err).to.not.exist;
};
scope.sendToOutbox();
2014-02-24 04:14:07 -05:00
expect(outboxMock.put.calledOnce).to.be.true;
expect(emailDaoMock.setFlags.calledOnce).to.be.true;
2014-04-24 10:45:09 -04:00
expect(scope.state.lightbox).to.be.undefined;
2014-02-24 04:14:07 -05:00
expect(scope.replyTo.answered).to.be.true;
});
});
});
});