'use strict'; var TestHelper = require('../../../TestHelper'); /* global bootstrapModeler, inject */ var modelingModule = require('../../../../lib/features/modeling'), coreModule = require('../../../../lib/core'); describe('features/modeling - move connection', function() { var diagramXML = require('../../../fixtures/bpmn/sequence-flows.bpmn'); var testModules = [ coreModule, modelingModule ]; beforeEach(bootstrapModeler(diagramXML, { modules: testModules })); describe('connection handling', function() { it('should execute', inject(function(elementRegistry, modeling, bpmnFactory) { // given var sequenceFlowConnection = elementRegistry.get('SequenceFlow_1'), sequenceFlow = sequenceFlowConnection.businessObject; // when modeling.moveConnection(sequenceFlowConnection, { x: 20, y: 10 }); var waypoints = [ {x: 598, y: 351 }, {x: 954, y: 351 }, {x: 954, y: 446 }, {x: 852, y: 446 } ]; // then // expect cropped connection expect(sequenceFlowConnection.waypoints).eql(waypoints); // expect cropped waypoints in di var diWaypoints = bpmnFactory.createDiWaypoints(waypoints); expect(sequenceFlow.di.waypoint).eql(diWaypoints); })); }); describe('undo support', function() { it('should undo', inject(function(elementRegistry, commandStack, modeling) { // given var sequenceFlowConnection = elementRegistry.get('SequenceFlow_1'), sequenceFlow = sequenceFlowConnection.businessObject; var oldWaypoints = sequenceFlowConnection.waypoints, oldDiWaypoints = sequenceFlow.di.waypoint; modeling.moveConnection(sequenceFlowConnection, { x: 20, y: 10 }); // when commandStack.undo(); // then expect(sequenceFlowConnection.waypoints).eql(oldWaypoints); expect(sequenceFlow.di.waypoint).eql(oldDiWaypoints); })); }); describe('redo support', function() { it('should redo', inject(function(elementRegistry, commandStack, modeling) { // given var sequenceFlowConnection = elementRegistry.get('SequenceFlow_1'), sequenceFlow = sequenceFlowConnection.businessObject; modeling.moveConnection(sequenceFlowConnection, { x: 20, y: 10 }); var newWaypoints = sequenceFlowConnection.waypoints, newDiWaypoints = sequenceFlow.di.waypoint; // when commandStack.undo(); commandStack.redo(); // then expect(sequenceFlowConnection.waypoints).eql(newWaypoints); expect(sequenceFlow.di.waypoint).eql(newDiWaypoints); })); }); });