react-version-downgrade
[sdc.git] / openecomp-ui / test / licenseModel / featureGroups / LicenseModelFeatureGroupEditor.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 import React from 'react';
18 import TestUtils from 'react-addons-test-utils';
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 });