svishnev | 1eb66b7 | 2018-01-11 14:39:45 +0200 | [diff] [blame] | 1 | /* |
Einav Weiss Keidar | d2f5794 | 2018-02-14 14:00:07 +0200 | [diff] [blame] | 2 | * Copyright © 2016-2018 European Support Limited |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 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 |
Einav Weiss Keidar | d2f5794 | 2018-02-14 14:00:07 +0200 | [diff] [blame] | 7 | * |
svishnev | 1eb66b7 | 2018-01-11 14:39:45 +0200 | [diff] [blame] | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Einav Weiss Keidar | d2f5794 | 2018-02-14 14:00:07 +0200 | [diff] [blame] | 9 | * |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
svishnev | 1eb66b7 | 2018-01-11 14:39:45 +0200 | [diff] [blame] | 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. |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 15 | */ |
| 16 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 17 | import React from 'react'; |
Einav Weiss Keidar | d2f5794 | 2018-02-14 14:00:07 +0200 | [diff] [blame] | 18 | import ShallowRenderer from 'react-test-renderer/shallow'; |
| 19 | import TestUtils from 'react-dom/test-utils'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 20 | import TabulatedEditor from 'nfvo-components/editor/TabulatedEditor.jsx'; |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 21 | import { Provider } from 'react-redux'; |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 22 | import { storeCreator } from 'sdc-app/AppStore.js'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 23 | |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 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 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 38 | |
Einav Weiss Keidar | 1801b24 | 2018-08-13 16:19:46 +0300 | [diff] [blame] | 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 | }); |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 68 | }); |