Fixed sonar version related issue
[portal.git] / portal-FE-common / src / app / pages / widget-onboarding / widget-onboarding.component.spec.ts
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * 
37  */
38 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
39
40 import { WidgetOnboardingComponent } from './widget-onboarding.component';
41 import { HttpClientTestingModule } from '@angular/common/http/testing';
42 import { FormsModule } from '@angular/forms';
43 import { NgMaterialModule } from 'src/app/ng-material-module';
44 import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
45 import { WidgetOnboardingService } from 'src/app/shared/services/widget-onboarding/widget-onboarding.service';
46 import { Observable } from 'rxjs';
47 import { HttpClientModule } from '@angular/common/http';
48
49 describe('WidgetOnboardingComponent', () => {
50   let component: WidgetOnboardingComponent;
51   let fixture: ComponentFixture<WidgetOnboardingComponent>;
52   let widgetList = [{"id" :"1",
53     "name":"ONAP-A",
54     "desc" :"desc",
55     "fileLocation" : "fileLocation",
56     "allowAllUser" : "allowAllUser",
57     "serviceId" : "serviceId",
58     "serviceURL" : "serviceURL",
59     "sortOrder" : "sortOrder",
60     "statusCode" : "statusCode",
61     "widgetRoles": "widgetRoles",
62     "appContent" : "appContent",
63     "appName" : "appName",
64     "file"  : "file",
65     "allUser": false,
66     "saving": "saving"},{"id" :"1",
67     "name":"ONAP-B",
68     "desc" :"desc",
69     "fileLocation" : "fileLocation",
70     "allowAllUser" : "allowAllUser",
71     "serviceId" : "serviceId",
72     "serviceURL" : "serviceURL",
73     "sortOrder" : "sortOrder",
74     "statusCode" : "statusCode",
75     "widgetRoles": "widgetRoles",
76     "appContent" : "appContent",
77     "appName" : "appName",
78     "file"  : "file",
79     "allUser": false,
80     "saving": "saving"}]
81
82
83   beforeEach(async(() => {
84     let widgetOnboardingService: WidgetOnboardingService;
85     
86    // widgetOnboardingService = jasmine.createSpyObj('WidgetOnboardingService', ['getManagedWidgets']);
87     //widgetOnboardingService.getManagedWidgets.and.returnValue(Observable.of(widgetList));
88     TestBed.configureTestingModule({
89       declarations: [ WidgetOnboardingComponent ],
90       imports:[HttpClientModule,FormsModule,NgMaterialModule,BrowserAnimationsModule],
91       providers:[WidgetOnboardingService]
92     })
93     .compileComponents();
94
95
96     widgetOnboardingService = TestBed.get(WidgetOnboardingService);
97     spyOn(widgetOnboardingService, 'getManagedWidgets').and.returnValue(Observable.of(widgetList));
98   }));
99
100   beforeEach(() => {
101     fixture = TestBed.createComponent(WidgetOnboardingComponent);
102     component = fixture.componentInstance;
103     fixture.detectChanges();
104   });
105
106   
107
108   it('should create', () => {
109     expect(component).toBeTruthy();
110   });
111   it('getOnboardingWidgets should return stubbed value', () => {
112     spyOn(component, 'getOnboardingWidgets').and.callThrough();
113     component.getOnboardingWidgets();
114     expect(component.getOnboardingWidgets).toHaveBeenCalledWith();
115   });
116 });