aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/vnfs/userlogin-form/userlogin-form.component.spec.ts
blob: 712d1bf278540116f78238d25c4f5c6b310add85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
============LICENSE_START==========================================
===================================================================
Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.

Modification 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.

ECOMP is a trademark and service mark of AT&T Intellectual Property.
============LICENSE_END============================================
*/

/* tslint:disable:no-unused-variable */
import { async, ComponentFixture, inject, TestBed } from '@angular/core/testing';
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { userloginFormComponent } from './userlogin-form.component';
import { FormsModule } from '@angular/forms';
import { NotificationService } from './../../shared/services/notification.service';
import { ParamShareService } from './../../shared/services/paramShare.service';
import { MappingEditorService } from './../../shared/services/mapping-editor.service';
import { DialogService } from 'ng2-bootstrap-modal';
import { RouterTestingModule } from '@angular/router/testing';
import { HttpUtilService } from '.././../shared/services/httpUtil/http-util.service';
import { UtilityService } from '.././../shared/services/utilityService/utility.service';
import { Router } from '@angular/router';
import {NotificationsService} from 'angular2-notifications';

describe('userloginFormComponent', () => {
    let component: userloginFormComponent;
    let fixture: ComponentFixture<userloginFormComponent>;
    let mockActiveRoute = {
        snapshot: {
          queryParams: {
            returnUrl: '/home',
          }
        }
     };
    beforeEach(async(() => {
        TestBed.configureTestingModule({
            declarations: [userloginFormComponent],
            schemas: [NO_ERRORS_SCHEMA],
            imports: [FormsModule, RouterTestingModule,],
            providers: [UtilityService, ParamShareService, DialogService,NotificationsService, HttpUtilService, MappingEditorService,
                {provide: ActivatedRoute, useValue: mockActiveRoute}, 
                { provide: Router, useClass: MockRouter }]
        })
            .compileComponents();
    }));
    beforeEach(() => {
        fixture = TestBed.createComponent(userloginFormComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
        // localStorage['userId'] = "testUser"
        component.userId = 'test Usr';
    });

    class MockRouter {
        navigateByUrl(url: string) {
            return url;
        }

        navigate(url: string) {
            return url;
        }
    }
    class MockUtility {
        randomId() {
            return 123;
        }
    }
    it('should create', () => {
        expect(component).toBeTruthy();
    });
    it('get the user Id', () => {
        component.getData();
        expect(localStorage.userId).toEqual('test Usr');
    });

    it('should route to myvnfform', inject([Router], (router: Router) => {
        const spy = spyOn(router, 'navigateByUrl');
        component.getData();
        const url = spy.calls.first().args[0];

        // return url is set to '/home' in mockActiveRoute.
        expect(url.length).toBe(5);
        expect(url[0]).toEqual('/');
        expect(url[1]).toEqual('h');
        expect(localStorage['userId']).toBe('test Usr');
    }));

    it('test validateUserName function', () => {
        component.userId = '';
        component.validateUserName();
        expect(component.errorMessage).toEqual('');
        expect(component.invalid).toEqual(true);
    });

});