react 16 upgrade
[sdc.git] / openecomp-ui / test / nfvo-components / editor / TabulatedEditor.test.js
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 import React from 'react';
18 import ShallowRenderer from 'react-test-renderer/shallow';
19 import TestUtils from 'react-dom/test-utils';
20 import TabulatedEditor from 'nfvo-components/editor/TabulatedEditor.jsx';
21 import { Provider } from 'react-redux';
22 import { storeCreator } from 'sdc-app/AppStore.js';
23
24 describe('Tabulated Editor test: ', function() {
25     const store = storeCreator();
26     it('basic view test', () => {
27         const renderer = new ShallowRenderer();
28         renderer.render(
29             <Provider store={store}>
30                 <TabulatedEditor>
31                     <button>test</button>
32                 </TabulatedEditor>
33             </Provider>
34         );
35         let renderedOutput = renderer.getRenderOutput();
36         expect(renderedOutput).toBeTruthy();
37     });
38
39     it('handle func test', () => {
40         let props = {
41             navigationBarProps: {
42                 groups: [],
43                 onNavigationItemClick: () => {},
44                 activeItemId: 'test'
45             },
46             versionControllerProps: {
47                 isCheckedOut: false,
48                 version: { id: '0.1', label: '0.1' },
49                 viewableVersions: [{ id: '0.1', label: '0.1' }],
50                 itemPermission: {
51                     isCertified: false,
52                     isCollaborator: true,
53                     isDirty: false
54                 },
55                 onSubmit: () => {},
56                 onRevert: () => {}
57             }
58         };
59         const view = TestUtils.renderIntoDocument(
60             <Provider store={store}>
61                 <TabulatedEditor {...props}>
62                     <button>test</button>
63                 </TabulatedEditor>
64             </Provider>
65         );
66         expect(view).toBeTruthy();
67     });
68 });