blob: 6885e79324a0003caa6ebb073f73c6af72a91d52 [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
86 test('Test logout method', async () => {
87 const flushPromises = () => new Promise(setImmediate);
88 const component = shallow(<LoopUI />)
89 const instance = component.instance();
90 instance.logout();
91 await flushPromises();
92 expect(component.state('userName')).toEqual("testUser");
93 })
94
95 test('Test loadLoop method refresh suc', async () => {
96 const historyMock = { push: jest.fn() };
97 LoopService.getLoop = jest.fn().mockImplementation(() => {
98 return Promise.resolve({
99 ok: true,
100 status: 200,
101 text: () => {}
102 });
103 });
104
105 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
106 return Promise.resolve({name: "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca"});
107 });
108
109 const flushPromises = () => new Promise(setImmediate);
110 const component = shallow(<LoopUI history={historyMock}/>)
111 const instance = component.instance();
112 instance.loadLoop("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
113
114 await flushPromises();
115
116 const resLoopCache = instance.getLoopCache();
117
118 expect(resLoopCache.getComponentStates()).toBeUndefined();
119 expect(component.state('loopName')).toEqual("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
120 })
121
122 test('Test loadLoop method refresh fail', async () => {
123 const historyMock = { push: jest.fn() };
124 LoopService.getLoop = jest.fn().mockImplementation(() => {
125 return Promise.resolve({
126 name: "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca",
127 "components": {
128 "POLICY": {
129 "componentState": {
130 "stateName": "UNKNOWN",
131 "description": "The policies defined have NOT yet been created on the policy engine"
132 }
133 },
134 "DCAE": {
135 "componentState": {
136 "stateName": "BLUEPRINT_DEPLOYED",
137 "description": "The DCAE blueprint has been found in the DCAE inventory but not yet instancianted for this loop"
138 }
139 }
140 }});
141 });
142
143 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
144 return Promise.reject({error: "whatever"});
145 });
146
147 const flushPromises = () => new Promise(setImmediate);
148 const component = shallow(<LoopUI history={historyMock}/>)
149 const instance = component.instance();
150 instance.loadLoop("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
151
152 await flushPromises();
153
154 const resLoopCache = instance.getLoopCache();
155
156 expect(resLoopCache).toEqual(loopCache);
157 expect(component.state('loopName')).toEqual("LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca");
158 })
159
160 test('Test alert methods', () => {
161 const component = shallow(<LoopUI />)
xuegaocc5fe512020-04-06 13:13:52 +0200162 expect(component.state('showSucAlert')).toEqual(false);
xuegao524b3642019-10-11 15:41:49 +0200163
164 const instance = component.instance();
xuegaocc5fe512020-04-06 13:13:52 +0200165 instance.showSucAlert("testAlert");
166 expect(component.state('showSucAlert')).toEqual(true);
167 expect(component.state('showFailAlert')).toEqual(false);
xuegao524b3642019-10-11 15:41:49 +0200168 expect(component.state('showMessage')).toEqual("testAlert");
169
170 instance.disableAlert();
171
xuegaocc5fe512020-04-06 13:13:52 +0200172 expect(component.state('showSucAlert')).toEqual(false);
173 expect(component.state('showFailAlert')).toEqual(false);
174
175 instance.showFailAlert("testAlert2");
176 expect(component.state('showSucAlert')).toEqual(false);
177 expect(component.state('showFailAlert')).toEqual(true);
178 expect(component.state('showMessage')).toEqual("testAlert2");
xuegao524b3642019-10-11 15:41:49 +0200179 })
180});