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 OperationalPolicyModal from './OperationalPolicyModal'; |
| 26 | import LoopCache from '../../../api/LoopCache'; |
| 27 | |
| 28 | describe('Verify OperationalPolicyModal', () => { |
| 29 | beforeEach(() => { |
| 30 | fetch.resetMocks(); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 31 | fetch.mockImplementation(() => { |
| 32 | return Promise.resolve({ |
| 33 | ok: true, |
| 34 | status: 200, |
| 35 | text: () => "OK" |
| 36 | }); |
| 37 | }); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 38 | }) |
| 39 | const loopCache = new LoopCache({ |
| 40 | "name": "LOOP_Jbv1z_v1_0_ResourceInstanceName1_tca", |
| 41 | "operationalPolicies": [{ |
| 42 | "name": "OPERATIONAL_h2NMX_v1_0_ResourceInstanceName1_tca", |
| 43 | "configurationsJson": { |
| 44 | "guard_policies": {}, |
| 45 | "operational_policy": { |
| 46 | "controlLoop": {}, |
| 47 | "policies": [] |
| 48 | } |
xuegao | c488fed | 2019-12-19 11:58:45 +0100 | [diff] [blame] | 49 | }, |
| 50 | "jsonRepresentation" : {"schema": {}} |
| 51 | }] |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 52 | }); |
| 53 | const historyMock = { push: jest.fn() }; |
| 54 | const flushPromises = () => new Promise(setImmediate); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 55 | |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 56 | it('Test handleClose', () => { |
| 57 | const handleClose = jest.spyOn(OperationalPolicyModal.prototype,'handleClose'); |
| 58 | const component = mount(<OperationalPolicyModal history={historyMock} loopCache={loopCache}/>) |
| 59 | |
xuegao | 2f5b2cd | 2020-01-06 16:13:46 +0100 | [diff] [blame] | 60 | component.find('[variant="secondary"]').get(0).props.onClick(); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 61 | |
| 62 | expect(handleClose).toHaveBeenCalledTimes(1); |
| 63 | expect(component.state('show')).toEqual(false); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 64 | expect(historyMock.push.mock.calls[0]).toEqual([ '/']); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 65 | }); |
| 66 | |
| 67 | it('Test handleSave', async () => { |
| 68 | const loadLoopFunction = jest.fn(); |
| 69 | const handleSave = jest.spyOn(OperationalPolicyModal.prototype,'handleSave'); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 70 | const component = mount(<OperationalPolicyModal history={historyMock} |
| 71 | loopCache={loopCache} loadLoopFunction={loadLoopFunction} />) |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 72 | |
| 73 | component.find('[variant="primary"]').prop('onClick')(); |
| 74 | await flushPromises(); |
| 75 | component.update(); |
| 76 | |
| 77 | expect(handleSave).toHaveBeenCalledTimes(1); |
| 78 | expect(component.state('show')).toEqual(false); |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 79 | expect(historyMock.push.mock.calls[0]).toEqual([ '/']); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 80 | }); |
xuegao | 2f5b2cd | 2020-01-06 16:13:46 +0100 | [diff] [blame] | 81 | |
| 82 | it('Test handleRefresh', async () => { |
| 83 | const updateLoopFunction = jest.fn(); |
| 84 | const handleRefresh = jest.spyOn(OperationalPolicyModal.prototype,'handleRefresh'); |
| 85 | const component = mount(<OperationalPolicyModal loopCache={loopCache} updateLoopFunction={updateLoopFunction} />) |
| 86 | |
| 87 | component.find('[variant="secondary"]').get(1).props.onClick(); |
| 88 | await flushPromises(); |
| 89 | component.update(); |
| 90 | |
| 91 | expect(handleRefresh).toHaveBeenCalledTimes(1); |
| 92 | expect(component.state('show')).toEqual(true); |
| 93 | }); |
xuegao | 233e3cd | 2019-10-01 15:34:53 +0200 | [diff] [blame] | 94 | }); |