blob: 83714320325cfa9778a8a801f457fb49792fccb2 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001/*!
Michael Landoefa037d2017-02-19 12:57:33 +02002 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
AviZi280f8012017-06-09 02:39:56 +03003 *
Michael Landoefa037d2017-02-19 12:57:33 +02004 * 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
AviZi280f8012017-06-09 02:39:56 +03007 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
Michael Landoefa037d2017-02-19 12:57:33 +020010 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
AviZi280f8012017-06-09 02:39:56 +030012 * 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.
Michael Landoefa037d2017-02-19 12:57:33 +020015 */
16
Michael Landoefa037d2017-02-19 12:57:33 +020017import React from 'react';
18import TestUtils from 'react-addons-test-utils';
19import {mapStateToProps} from 'sdc-app/flows/FlowsEditorModal.js';
20import FlowsEditorModalView from 'sdc-app/flows/FlowsEditorModalView.jsx';
21
AviZi280f8012017-06-09 02:39:56 +030022import {FlowBasicFactory} from 'test-utils/factories/flows/FlowsFactories.js';
23
Michael Landoefa037d2017-02-19 12:57:33 +020024describe('Flows Editor Modal Mapper and View Classes: ', function () {
25
26 it('mapStateToProps mapper exists', () => {
AviZi280f8012017-06-09 02:39:56 +030027 expect(mapStateToProps).toBeTruthy();
Michael Landoefa037d2017-02-19 12:57:33 +020028 });
29
30 it('mapStateToProps mapper - without currentFlow', () => {
31 var flows = {
32 serviceID: '123',
33 diagramType: 'SOME_TYPE'
34 };
35 var results = mapStateToProps({flows});
AviZi280f8012017-06-09 02:39:56 +030036 expect(results.currentFlow).toBeTruthy();
Michael Landoefa037d2017-02-19 12:57:33 +020037 expect(results.currentFlow.artifactName).toBe('');
38 expect(results.currentFlow.description).toBe('');
39 });
40
41 it('mapStateToProps mapper - populated currentFlow', () => {
AviZi280f8012017-06-09 02:39:56 +030042 const currentFlow = FlowBasicFactory.build({artifactType: 'WORKFLOW'});
Michael Landoefa037d2017-02-19 12:57:33 +020043 var flows = {
AviZi280f8012017-06-09 02:39:56 +030044 data: currentFlow,
Michael Landoefa037d2017-02-19 12:57:33 +020045 serviceID: '123',
AviZi280f8012017-06-09 02:39:56 +030046 diagramType: 'WORKFLOW'
Michael Landoefa037d2017-02-19 12:57:33 +020047 };
48 var results = mapStateToProps({flows});
AviZi280f8012017-06-09 02:39:56 +030049 expect(results.currentFlow).toBeTruthy();
50 expect(results.currentFlow.artifactName).toBe(currentFlow.artifactName);
51 expect(results.currentFlow.description).toBe(currentFlow.description);
Michael Landoefa037d2017-02-19 12:57:33 +020052 expect(results.currentFlow.serviceID).toBe(flows.serviceID);
53 expect(results.currentFlow.artifactType).toBe(flows.diagramType);
54 });
55
56 it('basic modal view component run with empty artifact', () => {
57 let renderer = TestUtils.createRenderer();
58 renderer.render(
59 <FlowsEditorModalView
60 onCancel={()=>{}}
61 onDataChanged={()=>{}}
AviZi280f8012017-06-09 02:39:56 +030062 currentFlow={FlowBasicFactory.build({artifactName: '', description: ''})}/>);
Michael Landoefa037d2017-02-19 12:57:33 +020063 let renderedOutput = renderer.getRenderOutput();
AviZi280f8012017-06-09 02:39:56 +030064 expect(renderedOutput).toBeTruthy();
Michael Landoefa037d2017-02-19 12:57:33 +020065 });
66
67 it('modal view component run with data changed handler', done => {
68 let handler = () => done();
69 let document = TestUtils.renderIntoDocument(
70 <FlowsEditorModalView
71 onCancel={()=>{}}
72 onDataChanged={handler}
AviZi280f8012017-06-09 02:39:56 +030073 currentFlow={FlowBasicFactory.build({artifactName: '', description: ''})}
74 genericFieldInfo={{artifactName : {isValid: true, errorText: ''}, description: {isValid: true, errorText: ''}}} />);
Michael Landoefa037d2017-02-19 12:57:33 +020075 let result = TestUtils.scryRenderedDOMComponentsWithTag(document, 'input');
AviZi280f8012017-06-09 02:39:56 +030076 expect(result).toBeTruthy();
77 expect(result.length).toBeTruthy();
Michael Landoefa037d2017-02-19 12:57:33 +020078 TestUtils.Simulate.change(result[0]);
79 });
80
81 it('modal view component - on save click', done => {
82 let handler = () => done();
83 var flowsEditorModalView = new FlowsEditorModalView({currentFlow: {}, onSubmit: handler});
84 flowsEditorModalView.onSaveClicked();
85 });
86
87});