2014-11-06 06:55:07 -05:00
|
|
|
describe("RegisterController ", function() {
|
|
|
|
var rootScope, scope, ctrl, $q, $timeout;
|
|
|
|
var userId = "@foo:bar";
|
|
|
|
var displayName = "Foo";
|
|
|
|
var avatarUrl = "avatar.url";
|
|
|
|
|
|
|
|
window.webClientConfig = {
|
|
|
|
useCapatcha: false
|
|
|
|
};
|
|
|
|
|
|
|
|
// test vars
|
|
|
|
var testRegisterData, testFailRegisterData;
|
|
|
|
|
|
|
|
|
|
|
|
// mock services
|
|
|
|
var matrixService = {
|
|
|
|
config: function() {
|
|
|
|
return {
|
|
|
|
user_id: userId
|
|
|
|
}
|
|
|
|
},
|
|
|
|
setConfig: function(){},
|
|
|
|
register: function(mxid, password, threepidCreds, useCaptcha) {
|
|
|
|
var d = $q.defer();
|
|
|
|
if (testFailRegisterData) {
|
|
|
|
d.reject({
|
|
|
|
data: testFailRegisterData
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
d.resolve({
|
|
|
|
data: testRegisterData
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return d.promise;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var eventStreamService = {};
|
|
|
|
|
|
|
|
beforeEach(function() {
|
|
|
|
module('matrixWebClient');
|
|
|
|
|
|
|
|
// reset test vars
|
|
|
|
testRegisterData = undefined;
|
|
|
|
testFailRegisterData = undefined;
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(inject(function($rootScope, $injector, $location, $controller, _$q_, _$timeout_) {
|
|
|
|
$q = _$q_;
|
|
|
|
$timeout = _$timeout_;
|
|
|
|
scope = $rootScope.$new();
|
|
|
|
rootScope = $rootScope;
|
|
|
|
routeParams = {
|
|
|
|
user_matrix_id: userId
|
|
|
|
};
|
|
|
|
ctrl = $controller('RegisterController', {
|
|
|
|
'$scope': scope,
|
|
|
|
'$rootScope': $rootScope,
|
|
|
|
'$location': $location,
|
|
|
|
'matrixService': matrixService,
|
|
|
|
'eventStreamService': eventStreamService
|
|
|
|
});
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
// SYWEB-109
|
|
|
|
it('should display an error if the HS rejects the username on registration', function() {
|
|
|
|
var prevFeedback = angular.copy(scope.feedback);
|
|
|
|
|
|
|
|
testFailRegisterData = {
|
|
|
|
errcode: "M_UNKNOWN",
|
|
|
|
error: "I am rejecting you."
|
|
|
|
};
|
|
|
|
|
|
|
|
scope.account.pwd1 = "password";
|
|
|
|
scope.account.pwd2 = "password";
|
|
|
|
scope.account.desired_user_id = "bob";
|
2014-11-06 08:37:05 -05:00
|
|
|
scope.register(); // this depends on the result of a deferred
|
|
|
|
rootScope.$digest(); // which is delivered after the digest
|
2014-11-06 06:55:07 -05:00
|
|
|
|
2014-11-06 07:00:03 -05:00
|
|
|
expect(scope.feedback).not.toEqual(prevFeedback);
|
2014-11-06 06:55:07 -05:00
|
|
|
});
|
|
|
|
});
|