react-version-downgrade
[sdc.git] / openecomp-ui / test / softwareProduct / components / processes / SoftwareProductComponentsProcessesEditor.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/softwareProduct/components/processes/SoftwareProductComponentProcessesEditor.js';
20 import SoftwareProductComponentProcessesEditorView from 'sdc-app/onboarding/softwareProduct/components/processes/SoftwareProductComponentProcessesEditorView.jsx';
21
22 describe('Software Product Components  Processes Editor Module Tests', function () {
23
24         it('should mapper exist', () => {
25                 expect(mapStateToProps).toBeTruthy();
26         });
27
28         it('should return empty data', () => {
29
30                 var state = {
31                         softwareProduct: {
32                                 softwareProductComponents: {
33                                         componentProcesses: {
34                                                 processesList: [],
35                                                 processesEditor: {data: {}}
36                                         }
37                                 }
38                         }
39                 };
40
41                 var results = mapStateToProps(state);
42                 expect(results.data).toEqual({});
43                 expect(results.previousData).toEqual(undefined);
44         });
45
46         it('jsx view test', () => {
47                 var view = TestUtils.renderIntoDocument(
48                         <SoftwareProductComponentProcessesEditorView
49                                 isReadOnlyMode={true}
50                                 data={{name: '1', description: '1', artifactName: '1'}}
51                                 previousData={{}}
52                                 onDataChanged={() => {}}
53                                 onSubmit={() => {}}
54                                 onClose={() => {}}/>);
55                 expect(view).toBeTruthy();
56         });
57 });