2014-10-07 14:32:23 -04:00
|
|
|
'use strict';
|
|
|
|
|
2014-10-09 09:56:35 -04:00
|
|
|
var mocks = angular.mock,
|
2014-10-07 14:32:23 -04:00
|
|
|
AddAccountCtrl = require('../../src/js/controller/add-account'),
|
|
|
|
Auth = require('../../src/js/bo/auth'),
|
|
|
|
AdminDao = require('../../src/js/dao/admin-dao'),
|
|
|
|
appController = require('../../src/js/app-controller');
|
|
|
|
|
|
|
|
describe('Add Account Controller unit test', function() {
|
|
|
|
var scope, location, 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('addaccounttest', []);
|
|
|
|
mocks.module('addaccounttest');
|
|
|
|
mocks.inject(function($controller, $rootScope, $location) {
|
|
|
|
location = $location;
|
|
|
|
scope = $rootScope.$new();
|
|
|
|
scope.state = {};
|
|
|
|
scope.form = {};
|
|
|
|
scope.formValidate = {};
|
|
|
|
|
|
|
|
sinon.stub(location, 'path').returns(location);
|
|
|
|
sinon.stub(location, 'search').returns(location);
|
|
|
|
sinon.stub(scope, '$apply', function() {});
|
|
|
|
|
|
|
|
ctrl = $controller(AddAccountCtrl, {
|
|
|
|
$location: location,
|
|
|
|
$scope: scope,
|
|
|
|
$routeParams: {}
|
2014-01-27 12:50:13 -05:00
|
|
|
});
|
2014-08-13 10:16:28 -04:00
|
|
|
});
|
2014-10-07 14:32:23 -04:00
|
|
|
});
|
2014-01-27 12:50:13 -05:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
afterEach(function() {
|
|
|
|
// restore the app controller module
|
|
|
|
appController._auth = origAuth;
|
2014-08-13 10:16:28 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
location.path.restore();
|
|
|
|
location.search.restore();
|
|
|
|
if (scope.$apply.restore) {
|
|
|
|
scope.$apply.restore();
|
|
|
|
}
|
|
|
|
});
|
2014-09-15 11:09:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
describe('createWhiteoutAccount', function() {
|
|
|
|
it('should return early for invalid form', function() {
|
|
|
|
scope.form.$invalid = true;
|
|
|
|
scope.createWhiteoutAccount();
|
|
|
|
expect(adminStub.createUser.called).to.be.false;
|
|
|
|
});
|
2014-09-15 11:09:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
it('should fail to error creating user', function(done) {
|
|
|
|
scope.form.$invalid = false;
|
|
|
|
scope.betaCode = 'asfd';
|
|
|
|
scope.phone = '12345';
|
|
|
|
adminStub.createUser.yieldsAsync(new Error('asdf'));
|
|
|
|
|
|
|
|
scope.$apply = function() {
|
|
|
|
expect(scope.busy).to.be.false;
|
|
|
|
expect(scope.errMsg).to.equal('asdf');
|
|
|
|
expect(adminStub.createUser.calledOnce).to.be.true;
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
|
|
|
scope.createWhiteoutAccount();
|
|
|
|
expect(scope.busy).to.be.true;
|
2014-09-15 11:09:13 -04:00
|
|
|
});
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
it('should work', function(done) {
|
|
|
|
scope.form.$invalid = false;
|
|
|
|
scope.betaCode = 'asfd';
|
|
|
|
scope.phone = '12345';
|
|
|
|
adminStub.createUser.yieldsAsync();
|
|
|
|
|
|
|
|
scope.$apply = function() {
|
|
|
|
expect(scope.busy).to.be.false;
|
|
|
|
expect(scope.errMsg).to.be.undefined;
|
|
|
|
expect(scope.step).to.equal(3);
|
|
|
|
expect(adminStub.createUser.calledOnce).to.be.true;
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
|
|
|
scope.createWhiteoutAccount();
|
|
|
|
expect(scope.busy).to.be.true;
|
|
|
|
});
|
|
|
|
});
|
2014-09-19 12:59:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
describe('validateUser', function() {
|
|
|
|
it('should return early for invalid form', function() {
|
|
|
|
scope.formValidate.$invalid = true;
|
|
|
|
scope.validateUser();
|
|
|
|
expect(adminStub.validateUser.called).to.be.false;
|
|
|
|
});
|
2014-09-19 12:59:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
it('should fail to error creating user', function(done) {
|
|
|
|
scope.formValidate.$invalid = false;
|
|
|
|
scope.token = 'asfd';
|
|
|
|
adminStub.validateUser.yieldsAsync(new Error('asdf'));
|
2014-09-19 12:59:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.$apply = function() {
|
|
|
|
expect(scope.busyValidate).to.be.false;
|
|
|
|
expect(scope.errMsgValidate).to.equal('asdf');
|
|
|
|
expect(adminStub.validateUser.calledOnce).to.be.true;
|
|
|
|
done();
|
|
|
|
};
|
2014-09-19 12:59:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.validateUser();
|
|
|
|
expect(scope.busyValidate).to.be.true;
|
|
|
|
});
|
2014-09-19 12:59:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
it('should work', function(done) {
|
|
|
|
scope.formValidate.$invalid = false;
|
|
|
|
scope.token = 'asfd';
|
|
|
|
adminStub.validateUser.yieldsAsync();
|
2014-09-19 12:59:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.login = function() {
|
2014-09-19 12:59:13 -04:00
|
|
|
expect(scope.busyValidate).to.be.true;
|
2014-10-07 14:32:23 -04:00
|
|
|
expect(scope.errMsgValidate).to.be.undefined;
|
|
|
|
expect(adminStub.validateUser.calledOnce).to.be.true;
|
|
|
|
done();
|
|
|
|
};
|
|
|
|
|
|
|
|
scope.validateUser();
|
|
|
|
expect(scope.busyValidate).to.be.true;
|
2014-09-19 12:59:13 -04:00
|
|
|
});
|
2014-10-07 14:32:23 -04:00
|
|
|
});
|
2014-09-19 12:59:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
describe('login', function() {
|
|
|
|
it('should work', function() {
|
|
|
|
scope.form.$invalid = false;
|
|
|
|
authStub.setCredentials.returns();
|
2014-09-15 11:09:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.login();
|
|
|
|
expect(authStub.setCredentials.calledOnce).to.be.true;
|
|
|
|
expect(location.path.calledWith('/login')).to.be.true;
|
2014-09-15 11:09:13 -04:00
|
|
|
});
|
2014-10-07 14:32:23 -04:00
|
|
|
});
|
2014-09-15 11:09:13 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
describe('connectToGoogle', function() {
|
|
|
|
it('should forward to login', function() {
|
|
|
|
authStub._oauth = {
|
|
|
|
isSupported: function() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
authStub.getOAuthToken.yields();
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.connectToGoogle();
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
expect(location.path.calledWith('/login-set-credentials')).to.be.true;
|
|
|
|
expect(location.search.calledWith({
|
|
|
|
provider: 'gmail'
|
|
|
|
})).to.be.true;
|
|
|
|
expect(authStub.getOAuthToken.calledOnce).to.be.true;
|
|
|
|
});
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
it('should not use oauth for gmail', function() {
|
|
|
|
authStub._oauth = {
|
|
|
|
isSupported: function() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.connectToGoogle();
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
expect(location.path.calledWith('/login-set-credentials')).to.be.true;
|
|
|
|
expect(location.search.calledWith({
|
|
|
|
provider: 'gmail'
|
|
|
|
})).to.be.true;
|
|
|
|
expect(authStub.getOAuthToken.called).to.be.false;
|
|
|
|
});
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
it('should not forward to login when oauth fails', function(done) {
|
|
|
|
authStub._oauth = {
|
|
|
|
isSupported: function() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
authStub.getOAuthToken.yields(new Error());
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.onError = function(err) {
|
|
|
|
expect(err).to.exist;
|
|
|
|
expect(location.path.called).to.be.false;
|
|
|
|
expect(location.search.called).to.be.false;
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
done();
|
|
|
|
};
|
2014-01-27 12:50:13 -05:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
scope.connectToGoogle();
|
2014-07-01 13:49:19 -04:00
|
|
|
});
|
2014-10-07 14:32:23 -04:00
|
|
|
});
|
2014-01-27 12:50:13 -05:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
describe('connectTo', function() {
|
|
|
|
it('should forward to login', function() {
|
|
|
|
var provider = 'wmail';
|
|
|
|
scope.connectTo(provider);
|
2014-07-01 13:49:19 -04:00
|
|
|
|
2014-10-07 14:32:23 -04:00
|
|
|
expect(location.path.calledWith('/login-set-credentials')).to.be.true;
|
|
|
|
expect(location.search.calledWith({
|
|
|
|
provider: provider
|
|
|
|
})).to.be.true;
|
2014-07-01 13:49:19 -04:00
|
|
|
});
|
2014-01-27 12:50:13 -05:00
|
|
|
});
|
2014-10-07 14:32:23 -04:00
|
|
|
|
2014-01-27 12:50:13 -05:00
|
|
|
});
|