xuegao | 841ddaa | 2019-09-19 14:23:14 +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 { shallow } from 'enzyme'; |
sebdet | 4dc849f | 2019-11-15 17:49:42 +0100 | [diff] [blame] | 25 | import UserInfoModal from './UserInfoModal'; |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 26 | |
sebdet | 4dc849f | 2019-11-15 17:49:42 +0100 | [diff] [blame] | 27 | describe('Verify UserInfoModal', () => { |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 28 | |
| 29 | beforeEach(() => { |
| 30 | fetch.resetMocks(); |
| 31 | fetch.mockImplementation(() => { |
| 32 | return Promise.resolve({ |
| 33 | ok: true, |
| 34 | status: 200, |
| 35 | json: () => { |
| 36 | return Promise.resolve({ |
| 37 | "userName": "test", |
xuegao | 564fdb0 | 2019-10-02 11:18:10 +0200 | [diff] [blame] | 38 | "cldsVersion": "1.0.0" |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 39 | }); |
| 40 | }}); |
| 41 | }); |
| 42 | }) |
| 43 | |
| 44 | it('Test the render method full permission', () => { |
sebdet | 4dc849f | 2019-11-15 17:49:42 +0100 | [diff] [blame] | 45 | const component = shallow(<UserInfoModal />) |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 46 | component.setState({ userInfo: { |
| 47 | "userName": "test", |
| 48 | "cldsVersion": "1.0.0", |
sebdet | 7658007 | 2020-02-23 09:31:04 -0800 | [diff] [blame] | 49 | "allPermissions": ["permission1","permission2"] |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 50 | }}); |
| 51 | expect(component).toMatchSnapshot(); |
| 52 | }); |
| 53 | |
| 54 | it('Test the render method no permission', () => { |
sebdet | 4dc849f | 2019-11-15 17:49:42 +0100 | [diff] [blame] | 55 | const component = shallow(<UserInfoModal />) |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 56 | component.setState({ userInfo: {} |
| 57 | }); |
| 58 | |
| 59 | expect(component.find('FormControl').length).toEqual(0); |
| 60 | }); |
| 61 | |
| 62 | it('Test the render method read permission', () => { |
sebdet | 4dc849f | 2019-11-15 17:49:42 +0100 | [diff] [blame] | 63 | const component = shallow(<UserInfoModal />) |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 64 | component.setState({ userInfo: { |
| 65 | "userName": "test", |
| 66 | "cldsVersion": "1.0.0", |
sebdet | 7658007 | 2020-02-23 09:31:04 -0800 | [diff] [blame] | 67 | "allPermissions": ["permission1","permission2"] |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 68 | }}); |
| 69 | |
sebdet | 7658007 | 2020-02-23 09:31:04 -0800 | [diff] [blame] | 70 | expect(component.find('FormControl').length).toEqual(4); |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 71 | |
| 72 | const forms = component.find('FormControl'); |
| 73 | expect(forms.get(0).props.defaultValue).toEqual("test"); |
| 74 | expect(forms.get(1).props.defaultValue).toEqual("1.0.0"); |
sebdet | 7658007 | 2020-02-23 09:31:04 -0800 | [diff] [blame] | 75 | expect(forms.get(2).props.defaultValue).toEqual("permission1"); |
| 76 | expect(forms.get(3).props.defaultValue).toEqual("permission2"); |
xuegao | 841ddaa | 2019-09-19 14:23:14 +0200 | [diff] [blame] | 77 | }); |
| 78 | }); |