aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/about-us/aboutus.component.spec.ts
blob: 4df03161c038a2b579ac1165a8f17b08d9aa1c75 (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
/*
============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.

============LICENSE_END============================================
*/

import { async, ComponentFixture, TestBed, inject, tick, fakeAsync } from '@angular/core/testing';
import { Http, HttpModule, ConnectionBackend, BaseRequestOptions, Response, ResponseOptions } from '@angular/http';
import { MockBackend } from '@angular/http/testing';
import { ModalDismissReasons, NgbModule, NgbModal } from '@ng-bootstrap/ng-bootstrap';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/observable/from';
import 'rxjs/add/observable/empty';
import 'rxjs/add/observable/of';
import { SimpleNotificationsModule, NotificationsService } from 'angular2-notifications';
import { DialogService } from 'ng2-bootstrap-modal';
import {UtilityService} from '../shared/services/utilityService/utility.service';


import { AboutUsComponent } from './aboutus.component';

class MockService {
    doStuff() {
        return this;
    }
    get() {
        return Observable.of(new Response(
            new ResponseOptions({
                body: "some data"
              }
            )));
    }
}

describe('ContacUsComponent', () => {
    let component: AboutUsComponent;
    let fixture: ComponentFixture<AboutUsComponent>;

    beforeEach(async(() => {
        let http = new MockService();

        TestBed.configureTestingModule({
            declarations: [AboutUsComponent],
            imports: [HttpModule, NgbModule.forRoot(), SimpleNotificationsModule.forRoot()],
            providers: [NgbModule, DialogService, UtilityService, {
                provide: Http, useFactory: (backend: ConnectionBackend, defaultOptions: BaseRequestOptions) => {
                    return new Http(backend, defaultOptions);
                }, deps: [MockBackend, BaseRequestOptions]
            },
                { provide: MockBackend, useClass: MockBackend },
                { provide: BaseRequestOptions, useClass: BaseRequestOptions },
                { provide: Http, useValue: http }]
        }).compileComponents();
    }));

    beforeEach(() => {
        fixture = TestBed.createComponent(AboutUsComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
    });

    it('should create', () => {
        expect(component).toBeTruthy();
    });

    it('should open modal', inject([NgbModule, Http], (ngbModule: NgbModule, http: Http) => {
        let content = 'test';
        // component.open(content);
        component.versionLogFile().subscribe((data) => {
            expect(data.text()).toBe('some data');
        });
    }));

    it('should download log file', () => {
        var blob = new Blob(['test'], {
            type: 'text/plain;charset=utf-8'
        });
        component.downloadLogFile();
    });

    it('should test tlPlus function', inject([UtilityService], (utilService: UtilityService) => {
        let spy1 = spyOn(UtilityService.prototype, 'getTracelvl');
        component.tlPlus();
        expect(spy1).toHaveBeenCalled();
    }));

    it('should test tlMinus function', inject([UtilityService], (utilService: UtilityService) => {
        let spy1 = spyOn(UtilityService.prototype, 'getTracelvl');
        component.tlMinus();
        expect(spy1).toHaveBeenCalled();
    }));
});