blob: 0b0786290c8ca62836d1b335b5e501f7b485ef11 [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();
xuegao0efeb6b2019-10-07 14:36:34 +020039 const showAlert = jest.fn();
xuegao564fdb02019-10-02 11:18:10 +020040
41 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
42 return Promise.resolve({
43 ok: true,
44 status: 200,
45 json: () => {}
46 });
47 });
xuegao564fdb02019-10-02 11:18:10 +020048 const component = shallow(<PerformActions loopCache={loopCache}
xuegao0efeb6b2019-10-07 14:36:34 +020049 loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showAlert={showAlert} />)
xuegao564fdb02019-10-02 11:18:10 +020050 await flushPromises();
51 component.update();
52
53 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
xuegao564fdb02019-10-02 11:18:10 +020054 });
55
56 it('Test the render method action successful', async () => {
57 const flushPromises = () => new Promise(setImmediate);
58 const historyMock = { push: jest.fn() };
59 const updateLoopFunction = jest.fn();
xuegao0efeb6b2019-10-07 14:36:34 +020060 const showAlert = jest.fn();
xuegao564fdb02019-10-02 11:18:10 +020061
62 LoopActionService.performAction = jest.fn().mockImplementation(() => {
63 return Promise.resolve({
64 ok: true,
65 status: 200,
66 json: () => {}
67 });
68 });
69 LoopActionService.refreshStatus = jest.fn().mockImplementation(() => {
70 return Promise.resolve({
71 ok: true,
72 status: 200,
73 json: () => {}
74 });
75 });
xuegao564fdb02019-10-02 11:18:10 +020076 const component = shallow(<PerformActions loopCache={loopCache}
xuegao0efeb6b2019-10-07 14:36:34 +020077 loopAction="submit" history={historyMock} updateLoopFunction={updateLoopFunction} showAlert={showAlert} />)
xuegao564fdb02019-10-02 11:18:10 +020078 await flushPromises();
79 component.update();
80
81 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
xuegao564fdb02019-10-02 11:18:10 +020082 });
83
84});