blob: 5f5e2a0c9e901f4e8a359c8fdab3ece94bcbbc1b [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
2 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
13 * or implied. See the License for the specific language governing
14 * permissions and limitations under the License.
15 */
16
17import React from 'react';
18import TestUtils from 'react-addons-test-utils';
19import {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});