blob: c91c2f675097f5c72162288c0492bf27d29bbeb6 [file] [log] [blame]
xuegao564fdb02019-10-02 11:18:10 +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 PerformActions from './PerformActions';
26import LoopCache from '../../api/LoopCache';
27import LoopActionService from '../../api/LoopActionService';
28
29describe('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();
xuegaocc5fe512020-04-06 13:13:52 +020039 const showSucAlert = jest.fn();
40 const showFailAlert = jest.fn();
Ted Humphrey4fb32392020-07-06 16:59:47 -040041 const setBusyLoading = jest.fn();
42 const clearBusyLoading = jest.fn();
xuegao564fdb02019-10-02 11:18:10 +020043
44 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
45 return Promise.resolve({
46 ok: true,
47 status: 200,
48 json: () => {}
49 });
50 });
xuegao564fdb02019-10-02 11:18:10 +020051 const component = shallow(<PerformActions loopCache={loopCache}
Ted Humphrey4fb32392020-07-06 16:59:47 -040052 loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showSucAlert={showSucAlert} showFailAlert={showFailAlert} setBusyLoading={setBusyLoading} clearBusyLoading={clearBusyLoading}/>)
xuegao564fdb02019-10-02 11:18:10 +020053 await flushPromises();
54 component.update();
55
56 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
xuegao564fdb02019-10-02 11:18:10 +020057 });
58
59 it('Test the render method action successful', async () => {
60 const flushPromises = () => new Promise(setImmediate);
61 const historyMock = { push: jest.fn() };
62 const updateLoopFunction = jest.fn();
xuegaocc5fe512020-04-06 13:13:52 +020063 const showSucAlert = jest.fn();
64 const showFailAlert = jest.fn();
Ted Humphrey4fb32392020-07-06 16:59:47 -040065 const setBusyLoading = jest.fn();
66 const clearBusyLoading = jest.fn();
xuegao564fdb02019-10-02 11:18:10 +020067
68 LoopActionService.performAction = jest.fn().mockImplementation(() => {
69 return Promise.resolve({
70 ok: true,
71 status: 200,
72 json: () => {}
73 });
74 });
75 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
76 return Promise.resolve({
77 ok: true,
78 status: 200,
79 json: () => {}
80 });
81 });
xuegao564fdb02019-10-02 11:18:10 +020082 const component = shallow(<PerformActions loopCache={loopCache}
Ted Humphrey4fb32392020-07-06 16:59:47 -040083 loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showSucAlert={showSucAlert} showFailAlert={showFailAlert} setBusyLoading={setBusyLoading} clearBusyLoading={clearBusyLoading}/>)
xuegao564fdb02019-10-02 11:18:10 +020084 await flushPromises();
85 component.update();
86
87 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
xuegao564fdb02019-10-02 11:18:10 +020088 });
89
90});