react-version-downgrade
[sdc.git] / openecomp-ui / test / nfvo-components / editor / TabulatedEditor.test.js
1 /*
2  * Copyright © 2016-2017 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
18 import React from 'react';
19
20 import TestUtils from 'react-addons-test-utils';
21 import TabulatedEditor from 'nfvo-components/editor/TabulatedEditor.jsx';
22 import { Provider } from 'react-redux';
23 import {storeCreator} from 'sdc-app/AppStore.js';
24
25 describe('Tabulated Editor test: ', function () {
26         const store = storeCreator();
27         it('basic view test', () => {
28                 var renderer = TestUtils.createRenderer();
29                 renderer.render(
30                         <Provider store={store}><TabulatedEditor><button>test</button></TabulatedEditor></Provider>
31                 );
32                 let renderedOutput = renderer.getRenderOutput();
33                 expect(renderedOutput).toBeTruthy();
34
35         });
36
37         it('handle func test', () => {
38                 let props = {
39                         navigationBarProps: {
40                                 groups: [],
41                                 onNavigationItemClick: ()=>{}
42                         },
43                         versionControllerProps: {
44                                 isCheckedOut: false,
45                                 version: {id: '0.1', label: '0.1'},
46                                 viewableVersions: [{id: '0.1', label: '0.1'}],
47                                 itemPermission: {isCertified: false, isCollaborator: true, isDirty: false},
48                                 onSubmit: ()=>{},
49                                 onRevert: ()=>{}
50                         }
51                 };
52                 const view = TestUtils.renderIntoDocument(<Provider store={store}><TabulatedEditor {...props}><button>test</button></TabulatedEditor></Provider>);
53                 expect(view).toBeTruthy();
54         });
55
56 });