2  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   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
 
   8  * http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  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';
 
  22 describe('Software Product Components  Processes Editor Module Tests', function () {
 
  24         it('should mapper exist', () => {
 
  25                 expect(mapStateToProps).toBeTruthy();
 
  28         it('should return empty data', () => {
 
  32                                 softwareProductComponents: {
 
  35                                                 processesEditor: {data: {}}
 
  41                 var results = mapStateToProps(state);
 
  42                 expect(results.data).toEqual({});
 
  43                 expect(results.previousData).toEqual(undefined);
 
  46         it('jsx view test', () => {
 
  47                 var view = TestUtils.renderIntoDocument(
 
  48                         <SoftwareProductComponentProcessesEditorView
 
  50                                 data={{name: '1', description: '1', artifactName: '1'}}
 
  52                                 onDataChanged={() => {}}
 
  54                                 onClose={() => {}}/>);
 
  55                 expect(view).toBeTruthy();