blob: cc694398ec8b04aecf32954573a91ce3cd3c5725 [file] [log] [blame]
svishnev1eb66b72018-01-11 14:39:45 +02001/*
Einav Weiss Keidard2f57942018-02-14 14:00:07 +02002 * Copyright © 2016-2018 European Support Limited
AviZi280f8012017-06-09 02:39:56 +03003 *
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
Einav Weiss Keidard2f57942018-02-14 14:00:07 +02007 *
svishnev1eb66b72018-01-11 14:39:45 +02008 * http://www.apache.org/licenses/LICENSE-2.0
Einav Weiss Keidard2f57942018-02-14 14:00:07 +02009 *
AviZi280f8012017-06-09 02:39:56 +030010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
svishnev1eb66b72018-01-11 14:39:45 +020012 * 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.
AviZi280f8012017-06-09 02:39:56 +030015 */
16
AviZi280f8012017-06-09 02:39:56 +030017import React from 'react';
Einav Weiss Keidard2f57942018-02-14 14:00:07 +020018import ShallowRenderer from 'react-test-renderer/shallow';
19import TestUtils from 'react-dom/test-utils';
AviZi280f8012017-06-09 02:39:56 +030020import TabulatedEditor from 'nfvo-components/editor/TabulatedEditor.jsx';
talig8e9c0652017-12-20 14:30:43 +020021import { Provider } from 'react-redux';
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030022import { storeCreator } from 'sdc-app/AppStore.js';
AviZi280f8012017-06-09 02:39:56 +030023
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030024describe('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 });
AviZi280f8012017-06-09 02:39:56 +030038
Einav Weiss Keidar1801b242018-08-13 16:19:46 +030039 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 });
AviZi280f8012017-06-09 02:39:56 +030068});