'use strict'; var mocks = angular.mock, NavigationCtrl = require('../../src/js/controller/navigation'), EmailDAO = require('../../src/js/dao/email-dao'), OutboxBO = require('../../src/js/bo/outbox'), appController = require('../../src/js/app-controller'); describe('Navigation Controller unit test', function() { var scope, ctrl, origEmailDao, emailDaoMock, outboxBoMock, outboxFolder, onConnectStub; beforeEach(function(done) { // remember original module to restore later origEmailDao = appController._emailDao; emailDaoMock = sinon.createStubInstance(EmailDAO); emailDaoMock._account = { folders: [{ type: 'Inbox', count: 2, path: 'INBOX' }, { type: 'Outbox', count: 0, path: 'OUTBOX' }] }; outboxFolder = emailDaoMock._account.folders[1]; appController._emailDao = emailDaoMock; outboxBoMock = sinon.createStubInstance(OutboxBO); appController._outboxBo = outboxBoMock; outboxBoMock.startChecking.returns(); onConnectStub = sinon.stub(appController, 'onConnect'); onConnectStub.yields(); angular.module('navigationtest', []); mocks.module('navigationtest'); mocks.inject(function($rootScope, $controller) { scope = $rootScope.$new(); scope.state = {}; ctrl = $controller(NavigationCtrl, { $scope: scope, $routeParams: {} }); done(); }); }); afterEach(function() { // restore the module appController._emailDao = origEmailDao; onConnectStub.restore(); }); describe('initial state', function() { it('should be well defined', function() { expect(scope.state).to.exist; expect(scope.state.lightbox).to.be.undefined; expect(scope.account.folders).to.not.be.empty; expect(scope.openFolder).to.exist; }); }); describe('open/close nav view', function() { it('should open/close', function() { expect(scope.state.nav.open).to.be.false; scope.state.nav.toggle(true); expect(scope.state.nav.open).to.be.true; scope.state.nav.toggle(false); expect(scope.state.nav.open).to.be.false; }); }); describe('open folder', function() { it('should work', function() { scope.state.nav.open = true; scope.openFolder('asd'); expect(scope.state.nav.currentFolder).to.equal('asd'); expect(scope.state.nav.open).to.be.false; }); }); describe('empty outbox', function() { it('should work', function() { var callback; expect(outboxBoMock.startChecking.callCount).to.equal(1); outboxBoMock.startChecking.calledWith(sinon.match(function(cb) { callback = cb; })); callback(null, 5); expect(outboxFolder.count).to.equal(5); }); }); });