blob: a19c18c96da5ecc39e8499abec698f821e03c1e9 [file] [log] [blame]
xuegao233e3cd2019-10-01 15:34:53 +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 { mount } from 'enzyme';
25import ConfigurationPolicyModal from './ConfigurationPolicyModal';
26import LoopCache from '../../../api/LoopCache';
27
sebdet2e9ae122019-11-15 16:28:55 +010028describe('Verify ConfigurationPolicyModal', () => {
xuegao233e3cd2019-10-01 15:34:53 +020029 beforeEach(() => {
30 fetch.resetMocks();
xuegao564fdb02019-10-02 11:18:10 +020031 fetch.mockImplementation(() => {
32 return Promise.resolve({
33 ok: true,
34 status: 200,
35 text: () => "OK"
36 });
37 });
xuegao233e3cd2019-10-01 15:34:53 +020038 })
39 const loopCache = new LoopCache({
40 "name": "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca",
41 "microServicePolicies": [{
42 "name": "TCA_h2NMX_v1_0_ResourceInstanceName1_tca",
43 "modelType": "onap.policies.monitoring.cdap.tca.hi.lo.app",
44 "properties": {"domain": "measurementsForVfScaling"},
45 "shared": false,
46 "jsonRepresentation": {"schema": {}}
47 }]
48 });
49 const historyMock = { push: jest.fn() };
sebdetc11160e2020-02-25 15:13:31 -080050 const matchMock = { params:{ policyName: "TCA_h2NMX_v1_0_ResourceInstanceName1_tca" } }
xuegao233e3cd2019-10-01 15:34:53 +020051 const flushPromises = () => new Promise(setImmediate);
52
53 it('Test handleClose', () => {
54 const handleClose = jest.spyOn(ConfigurationPolicyModal.prototype,'handleClose');
55 const component = mount(<ConfigurationPolicyModal history={historyMock} loopCache={loopCache} match={matchMock}/>)
56
57 component.find('[variant="secondary"]').prop('onClick')();
58
59 expect(handleClose).toHaveBeenCalledTimes(1);
60 expect(component.state('show')).toEqual(false);
xuegao564fdb02019-10-02 11:18:10 +020061 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
xuegao233e3cd2019-10-01 15:34:53 +020062 });
63
64 it('Test handleSave', async () => {
65 const loadLoopFunction = jest.fn();
66 const handleSave = jest.spyOn(ConfigurationPolicyModal.prototype,'handleSave');
67 const component = mount(<ConfigurationPolicyModal history={historyMock} match={matchMock} loopCache={loopCache} loadLoopFunction={loadLoopFunction}/>)
68
69 component.find('[variant="primary"]').prop('onClick')();
70 await flushPromises();
71 component.update();
72
73 expect(handleSave).toHaveBeenCalledTimes(1);
74 expect(component.state('show')).toEqual(false);
sebdetc11160e2020-02-25 15:13:31 -080075 expect(component.state('policyName')).toEqual("TCA_h2NMX_v1_0_ResourceInstanceName1_tca");
xuegao564fdb02019-10-02 11:18:10 +020076 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
xuegao233e3cd2019-10-01 15:34:53 +020077 });
78});