ee20509e5a02055f2fef30643d2c73576f517098
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / services / policy / policy.service.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 import { TestBed } from '@angular/core/testing';
21
22 import { PolicyService } from './policy.service';
23 import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing'
24 import { PolicyInstance, PolicyTypes } from '../../interfaces/policy.types';
25
26 describe('PolicyService', () => {
27   let apiVersion2 = 'v2'
28   let basePath = '';
29   let policyService: PolicyService;
30   let httpTestingController: HttpTestingController;
31   beforeEach(() => TestBed.configureTestingModule({
32     imports: [HttpClientTestingModule],
33     providers: [
34       PolicyService
35     ],
36   }));
37
38   afterEach(() => {
39     httpTestingController.verify();
40   });
41
42   describe('#getPolicyTypes', () => {
43     let expectedPolicytypes: PolicyTypes;
44     let emptyPolicyType: PolicyTypes;
45
46     beforeEach(() => {
47       policyService = TestBed.get(PolicyService);
48       httpTestingController = TestBed.get(HttpTestingController);
49       expectedPolicytypes = {
50         "policytype_ids": [
51           "",
52           "1"
53         ]
54       } as PolicyTypes;
55     });
56     //Policy Type Test Case 1:
57     it('should return all policy types', () => {
58       policyService.getPolicyTypes().subscribe(
59         policytypes => expect(policytypes).toEqual(expectedPolicytypes, 'should return expected PolicyTypes'),
60         fail
61       );
62       
63       const req = httpTestingController.expectOne(basePath + apiVersion2 + '/' + policyService.policyTypesPath);
64       expect(req.request.method).toEqual('GET');
65
66       req.flush(expectedPolicytypes);
67     });
68
69     //Policy Type Test Case 2:
70     emptyPolicyType = {
71       "policytype_ids": [
72       ]
73     } as PolicyTypes;
74     it('should return no policy types', () => {
75       policyService.getPolicyTypes().subscribe(
76         policytypes => expect(policytypes).toEqual(emptyPolicyType, 'should return empty array of Policy Types'),
77         fail
78       );
79
80       const req = httpTestingController.expectOne(basePath + apiVersion2 + '/' + policyService.policyTypesPath);
81       req.flush(emptyPolicyType); //Return empty data
82     });
83   });
84   describe('#getPolicyInstance', () => {
85     let expectedPolicyInstances: PolicyInstance[];
86     let policyTypeId: string;
87     beforeEach(() => {
88       policyService = TestBed.get(PolicyService);
89       httpTestingController = TestBed.get(HttpTestingController);
90       expectedPolicyInstances = [
91         { id: '2000', json: '{"scope": {"ueId": "ue3100","qosId": "qos3100"},"qosObjectives": {"priorityLevel": 3100}}', service: 'service1', lastModified: '2020-12-08T21:12:43.719084Z' }
92       ] as PolicyInstance[];
93       policyTypeId = "1";
94     });
95     //Policy Instances Test Case 1:
96     it('should return all policy instances', () => {
97       policyService.getPolicyInstances(policyTypeId).subscribe(
98         policyinstances => expect(policyinstances).toEqual(expectedPolicyInstances, 'should return expected Policy Instances'),
99         fail
100       );
101       const req = httpTestingController.expectOne(basePath + apiVersion2 + '/' + policyService.policyPath + '?type=' + policyTypeId);
102       expect(req.request.method).toEqual('GET');
103       req.flush(expectedPolicyInstances);
104     });
105
106     //Policy Instances Test Case 2:
107     it('should return no policy instances', () => {
108       policyService.getPolicyInstances(policyTypeId).subscribe(
109         policyinstances => expect(policyinstances.length).toEqual(0, 'should return empty array of Policy Instances'),
110         fail
111       );
112       const req = httpTestingController.expectOne(basePath + apiVersion2 + '/' + policyService.policyPath + '?type=' + policyTypeId);
113       req.flush([]); //Return empty data
114     });
115   });
116 });