xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 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 { mount } from 'enzyme'; |
| 25 | import ConfigurationPolicyModal from './ConfigurationPolicyModal'; |
| 26 | import LoopCache from '../../../api/LoopCache'; |
| 27 | |
| 28 | |
sebdet | 2e9ae12 | 2019-11-15 16:28:55 +0100 | [diff] [blame] | 29 | describe('Verify ConfigurationPolicyModal', () => { |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 30 | beforeEach(() => { |
| 31 | fetch.resetMocks(); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 32 | fetch.mockImplementation(() => { |
| 33 | return Promise.resolve({ |
| 34 | ok: true, |
| 35 | status: 200, |
| 36 | text: () => "OK" |
| 37 | }); |
| 38 | }); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 39 | }) |
| 40 | const loopCache = new LoopCache({ |
| 41 | "name": "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca", |
| 42 | "microServicePolicies": [{ |
| 43 | "name": "TCA_h2NMX_v1_0_ResourceInstanceName1_tca", |
| 44 | "modelType": "onap.policies.monitoring.cdap.tca.hi.lo.app", |
| 45 | "properties": {"domain": "measurementsForVfScaling"}, |
| 46 | "shared": false, |
| 47 | "jsonRepresentation": {"schema": {}} |
| 48 | }] |
| 49 | }); |
| 50 | const historyMock = { push: jest.fn() }; |
sebdet | c11160e | 2020-02-25 15:13:31 -0800 | [diff] [blame^] | 51 | const matchMock = { params:{ policyName: "TCA_h2NMX_v1_0_ResourceInstanceName1_tca" } } |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 52 | const flushPromises = () => new Promise(setImmediate); |
| 53 | |
| 54 | it('Test handleClose', () => { |
| 55 | const handleClose = jest.spyOn(ConfigurationPolicyModal.prototype,'handleClose'); |
| 56 | const component = mount(<ConfigurationPolicyModal history={historyMock} loopCache={loopCache} match={matchMock}/>) |
| 57 | |
| 58 | component.find('[variant="secondary"]').prop('onClick')(); |
| 59 | |
| 60 | expect(handleClose).toHaveBeenCalledTimes(1); |
| 61 | expect(component.state('show')).toEqual(false); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 62 | expect(historyMock.push.mock.calls[0]).toEqual([ '/']); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 63 | }); |
| 64 | |
| 65 | it('Test handleSave', async () => { |
| 66 | const loadLoopFunction = jest.fn(); |
| 67 | const handleSave = jest.spyOn(ConfigurationPolicyModal.prototype,'handleSave'); |
| 68 | const component = mount(<ConfigurationPolicyModal history={historyMock} match={matchMock} loopCache={loopCache} loadLoopFunction={loadLoopFunction}/>) |
| 69 | |
| 70 | component.find('[variant="primary"]').prop('onClick')(); |
| 71 | await flushPromises(); |
| 72 | component.update(); |
| 73 | |
| 74 | expect(handleSave).toHaveBeenCalledTimes(1); |
| 75 | expect(component.state('show')).toEqual(false); |
sebdet | c11160e | 2020-02-25 15:13:31 -0800 | [diff] [blame^] | 76 | expect(component.state('policyName')).toEqual("TCA_h2NMX_v1_0_ResourceInstanceName1_tca"); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 77 | expect(historyMock.push.mock.calls[0]).toEqual([ '/']); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 78 | }); |
| 79 | }); |