blob: bfd6376e3f39d4614f1ad65148bf9820372fdd13 [file] [log] [blame]
xuegao524b3642019-10-11 15:41:49 +02001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
6 * reserved.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END============================================
20 * ===================================================================
21 *
22 */
23import React from 'react';
24import { shallow } from 'enzyme';
25import LoopUI from './LoopUI';
Ted Humphrey01e5fde2020-01-27 18:57:39 -050026import OnapConstants from './utils/OnapConstants';
xuegao524b3642019-10-11 15:41:49 +020027
28import LoopCache from './api/LoopCache';
29import LoopActionService from './api/LoopActionService';
30import LoopService from './api/LoopService';
31
32describe('Verify LoopUI', () => {
33 beforeEach(() => {
34 fetch.resetMocks();
35 fetch.mockImplementation(() => {
36 return Promise.resolve({
37 ok: true,
38 status: 200,
39 text: () => "testUser"
40
41 });
42 });
43 })
44
45 const loopCache = new LoopCache({
46 "name": "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca",
47 "components": {
48 "POLICY": {
49 "componentState": {
50 "stateName": "UNKNOWN",
51 "description": "The policies defined have NOT yet been created on the policy engine"
52 }
53 },
54 "DCAE": {
55 "componentState": {
56 "stateName": "BLUEPRINT_DEPLOYED",
57 "description": "The DCAE blueprint has been found in the DCAE inventory but not yet instancianted for this loop"
58 }
59 }
60 }
61 });
62
63 it('Test the render method', async () => {
64 const flushPromises = () => new Promise(setImmediate);
65
66 const component = shallow(<LoopUI />)
67 component.setState({
68 loopName: "testLoopName",
xuegaocc5fe512020-04-06 13:13:52 +020069 showSucAlert: false,
70 showFailAlert: false
xuegao524b3642019-10-11 15:41:49 +020071 });
72 await flushPromises();
73 expect(component).toMatchSnapshot();
74 });
75
76 test('Test closeLoop method', () => {
77 const historyMock = { push: jest.fn() };
78 const component = shallow(<LoopUI history={historyMock}/>)
79 const instance = component.instance();
80 instance.closeLoop();
81
Ted Humphrey01e5fde2020-01-27 18:57:39 -050082 expect(component.state('loopName')).toEqual(OnapConstants.defaultLoopName);
xuegao524b3642019-10-11 15:41:49 +020083 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
84 })
85
xuegao524b3642019-10-11 15:41:49 +020086 test('Test loadLoop method refresh suc', async () => {
87 const historyMock = { push: jest.fn() };
88 LoopService.getLoop = jest.fn().mockImplementation(() => {
89 return Promise.resolve({
90 ok: true,
91 status: 200,
92 text: () => {}
93 });
94 });
95
96 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
97 return Promise.resolve({name: "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca"});
98 });
99
100 const flushPromises = () => new Promise(setImmediate);
101 const component = shallow(<LoopUI history={historyMock}/>)
102 const instance = component.instance();
103 instance.loadLoop("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
104
105 await flushPromises();
106
107 const resLoopCache = instance.getLoopCache();
108
109 expect(resLoopCache.getComponentStates()).toBeUndefined();
110 expect(component.state('loopName')).toEqual("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
111 })
112
113 test('Test loadLoop method refresh fail', async () => {
114 const historyMock = { push: jest.fn() };
115 LoopService.getLoop = jest.fn().mockImplementation(() => {
116 return Promise.resolve({
117 name: "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca",
118 "components": {
119 "POLICY": {
120 "componentState": {
121 "stateName": "UNKNOWN",
122 "description": "The policies defined have NOT yet been created on the policy engine"
123 }
124 },
125 "DCAE": {
126 "componentState": {
127 "stateName": "BLUEPRINT_DEPLOYED",
128 "description": "The DCAE blueprint has been found in the DCAE inventory but not yet instancianted for this loop"
129 }
130 }
131 }});
132 });
133
134 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
135 return Promise.reject({error: "whatever"});
136 });
137
138 const flushPromises = () => new Promise(setImmediate);
139 const component = shallow(<LoopUI history={historyMock}/>)
140 const instance = component.instance();
141 instance.loadLoop("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
142
143 await flushPromises();
144
145 const resLoopCache = instance.getLoopCache();
146
147 expect(resLoopCache).toEqual(loopCache);
148 expect(component.state('loopName')).toEqual("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
149 })
150
151 test('Test alert methods', () => {
152 const component = shallow(<LoopUI />)
xuegaocc5fe512020-04-06 13:13:52 +0200153 expect(component.state('showSucAlert')).toEqual(false);
xuegao524b3642019-10-11 15:41:49 +0200154
155 const instance = component.instance();
xuegaocc5fe512020-04-06 13:13:52 +0200156 instance.showSucAlert("testAlert");
157 expect(component.state('showSucAlert')).toEqual(true);
158 expect(component.state('showFailAlert')).toEqual(false);
xuegao524b3642019-10-11 15:41:49 +0200159 expect(component.state('showMessage')).toEqual("testAlert");
160
161 instance.disableAlert();
162
xuegaocc5fe512020-04-06 13:13:52 +0200163 expect(component.state('showSucAlert')).toEqual(false);
164 expect(component.state('showFailAlert')).toEqual(false);
165
166 instance.showFailAlert("testAlert2");
167 expect(component.state('showSucAlert')).toEqual(false);
168 expect(component.state('showFailAlert')).toEqual(true);
169 expect(component.state('showMessage')).toEqual("testAlert2");
xuegao524b3642019-10-11 15:41:49 +0200170 })
171});