This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(addtests): add auth service tests
- Loading branch information
1 parent
8523845
commit bfb0fcc
Showing
1 changed file
with
157 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,159 @@ | ||
describe('Authentication service', () => { | ||
it ('authentication service test', function () { | ||
expect(1).toBe(1); | ||
|
||
import { inject, TestBed } from '@angular/core/testing'; | ||
import { BaseRequestOptions, Http, Response, ResponseOptions } from '@angular/http'; | ||
import { MockBackend } from '@angular/http/testing'; | ||
|
||
import { Broadcaster } from 'ngx-base'; | ||
|
||
import { SSO_API_URL } from '../shared/sso-api'; | ||
import { AuthenticationService } from './authentication.service'; | ||
import { AUTH_API_URL } from '../shared/auth-api'; | ||
|
||
describe('Service: Authentication service', () => { | ||
|
||
let mockService: MockBackend; | ||
let authenticationService: AuthenticationService; | ||
let broadcaster: Broadcaster; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
providers: [ | ||
BaseRequestOptions, | ||
AuthenticationService, | ||
MockBackend, | ||
{ | ||
provide: Http, | ||
useFactory: (backend: MockBackend, | ||
options: BaseRequestOptions) => new Http(backend, options), | ||
deps: [MockBackend, BaseRequestOptions] | ||
}, | ||
{ | ||
provide: AUTH_API_URL, | ||
useValue: "http://example.com" | ||
}, | ||
{ | ||
provide: SSO_API_URL, | ||
useValue: 'http://example.com/auth' | ||
}, | ||
Broadcaster | ||
] | ||
}); | ||
}); | ||
|
||
beforeEach(inject( | ||
[AuthenticationService, MockBackend, Broadcaster], | ||
(service: AuthenticationService, mock: MockBackend, broadcast: Broadcaster) => { | ||
authenticationService = service; | ||
mockService = mock; | ||
broadcaster = broadcast; | ||
} | ||
)); | ||
|
||
afterEach(() => { | ||
authenticationService.clearOpenShiftToken(); | ||
authenticationService.logout(); | ||
}); | ||
|
||
let tokenJson = `{"access_token":"token","expires_in":1800,"refresh_expires_in":1800,"refresh_token":"refresh","token_type":"bearer"}`; | ||
|
||
it('Can log on', (done) => { | ||
spyOn(authenticationService, 'setupRefreshTimer'); | ||
|
||
broadcaster.on('loggedin').subscribe((data: number) => { | ||
expect(data).toBe(1); | ||
let token = JSON.parse(tokenJson); | ||
expect(authenticationService.setupRefreshTimer).toHaveBeenCalledWith(token.expires_in); | ||
expect(localStorage.getItem('auth_token')).toBe(token.access_token); | ||
expect(localStorage.getItem('refresh_token')).toBe(token.refresh_token); | ||
done(); | ||
}); | ||
authenticationService.logIn(tokenJson); | ||
}); | ||
|
||
it('Retrieves token', (done) => { | ||
spyOn(authenticationService, 'setupRefreshTimer'); | ||
|
||
broadcaster.on('loggedin').subscribe((data: number) => { | ||
let token = JSON.parse(tokenJson); | ||
expect(authenticationService.getToken()).toBe(token.access_token); | ||
done(); | ||
}); | ||
authenticationService.logIn(tokenJson); | ||
}); | ||
|
||
it('Can log out', (done) => { | ||
spyOn(authenticationService, 'setupRefreshTimer'); | ||
|
||
broadcaster.on('loggedin').subscribe(() => { | ||
let token = JSON.parse(tokenJson); | ||
expect(localStorage.getItem('auth_token')).toBe(token.access_token); | ||
expect(localStorage.getItem('refresh_token')).toBe(token.refresh_token); | ||
// log off here | ||
authenticationService.logout(); | ||
}); | ||
|
||
broadcaster.on('logout').subscribe(() => { | ||
expect(localStorage.getItem('auth_token')).toBeNull(); | ||
expect(localStorage.getItem('refresh_token')).toBeNull(); | ||
done(); | ||
}); | ||
|
||
authenticationService.logIn(tokenJson); | ||
}); | ||
|
||
it('Refresh token processing', (done) => { | ||
mockService.connections.subscribe((connection: any) => { | ||
connection.mockRespond(new Response( | ||
new ResponseOptions({ | ||
body: JSON.stringify({token: tokenJson}), | ||
status: 201 | ||
}) | ||
)); | ||
}); | ||
spyOn(authenticationService, 'setupRefreshTimer'); | ||
|
||
broadcaster.on('loggedin').subscribe((data: number) => { | ||
let token = JSON.parse(tokenJson); | ||
expect(authenticationService.setupRefreshTimer).toHaveBeenCalledWith(token.expires_in); | ||
spyOn(authenticationService, 'processTokenResponse').and.callThrough(); | ||
authenticationService.refreshToken(); | ||
expect(authenticationService.processTokenResponse).toHaveBeenCalled(); | ||
done(); | ||
}); | ||
|
||
authenticationService.logIn(tokenJson); | ||
}); | ||
|
||
it('Openshift token processing', (done) => { | ||
mockService.connections.subscribe((connection: any) => { | ||
connection.mockRespond(new Response( | ||
new ResponseOptions({ | ||
body: tokenJson, | ||
status: 201 | ||
}) | ||
)); | ||
}); | ||
spyOn(authenticationService, 'setupRefreshTimer'); | ||
|
||
broadcaster.on('loggedin').subscribe((data: number) => { | ||
let token = JSON.parse(tokenJson); | ||
authenticationService.getOpenShiftToken().subscribe(output => { | ||
expect(output == token.access_token); | ||
expect(localStorage.getItem('openshift_token')).toBe(token.access_token); | ||
authenticationService.clearOpenShiftToken(); | ||
done(); | ||
}); | ||
}); | ||
|
||
authenticationService.logIn(tokenJson); | ||
}); | ||
// | ||
|
||
it('Openshift token processing - not logged in', (done) => { | ||
authenticationService.getOpenShiftToken().subscribe(output => { | ||
expect(output == ''); | ||
expect(localStorage.getItem('openshift_token')).toBeNull(); | ||
done(); | ||
}); | ||
}); | ||
}); |