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 | |
| 17 | import React from 'react'; |
Einav Weiss Keidar | d2f5794 | 2018-02-14 14:00:07 +0200 | [diff] [blame^] | 18 | import TestUtils from 'react-dom/test-utils'; |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 19 | import {mapStateToProps} from 'sdc-app/onboarding/licenseModel/featureGroups/FeatureGroupEditor.js'; |
| 20 | import FeatureGroupEditorView from 'sdc-app/onboarding/licenseModel/featureGroups/FeatureGroupEditorView.jsx'; |
| 21 | import {LicenseModelOverviewFactory} from 'test-utils/factories/licenseModel/LicenseModelFactories.js'; |
| 22 | import {FeatureGroupStoreFactory} from 'test-utils/factories/licenseModel/FeatureGroupFactories.js'; |
| 23 | |
| 24 | describe('License Model Feature Groups Editor Module Tests', function () { |
| 25 | |
| 26 | it('should mapper exist', () => { |
| 27 | expect(mapStateToProps).toBeTruthy(); |
| 28 | }); |
| 29 | |
| 30 | it('should return empty data', () => { |
| 31 | |
| 32 | let licenseModel = LicenseModelOverviewFactory.build({ |
| 33 | featureGroup: { |
| 34 | featureGroupEditor: { |
| 35 | data: FeatureGroupStoreFactory.build() |
| 36 | }, |
| 37 | featureGroupsList: [] |
| 38 | } |
| 39 | }); |
| 40 | |
| 41 | var results = mapStateToProps({licenseModel}); |
| 42 | expect(results.entitlementPoolsList).toEqual([]); |
| 43 | expect(results.licenseKeyGroupsList).toEqual([]); |
| 44 | }); |
| 45 | |
| 46 | it ('should return fg names list', () => { |
| 47 | let licenseModel = LicenseModelOverviewFactory.build({ |
| 48 | featureGroup: { |
| 49 | featureGroupEditor: { |
| 50 | data: FeatureGroupStoreFactory.build() |
| 51 | }, |
| 52 | featureGroupsList: [{ |
| 53 | name: 'fg1', |
| 54 | id: 'fg1_id' |
| 55 | }, { |
| 56 | name: 'fg2', |
| 57 | id: 'fg2_id' |
| 58 | }] |
| 59 | } |
| 60 | }); |
| 61 | var results = mapStateToProps({licenseModel}); |
| 62 | expect(results.FGNames).toEqual({fg1: 'fg1_id', fg2: 'fg2_id'}); |
| 63 | }); |
| 64 | |
| 65 | it('jsx view test', () => { |
| 66 | var view = TestUtils.renderIntoDocument(<FeatureGroupEditorView |
| 67 | isReadOnlyMode={true} |
| 68 | onTabSelect={() => {}} |
| 69 | entitlementPoolsList={[{id: '1', name: '1'}]} |
| 70 | licenseKeyGroupsList={[{id: '1', name: '1'}]}/>); |
| 71 | expect(view).toBeTruthy(); |
| 72 | }); |
| 73 | |
| 74 | }); |