4109dbd9359efacc2380220bb944933555f14b0e
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / policy / policy-control.component.spec.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 import { async, ComponentFixture, TestBed } from "@angular/core/testing";
21 import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
22 import { By } from "@angular/platform-browser";
23 import { MatIconModule } from "@angular/material/icon";
24 import { MatTableModule } from "@angular/material/table";
25 import { CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
26 import { of } from "rxjs";
27
28 import { PolicyControlComponent } from "./policy-control.component";
29 import { PolicyTypes } from "@interfaces/policy.types";
30 import { PolicyService } from "@services/policy/policy.service";
31 import { MockComponent } from "ng-mocks";
32 import { PolicyTypeComponent } from "./policy-type/policy-type.component";
33 import { MatButtonHarness } from '@angular/material/button/testing';
34 import { HarnessLoader } from '@angular/cdk/testing';
35 import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';
36
37 describe("PolicyControlComponent", () => {
38   let component: PolicyControlComponent;
39   let fixture: ComponentFixture<PolicyControlComponent>;
40   let loader: HarnessLoader;
41
42   beforeEach(async(() => {
43     const policyServiceSpy = jasmine.createSpyObj("PolicyService", [
44       "getPolicyTypes",
45     ]);
46     const policyTypes = { policytype_ids: ["type1", "type2"] } as PolicyTypes;
47     policyServiceSpy.getPolicyTypes.and.returnValue(of(policyTypes));
48
49     TestBed.configureTestingModule({
50       imports: [MatIconModule, MatTableModule, BrowserAnimationsModule],
51       schemas: [CUSTOM_ELEMENTS_SCHEMA],
52       declarations: [
53         PolicyControlComponent,
54         MockComponent(PolicyTypeComponent),
55       ],
56       providers: [{ provide: PolicyService, useValue: policyServiceSpy }],
57     }).compileComponents();
58   }));
59
60   beforeEach(() => {
61     fixture = TestBed.createComponent(PolicyControlComponent);
62     component = fixture.componentInstance;
63     fixture.detectChanges();
64     loader = TestbedHarnessEnvironment.loader(fixture);
65   });
66
67   it("should create", () => {
68     expect(component).toBeTruthy();
69   });
70
71   it("should contain two PolicyType components instantiated with the correct type", () => {
72     const typeComponents: PolicyTypeComponent[] = fixture.debugElement
73       .queryAll(By.directive(PolicyTypeComponent))
74       .map((component) => component.componentInstance);
75
76     expect(typeComponents.length).toEqual(2);
77     expect(typeComponents[0].policyTypeId).toEqual("type1");
78     expect(typeComponents[1].policyTypeId).toEqual("type2");
79   });
80
81   /*it("should reload when clicking on refresh button", async () => {
82     let refreshButton: MatButtonHarness = await loader.getHarness(
83       MatButtonHarness.with({ selector: "#refreshButton" })
84     );
85
86   })*/
87 });