mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Enable OAUTH2 * Create SSO services * SSO improvements * Rollback sso login change * Add SSO configuration from Setting component * Refactoring * Remove login ECM/BPM toggle and move use the userpreference instead of store * fix host setting unit test * Fix unit test missing instance * use the Js api oauth * add logout component and clean sso not used class * fix dependencies cicle * add translation settings * fix style setting page * clean * JS APi should receive the oauth config from the userPreference and not from the config file * change login if SSO is present * missing spaces * add sso test in login component * add logout directive new properties test * Improve host setting and remove library reference * fix login test * Remove unused code * Fix authentication unit test * fix authguard unit test * fix csrf check login component * fix unit test core and demo shell * remove
175 lines
5.6 KiB
TypeScript
175 lines
5.6 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { Component, ContentChildren } from '@angular/core';
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { Router } from '@angular/router';
|
|
import { RouterTestingModule } from '@angular/router/testing';
|
|
import { Observable } from 'rxjs/Observable';
|
|
import { AuthenticationService } from '../services';
|
|
import { setupTestBed } from '../testing/setupTestBed';
|
|
import { CoreModule } from '../core.module';
|
|
import { LogoutDirective } from './logout.directive';
|
|
|
|
describe('LogoutDirective', () => {
|
|
|
|
describe('No input', () => {
|
|
|
|
@Component({
|
|
selector: 'adf-test-component',
|
|
template: '<button adf-logout></button>'
|
|
})
|
|
class TestComponent {
|
|
@ContentChildren(LogoutDirective)
|
|
logoutDirective: LogoutDirective;
|
|
}
|
|
|
|
let fixture: ComponentFixture<TestComponent>;
|
|
let router: Router;
|
|
let authService: AuthenticationService;
|
|
|
|
setupTestBed({
|
|
imports: [
|
|
CoreModule.forRoot(),
|
|
RouterTestingModule
|
|
],
|
|
declarations: [
|
|
TestComponent
|
|
]
|
|
});
|
|
|
|
beforeEach(() => {
|
|
router = TestBed.get(Router);
|
|
authService = TestBed.get(AuthenticationService);
|
|
fixture = TestBed.createComponent(TestComponent);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should redirect to login on click', () => {
|
|
spyOn(router, 'navigate').and.callThrough();
|
|
spyOn(authService, 'logout').and.returnValue(Observable.of(true));
|
|
|
|
const button = fixture.nativeElement.querySelector('button');
|
|
button.click();
|
|
|
|
expect(authService.logout).toHaveBeenCalled();
|
|
expect(router.navigate).toHaveBeenCalledWith(['/login']);
|
|
});
|
|
|
|
it('should redirect to login even on logout error', () => {
|
|
spyOn(router, 'navigate').and.callThrough();
|
|
spyOn(authService, 'logout').and.returnValue(Observable.throw('err'));
|
|
|
|
const button = fixture.nativeElement.querySelector('button');
|
|
button.click();
|
|
|
|
expect(authService.logout).toHaveBeenCalled();
|
|
expect(router.navigate).toHaveBeenCalledWith(['/login']);
|
|
});
|
|
|
|
});
|
|
|
|
describe('redirectUri', () => {
|
|
|
|
@Component({
|
|
selector: 'adf-test-component',
|
|
template: '<button adf-logout redirectUri="/myCustomUri"></button>'
|
|
})
|
|
class TestComponent {
|
|
@ContentChildren(LogoutDirective)
|
|
logoutDirective: LogoutDirective;
|
|
}
|
|
|
|
let fixture: ComponentFixture<TestComponent>;
|
|
let router: Router;
|
|
let authService: AuthenticationService;
|
|
|
|
setupTestBed({
|
|
imports: [
|
|
CoreModule.forRoot(),
|
|
RouterTestingModule
|
|
],
|
|
declarations: [
|
|
TestComponent
|
|
]
|
|
});
|
|
|
|
beforeEach(() => {
|
|
router = TestBed.get(Router);
|
|
authService = TestBed.get(AuthenticationService);
|
|
fixture = TestBed.createComponent(TestComponent);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should redirect to the the input redirectUri on click if present', () => {
|
|
spyOn(router, 'navigate').and.callThrough();
|
|
spyOn(authService, 'logout').and.returnValue(Observable.of(true));
|
|
|
|
const button = fixture.nativeElement.querySelector('button');
|
|
button.click();
|
|
|
|
expect(authService.logout).toHaveBeenCalled();
|
|
expect(router.navigate).toHaveBeenCalledWith(['/myCustomUri']);
|
|
});
|
|
|
|
});
|
|
|
|
describe('redirectUri', () => {
|
|
|
|
@Component({
|
|
selector: 'adf-test-component',
|
|
template: '<button adf-logout [enabelRedirect]="false"></button>'
|
|
})
|
|
class TestComponent {
|
|
@ContentChildren(LogoutDirective)
|
|
logoutDirective: LogoutDirective;
|
|
}
|
|
|
|
let fixture: ComponentFixture<TestComponent>;
|
|
let router: Router;
|
|
let authService: AuthenticationService;
|
|
|
|
setupTestBed({
|
|
imports: [
|
|
CoreModule.forRoot(),
|
|
RouterTestingModule
|
|
],
|
|
declarations: [
|
|
TestComponent
|
|
]
|
|
});
|
|
|
|
beforeEach(() => {
|
|
router = TestBed.get(Router);
|
|
authService = TestBed.get(AuthenticationService);
|
|
fixture = TestBed.createComponent(TestComponent);
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should not redirect if enabelRedirect is false', () => {
|
|
spyOn(router, 'navigate').and.callThrough();
|
|
spyOn(authService, 'logout').and.returnValue(Observable.of(true));
|
|
const button = fixture.nativeElement.querySelector('button');
|
|
button.click();
|
|
|
|
expect(authService.logout).toHaveBeenCalled();
|
|
expect(router.navigate).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
});
|