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

309 lines
10 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,
origEmailDao, origOutbox,
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;
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);
emailDaoMock._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;
});
describe('scope variables', function() {
it('should be set correctly', function() {
expect(scope.state.writer).to.exist;
expect(scope.state.writer.open).to.be.false;
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() {
scope.state.writer.open = true;
scope.state.writer.close();
expect(scope.state.writer.open).to.be.false;
});
});
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 = {
from: [{
address: address
}],
subject: subject,
sentDate: new Date(),
body: body
};
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.ciphertextPreview).to.not.be.empty;
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();
});
});
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'
};
keychainMock.getReceiverPublicKey.withArgs(recipient.address).yields({
errMsg: '404 not found yadda yadda'
});
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-01-14 10:11:59 -05:00
expect(keychainMock.getReceiverPublicKey.calledOnce).to.be.true;
done();
};
scope.verify(recipient);
});
it('should work', function(done) {
var recipient = {
address: 'asdf@example.com'
};
keychainMock.getReceiverPublicKey.yields(null, {
userId: 'asdf@example.com'
});
scope.$apply = function() {
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-01-14 10:11:59 -05:00
expect(keychainMock.getReceiverPublicKey.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.from = [{
2014-02-24 04:14:07 -05:00
address: 'pity@dafool'
}];
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-02-24 04:14:07 -05:00
outboxMock.put.yields();
2013-12-05 12:50:03 -05:00
emailDaoMock.sync.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.sync.calledOnce).to.be.true;
2014-02-24 04:14:07 -05:00
expect(scope.state.writer.open).to.be.false;
expect(scope.replyTo.answered).to.be.true;
});
});
});
});