blob: f19ae0fe0c63cdd7038a3f34e27092799d217a74 [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
17import React from 'react';
Einav Weiss Keidard2f57942018-02-14 14:00:07 +020018import TestUtils from 'react-dom/test-utils';
AviZi280f8012017-06-09 02:39:56 +030019import {mapStateToProps} from 'sdc-app/onboarding/licenseModel/featureGroups/FeatureGroupEditor.js';
20import FeatureGroupEditorView from 'sdc-app/onboarding/licenseModel/featureGroups/FeatureGroupEditorView.jsx';
21import {LicenseModelOverviewFactory} from 'test-utils/factories/licenseModel/LicenseModelFactories.js';
22import {FeatureGroupStoreFactory} from 'test-utils/factories/licenseModel/FeatureGroupFactories.js';
23
24describe('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});