blob: 0a461f2f629b9543b1ee027b91cad120527f7e4e [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import { AuthGuard } from '@shared/guards/auth.guard';
describe('AuthGuard', () => {
let component: AuthGuard;
let router: any;
beforeEach(() => {
router = {
navigate() {},
} as any;
component = new AuthGuard(router);
});
it('should create', () => {
expect(component).toBeTruthy();
});
it('should call checkLogin if call canActivate', () => {
const route = {} as any;
const state = {url: 'test.url'} as any;
const spy = spyOn(component, 'checkLogin');
component.canActivate(route, state);
expect(spy).toHaveBeenCalledWith(state.url);
});
});