b833a929d7a559a8ee8ec71356ada1323b56fd9b
[clamp.git] / ui-react / src / components / dialogs / PerformActions.test.js
1 /*-
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  */
23 import React from 'react';
24 import { shallow } from 'enzyme';
25 import PerformActions from './PerformActions';
26 import LoopCache from '../../api/LoopCache';
27 import LoopActionService from '../../api/LoopActionService';
28
29 describe('Verify PerformActions', () => {
30
31         const loopCache = new LoopCache({
32                 "name": "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca"
33         });
34
35         it('Test the render method action failed', async () => {
36                 const flushPromises = () => new Promise(setImmediate);
37                 const historyMock = { push: jest.fn() };
38                 const updateLoopFunction = jest.fn();
39                 const showSucAlert = jest.fn();
40                 const showFailAlert = jest.fn();
41                 
42                 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
43                         return Promise.resolve({
44                                 ok: true,
45                                 status: 200,
46                                 json: () => {}
47                         });
48                 });
49                 const component = shallow(<PerformActions loopCache={loopCache} 
50                                         loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showSucAlert={showSucAlert} showFailAlert={showFailAlert} />)
51                 await flushPromises();
52                 component.update();
53
54                 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
55         });
56
57         it('Test the render method action successful', async () => {
58                 const flushPromises = () => new Promise(setImmediate);
59                 const historyMock = { push: jest.fn() };
60                 const updateLoopFunction = jest.fn();
61                 const showSucAlert = jest.fn();
62                 const showFailAlert = jest.fn();
63
64                 LoopActionService.performAction = jest.fn().mockImplementation(() => {
65                         return Promise.resolve({
66                                 ok: true,
67                                 status: 200,
68                                 json: () => {}
69                         });
70                 });             
71                 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
72                         return Promise.resolve({
73                                 ok: true,
74                                 status: 200,
75                                 json: () => {}
76                         });
77                 });
78                 const component = shallow(<PerformActions loopCache={loopCache} 
79                                                 loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showSucAlert={showSucAlert} showFailAlert={showFailAlert} />)
80                 await flushPromises();
81                 component.update();
82
83                 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
84         });
85
86 });