mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-06 12:11:02 +01:00
Added user test file
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
'use strict';
|
||||
|
||||
(function() {
|
||||
// Authentication controller Spec
|
||||
describe('AuthenticationController', function() {
|
||||
// Initialize global variables
|
||||
var AuthenticationController,
|
||||
scope,
|
||||
$httpBackend,
|
||||
$stateParams,
|
||||
$location;
|
||||
|
||||
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));
|
||||
|
||||
// The injector ignores leading and trailing underscores here (i.e. _$httpBackend_).
|
||||
// This allows us to inject a service but then attach it to a variable
|
||||
// with the same name as the service.
|
||||
beforeEach(inject(function($controller, $rootScope, _$location_, _$stateParams_, _$httpBackend_) {
|
||||
// Set a new global scope
|
||||
scope = $rootScope.$new();
|
||||
|
||||
// Point global variables to injected services
|
||||
$stateParams = _$stateParams_;
|
||||
$httpBackend = _$httpBackend_;
|
||||
$location = _$location_;
|
||||
|
||||
// Initialize the Authentication controller
|
||||
AuthenticationController = $controller('AuthenticationController', {
|
||||
$scope: scope
|
||||
});
|
||||
}));
|
||||
|
||||
|
||||
it('$scope.signin() should login with a correct user and password', function() {
|
||||
|
||||
// test expected GET request
|
||||
$httpBackend.when('POST','/auth/signin').respond(200, 'Fred');
|
||||
scope.signin();
|
||||
$httpBackend.flush();
|
||||
// test scope value
|
||||
expect(scope.authentication.user).toEqual('Fred');
|
||||
expect($location.url()).toEqual('/');
|
||||
});
|
||||
|
||||
it('$scope.signin() should fail to log in with nothing', function() {
|
||||
$httpBackend.expectPOST('/auth/signin').respond(400, {'message':'Missing credentials'});
|
||||
scope.signin();
|
||||
$httpBackend.flush();
|
||||
// test scope value
|
||||
expect(scope.error).toEqual('Missing credentials');
|
||||
});
|
||||
|
||||
it('$scope.signin() should fail to log in with wrong credentials', function() {
|
||||
// Foo/Bar combo assumed to not exist
|
||||
scope.authentication.user = 'Foo';
|
||||
scope.credentials = 'Bar';
|
||||
$httpBackend.expectPOST('/auth/signin').respond(400, {'message':'Unknown user'});
|
||||
scope.signin();
|
||||
$httpBackend.flush();
|
||||
// test scope value
|
||||
expect(scope.error).toEqual('Unknown user');
|
||||
});
|
||||
|
||||
it('$scope.signup() should register with correct data', function() {
|
||||
|
||||
// test expected GET request
|
||||
scope.authentication.user = 'Fred';
|
||||
$httpBackend.when('POST','/auth/signup').respond(200, 'Fred');
|
||||
scope.signup();
|
||||
$httpBackend.flush();
|
||||
// test scope value
|
||||
expect(scope.authentication.user).toBe('Fred');
|
||||
expect(scope.error).toEqual(undefined);
|
||||
expect($location.url()).toBe('/');
|
||||
});
|
||||
|
||||
it('$scope.signup() should fail to register with duplicate Username', function() {
|
||||
$httpBackend.when('POST','/auth/signup').respond(400, {'message': 'Username already exists'});
|
||||
scope.signup();
|
||||
$httpBackend.flush();
|
||||
// test scope value
|
||||
expect(scope.error).toBe('Username already exists');
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
}());
|
||||
Reference in New Issue
Block a user