4276ad364da05321798972ad6ca49549fe7cb2e2
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / policy / policy-type / policy-type.component.spec.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2021 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
21 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
22
23 import { PolicyTypeComponent } from './policy-type.component';
24 import { PolicyTypeDataSource } from './policy-type.datasource';
25 import { PolicyTypeSchema } from '../../interfaces/policy.types';
26
27 describe('PolicyTypeComponent', () => {
28   let component: PolicyTypeComponent;
29   let fixture: ComponentFixture<PolicyTypeComponent>;
30
31   beforeEach(async(() => {
32     const policyTypeDataSourceSpy = jasmine.createSpyObj('PolicyTypeDataSource', ['getPolicyType']);
33     const policyTypeSchema = {"schemaObject": {"description": "Type 1 policy type"}} as PolicyTypeSchema;
34     policyTypeDataSourceSpy.getPolicyType.and.returnValue(policyTypeSchema);
35
36     TestBed.configureTestingModule({
37       declarations: [ PolicyTypeComponent ],
38       providers: [
39         { provide: PolicyTypeDataSource, useValue: policyTypeDataSourceSpy }
40        ]
41     })
42     .compileComponents();
43   }));
44
45   beforeEach(() => {
46     fixture = TestBed.createComponent(PolicyTypeComponent);
47     component = fixture.componentInstance;
48     fixture.detectChanges();
49   });
50
51   it('should create', () => {
52     expect(component).toBeTruthy();
53   });
54 });