mirror of
https://github.com/moparisthebest/mail
synced 2024-11-10 11:15:01 -05:00
118 lines
3.9 KiB
JavaScript
118 lines
3.9 KiB
JavaScript
'use strict';
|
|
|
|
var mocks = angular.mock,
|
|
ValidatePhoneCtrl = require('../../src/js/controller/validate-phone'),
|
|
Auth = require('../../src/js/bo/auth'),
|
|
AdminDao = require('../../src/js/dao/admin-dao'),
|
|
appController = require('../../src/js/app-controller');
|
|
|
|
describe('Validate Phone Controller unit test', function() {
|
|
var scope, location, mailConfigMock, ctrl, authStub, origAuth, adminStub;
|
|
|
|
beforeEach(function() {
|
|
// remember original module to restore later, then replace it
|
|
origAuth = appController._auth;
|
|
appController._auth = authStub = sinon.createStubInstance(Auth);
|
|
appController._adminDao = adminStub = sinon.createStubInstance(AdminDao);
|
|
|
|
angular.module('validatephonetest', ['woServices']);
|
|
mocks.module('validatephonetest');
|
|
mocks.inject(function($controller, $rootScope, $location, mailConfig) {
|
|
location = $location;
|
|
mailConfigMock = mailConfig;
|
|
scope = $rootScope.$new();
|
|
scope.state = {
|
|
createAccount: {
|
|
emailAddress: 'test@wmail.io',
|
|
pass: 'asdf',
|
|
realname: 'Test User'
|
|
}
|
|
};
|
|
scope.form = {};
|
|
|
|
sinon.stub(location, 'path').returns(location);
|
|
sinon.stub(location, 'search').returns(location);
|
|
sinon.stub(scope, '$apply', function() {});
|
|
|
|
ctrl = $controller(ValidatePhoneCtrl, {
|
|
$location: location,
|
|
$scope: scope,
|
|
$routeParams: {},
|
|
mailConfig: mailConfigMock
|
|
});
|
|
});
|
|
});
|
|
|
|
afterEach(function() {
|
|
// restore the app controller module
|
|
appController._auth = origAuth;
|
|
|
|
location.path.restore();
|
|
location.search.restore();
|
|
if (scope.$apply.restore) {
|
|
scope.$apply.restore();
|
|
}
|
|
});
|
|
|
|
describe('validateUser', function() {
|
|
it('should return early for invalid form', function() {
|
|
scope.form.$invalid = true;
|
|
scope.validateUser();
|
|
expect(adminStub.validateUser.called).to.be.false;
|
|
});
|
|
|
|
it('should fail to error creating user', function(done) {
|
|
scope.form.$invalid = false;
|
|
scope.token = 'asfd';
|
|
adminStub.validateUser.yieldsAsync(new Error('asdf'));
|
|
|
|
scope.$apply = function() {
|
|
expect(scope.busy).to.be.false;
|
|
expect(scope.errMsg).to.equal('asdf');
|
|
expect(adminStub.validateUser.calledOnce).to.be.true;
|
|
done();
|
|
};
|
|
|
|
scope.validateUser();
|
|
expect(scope.busy).to.be.true;
|
|
});
|
|
|
|
it('should work', function(done) {
|
|
scope.form.$invalid = false;
|
|
scope.token = 'asfd';
|
|
adminStub.validateUser.yieldsAsync();
|
|
|
|
scope.login = function() {
|
|
expect(scope.busy).to.be.true;
|
|
expect(scope.errMsg).to.be.undefined;
|
|
expect(adminStub.validateUser.calledOnce).to.be.true;
|
|
done();
|
|
};
|
|
|
|
scope.validateUser();
|
|
expect(scope.busy).to.be.true;
|
|
});
|
|
});
|
|
|
|
describe('login', function() {
|
|
it('should work', inject(function($q, $rootScope) {
|
|
scope.form.$invalid = false;
|
|
authStub.setCredentials.returns();
|
|
|
|
var deferred = $q.defer();
|
|
sinon.stub(mailConfigMock, 'get').returns(deferred.promise);
|
|
deferred.resolve({
|
|
imap: {},
|
|
smtp: {}
|
|
});
|
|
|
|
scope.login();
|
|
|
|
$rootScope.$apply();
|
|
expect(mailConfigMock.get.calledOnce).to.be.true;
|
|
expect(authStub.setCredentials.calledOnce).to.be.true;
|
|
expect(location.path.calledWith('/login')).to.be.true;
|
|
}));
|
|
});
|
|
|
|
}); |