From 616ade017493190d288638060d6269ff23ca5c48 Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Thu, 2 Aug 2018 14:29:21 +0530 Subject: Added spec file for gcauth guard service Wrote test cases to cover gcauth guard service Issue-ID: APPC-1064 Change-Id: Iaa01bc22b1fdb52f0cecb7b6c20502c8f6f05a14 Signed-off-by: Arundathi Patil --- src/app/vnfs/GCAuthGuard/gcauth.guard.spec.ts | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/app/vnfs/GCAuthGuard/gcauth.guard.spec.ts diff --git a/src/app/vnfs/GCAuthGuard/gcauth.guard.spec.ts b/src/app/vnfs/GCAuthGuard/gcauth.guard.spec.ts new file mode 100644 index 0000000..11b3902 --- /dev/null +++ b/src/app/vnfs/GCAuthGuard/gcauth.guard.spec.ts @@ -0,0 +1,62 @@ +/* +============LICENSE_START========================================== +=================================================================== +Copyright (C) 2018 IBM. +=================================================================== + +Unless otherwise specified, all software contained herein is licensed +under the Apache License, Version 2.0 (the License); +you may not use this software 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. +============LICENSE_END============================================ +*/ + +import { async, TestBed, inject } from '@angular/core/testing'; +import { Router, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router'; +import {FormsModule} from '@angular/forms'; +import {HttpModule} from '@angular/http'; +import {CommonModule} from '@angular/common'; +import 'rxjs/Rx'; +import 'rxjs/add/observable/throw'; +import 'rxjs/add/operator/map'; +import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; +import { GCAuthGuardService } from './gcauth-guard.service'; +import {MappingEditorService} from '../../shared/services/mapping-editor.service'; +import { promise } from 'protractor'; + +fdescribe('LogginGuard', () => { + let routerMock = { + navigate: jasmine.createSpy('navigate') + }; + let loggedInGuard: GCAuthGuardService; + + beforeEach(() => { + TestBed.configureTestingModule({ + imports: [FormsModule, CommonModule, HttpModule, NgbModule.forRoot()], + providers: [GCAuthGuardService, MappingEditorService, {provide: Router, useValue: routerMock}] + }); + TestBed.compileComponents(); + }); + + beforeEach(() => { + loggedInGuard = TestBed.get(GCAuthGuardService); + }); + + it('be able to hit route when user is logged in', inject([GCAuthGuardService, MappingEditorService], (service: GCAuthGuardService, mapService: MappingEditorService) => { + localStorage['userId'] = 'abc@xyz.com'; + mapService.referenceNameObjects = { data : 'data'}; + let route : ActivatedRouteSnapshot; + let state: RouterStateSnapshot; + service.canActivate(route, state).then((value)=>{ + expect(value).toBe(true); + }) + })); +}); -- cgit 1.2.3-korg