mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 11:22:21 +01:00
194 lines
6.6 KiB
JavaScript
194 lines
6.6 KiB
JavaScript
'use strict';
|
|
|
|
(function () {
|
|
// Password controller Spec
|
|
describe('PasswordController', function () {
|
|
// Initialize global variables
|
|
var PasswordController,
|
|
scope,
|
|
$httpBackend,
|
|
$stateParams,
|
|
$location,
|
|
$window,
|
|
Notification;
|
|
|
|
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, _UsersService_, _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);
|
|
|
|
// Ignore parent template gets on state transition
|
|
$httpBackend.whenGET('/modules/core/client/views/404.client.view.html').respond(200);
|
|
|
|
// Mock logged in user
|
|
_Authentication_.user = {
|
|
username: 'test',
|
|
roles: ['user']
|
|
};
|
|
|
|
// Initialize the Authentication controller
|
|
PasswordController = $controller('PasswordController as vm', {
|
|
$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_, _Notification_) {
|
|
// 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;
|
|
Notification = _Notification_;
|
|
|
|
spyOn(Notification, 'error');
|
|
spyOn(Notification, 'success');
|
|
|
|
// Ignore parent template gets on state transition
|
|
$httpBackend.whenGET('/modules/core/client/views/404.client.view.html').respond(200);
|
|
$httpBackend.whenGET('/modules/core/client/views/400.client.view.html').respond(200);
|
|
|
|
// Initialize the Authentication controller
|
|
PasswordController = $controller('PasswordController as vm', {
|
|
$scope: scope
|
|
});
|
|
}));
|
|
|
|
it('should not redirect to home', function () {
|
|
expect($location.path).not.toHaveBeenCalledWith('/');
|
|
});
|
|
|
|
describe('askForPasswordReset', function () {
|
|
var credentials = {
|
|
username: 'test',
|
|
password: 'P@ssw0rd!!'
|
|
};
|
|
beforeEach(function () {
|
|
scope.vm.credentials = credentials;
|
|
});
|
|
|
|
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.vm.askForPasswordReset(true);
|
|
$httpBackend.flush();
|
|
});
|
|
|
|
it('should clear form', function () {
|
|
expect(scope.vm.credentials).toBe(null);
|
|
});
|
|
|
|
it('should call Notification.error with response message', function () {
|
|
expect(Notification.error).toHaveBeenCalledWith({ message: errorMessage, title: '<i class="glyphicon glyphicon-remove"></i> Failed to send password reset email!', delay: 4000 });
|
|
});
|
|
});
|
|
|
|
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.vm.askForPasswordReset(true);
|
|
$httpBackend.flush();
|
|
});
|
|
|
|
it('should clear form', function () {
|
|
expect(scope.vm.credentials).toBe(null);
|
|
});
|
|
|
|
it('should call Notification.success with response message', function () {
|
|
expect(Notification.success).toHaveBeenCalledWith({ message: successMessage, title: '<i class="glyphicon glyphicon-ok"></i> Password reset email sent successfully!' });
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('resetUserPassword', function () {
|
|
var token = 'testToken';
|
|
var passwordDetails = {
|
|
password: 'test'
|
|
};
|
|
beforeEach(function () {
|
|
$stateParams.token = token;
|
|
scope.vm.passwordDetails = passwordDetails;
|
|
});
|
|
|
|
it('POST error should call Notification.error with response message', function () {
|
|
var errorMessage = 'Passwords do not match';
|
|
$httpBackend.when('POST', '/api/auth/reset/' + token, passwordDetails).respond(400, {
|
|
'message': errorMessage
|
|
});
|
|
|
|
scope.vm.resetUserPassword(true);
|
|
$httpBackend.flush();
|
|
|
|
expect(Notification.error).toHaveBeenCalledWith({ message: errorMessage, title: '<i class="glyphicon glyphicon-remove"></i> Password reset failed!', delay: 4000 });
|
|
});
|
|
|
|
describe('POST success', function () {
|
|
var user = {
|
|
username: 'test'
|
|
};
|
|
beforeEach(function () {
|
|
$httpBackend.when('POST', '/api/auth/reset/' + token, passwordDetails).respond(user);
|
|
|
|
scope.vm.resetUserPassword(true);
|
|
$httpBackend.flush();
|
|
});
|
|
|
|
it('should clear password form', function () {
|
|
expect(scope.vm.passwordDetails).toBe(null);
|
|
});
|
|
|
|
it('should attach user profile', function () {
|
|
expect(scope.vm.authentication.user.username).toEqual(user.username);
|
|
});
|
|
|
|
it('should redirect to password reset success view with Notification.success', function () {
|
|
expect(Notification.success).toHaveBeenCalledWith({ message: '<i class="glyphicon glyphicon-ok"></i> Password reset successful!' });
|
|
expect($location.path).toHaveBeenCalledWith('/password/reset/success');
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}());
|