1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/model/network/autehentication.service.spec.ts

56 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-12-27 06:36:38 +08:00
import {inject, TestBed} from "@angular/core/testing";
import {UserService} from "./user.service";
2016-12-27 23:09:47 +08:00
import {UserDTO} from "../../../../common/entities/UserDTO";
import {Message} from "../../../../common/entities/Message";
2016-03-19 17:55:46 +08:00
import "rxjs/Rx";
import {LoginCredential} from "../../../../common/entities/LoginCredential";
2016-05-05 02:10:28 +08:00
import {AuthenticationService} from "./authentication.service";
2016-03-19 17:55:46 +08:00
class MockUserService {
public login(credential: LoginCredential) {
return Promise.resolve(new Message<UserDTO>(null, <UserDTO>{name: "testUserName"}))
}
public async getSessionUser() {
return null;
}
2016-03-19 17:55:46 +08:00
}
2016-05-05 03:08:05 +08:00
describe('AuthenticationService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [
{provide: UserService, useClass: MockUserService},
AuthenticationService]
2016-12-27 06:36:38 +08:00
});
});
it('should call UserDTO service login', inject([AuthenticationService, UserService], (authService, userService) => {
spyOn(userService, "login").and.callThrough();
2016-05-09 23:04:56 +08:00
expect(userService.login).not.toHaveBeenCalled();
authService.login();
expect(userService.login).toHaveBeenCalled();
}));
it('should have NO Authenticated use', inject([AuthenticationService], (authService) => {
expect(authService.getUser()).toBe(null);
expect(authService.isAuthenticated()).toBe(false);
}));
2016-05-05 04:20:54 +08:00
it('should have Authenticated use', inject([AuthenticationService], (authService) => {
spyOn(authService.OnUserChanged, "trigger").and.callThrough();
authService.login();
authService.OnUserChanged.on(() => {
expect(authService.OnUserChanged.trigger).toHaveBeenCalled();
expect(authService.getUser()).not.toBe(null);
expect(authService.isAuthenticated()).toBe(true);
});
2016-05-05 04:20:54 +08:00
}));
2016-05-05 04:20:54 +08:00
});