mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-17 12:52:22 +01:00
199 lines
5.9 KiB
JavaScript
199 lines
5.9 KiB
JavaScript
'use strict';
|
|
|
|
(function() {
|
|
// Authentication controller Spec
|
|
describe('PasswordController', function() {
|
|
// Initialize global variables
|
|
var PasswordController,
|
|
scope,
|
|
$httpBackend,
|
|
$stateParams,
|
|
$location,
|
|
$window;
|
|
|
|
beforeEach(function() {
|
|
jasmine.addMatchers({
|
|
toEqualData: function(util, customEqualityTesters) {
|
|
return {
|
|
compare: function(actual, expected) {
|
|
return {
|
|
pass: angular.equals(actual, expected)
|
|
};
|
|
}
|
|
};
|
|
}
|
|
});
|
|
});
|
|
|
|
// Load the main application module
|
|
beforeEach(module(ApplicationConfiguration.applicationModuleName));
|
|
|
|
describe('Logged in user', function() {
|
|
beforeEach(inject(function($controller, $rootScope, _Authentication_, _$stateParams_, _$httpBackend_, _$location_) {
|
|
// Set a new global scope
|
|
scope = $rootScope.$new();
|
|
|
|
// Point global variables to injected services
|
|
$stateParams = _$stateParams_;
|
|
$httpBackend = _$httpBackend_;
|
|
$location = _$location_;
|
|
$location.path = jasmine.createSpy().and.returnValue(true);
|
|
|
|
// Mock logged in user
|
|
_Authentication_.user = {
|
|
username: 'test',
|
|
roles: ['user']
|
|
};
|
|
|
|
// Initialize the Authentication controller
|
|
PasswordController = $controller('PasswordController', {
|
|
$scope: scope
|
|
});
|
|
}));
|
|
|
|
it('should redirect logged in user to home', function() {
|
|
expect($location.path).toHaveBeenCalledWith('/');
|
|
});
|
|
});
|
|
|
|
describe('Logged out user', function() {
|
|
beforeEach(inject(function($controller, $rootScope, _$window_, _$stateParams_, _$httpBackend_, _$location_) {
|
|
// Set a new global scope
|
|
scope = $rootScope.$new();
|
|
|
|
// Point global variables to injected services
|
|
$stateParams = _$stateParams_;
|
|
$httpBackend = _$httpBackend_;
|
|
$location = _$location_;
|
|
$location.path = jasmine.createSpy().and.returnValue(true);
|
|
$window = _$window_;
|
|
$window.user = null;
|
|
|
|
// Initialize the Authentication controller
|
|
PasswordController = $controller('PasswordController', {
|
|
$scope: scope
|
|
});
|
|
}));
|
|
|
|
it('should not redirect to home', function() {
|
|
expect($location.path).not.toHaveBeenCalledWith('/');
|
|
});
|
|
|
|
describe('askForPasswordReset', function() {
|
|
var credentials = {
|
|
username: 'test',
|
|
password: 'test'
|
|
};
|
|
beforeEach(function() {
|
|
scope.credentials = credentials;
|
|
});
|
|
|
|
it('should clear scope.success and scope.error', function() {
|
|
scope.success = 'test';
|
|
scope.error = 'test';
|
|
scope.askForPasswordReset();
|
|
|
|
expect(scope.success).toBeNull();
|
|
expect(scope.error).toBeNull();
|
|
});
|
|
|
|
describe('POST error', function() {
|
|
var errorMessage = 'No account with that username has been found';
|
|
beforeEach(function() {
|
|
$httpBackend.when('POST', '/api/auth/forgot', credentials).respond(400, {
|
|
'message': errorMessage
|
|
});
|
|
|
|
scope.askForPasswordReset();
|
|
$httpBackend.flush();
|
|
});
|
|
|
|
it('should clear form', function() {
|
|
expect(scope.credentials).toBe(null);
|
|
});
|
|
|
|
it('should set error to response message', function() {
|
|
expect(scope.error).toBe(errorMessage);
|
|
});
|
|
});
|
|
|
|
describe('POST success', function() {
|
|
var successMessage = 'An email has been sent to the provided email with further instructions.';
|
|
beforeEach(function() {
|
|
$httpBackend.when('POST', '/api/auth/forgot', credentials).respond({
|
|
'message': successMessage
|
|
});
|
|
|
|
scope.askForPasswordReset();
|
|
$httpBackend.flush();
|
|
});
|
|
|
|
it('should clear form', function() {
|
|
expect(scope.credentials).toBe(null);
|
|
});
|
|
|
|
it('should set success to response message', function() {
|
|
expect(scope.success).toBe(successMessage);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('resetUserPassword', function() {
|
|
var token = 'testToken';
|
|
var passwordDetails = {
|
|
password: 'test'
|
|
};
|
|
beforeEach(function() {
|
|
$stateParams.token = token;
|
|
scope.passwordDetails = passwordDetails;
|
|
});
|
|
|
|
it('should clear scope.success and scope.error', function() {
|
|
scope.success = 'test';
|
|
scope.error = 'test';
|
|
scope.resetUserPassword();
|
|
|
|
expect(scope.success).toBeNull();
|
|
expect(scope.error).toBeNull();
|
|
});
|
|
|
|
it('POST error should set scope.error to response message', function() {
|
|
var errorMessage = 'Passwords do not match';
|
|
$httpBackend.when('POST', '/api/auth/reset/' + token, passwordDetails).respond(400, {
|
|
'message': errorMessage
|
|
});
|
|
|
|
scope.resetUserPassword();
|
|
$httpBackend.flush();
|
|
|
|
expect(scope.error).toBe(errorMessage);
|
|
});
|
|
|
|
describe('POST success', function() {
|
|
var user = {
|
|
username: 'test'
|
|
};
|
|
beforeEach(function() {
|
|
$httpBackend.when('POST', '/api/auth/reset/' + token, passwordDetails).respond(user);
|
|
|
|
scope.resetUserPassword();
|
|
$httpBackend.flush();
|
|
});
|
|
|
|
it('should clear password form', function() {
|
|
expect(scope.passwordDetails).toBe(null);
|
|
});
|
|
|
|
it('should attach user profile', function() {
|
|
expect(scope.authentication.user).toEqual(user);
|
|
});
|
|
|
|
it('should redirect to password reset success view', function() {
|
|
expect($location.path).toHaveBeenCalledWith('/password/reset/success');
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}());
|