2015-01-19 11:13:39 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var TestHelper = require('../../../TestHelper');
|
|
|
|
|
|
|
|
/* global bootstrapModeler, inject */
|
|
|
|
|
|
|
|
var modelingModule = require('../../../../lib/features/modeling'),
|
|
|
|
replaceModule = require('../../../../lib/features/replace'),
|
2015-06-24 09:43:07 +00:00
|
|
|
coreModule = require('../../../../lib/core'),
|
2015-07-03 08:48:32 +00:00
|
|
|
is = require('../../../../lib/util/ModelUtil').is,
|
|
|
|
isExpanded = require('../../../../lib/util/DiUtil').isExpanded;
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
describe('features/replace', function() {
|
|
|
|
|
2015-03-31 12:17:15 +00:00
|
|
|
var diagramXML = require('../../../fixtures/bpmn/features/replace/01_replace.bpmn');
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
var testModules = [ coreModule, modelingModule, replaceModule ];
|
|
|
|
|
|
|
|
beforeEach(bootstrapModeler(diagramXML, { modules: testModules }));
|
|
|
|
|
|
|
|
|
|
|
|
describe('should replace', function() {
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('task', inject(function(elementRegistry, bpmnReplace) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// then
|
|
|
|
var businessObject = newElement.businessObject;
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(newElement).to.be.defined;
|
|
|
|
expect(is(businessObject, 'bpmn:UserTask')).to.be.true;
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('gateway', inject(function(elementRegistry, bpmnReplace) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var gateway = elementRegistry.get('ExclusiveGateway_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:InclusiveGateway'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(gateway, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
// then
|
|
|
|
var businessObject = newElement.businessObject;
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(newElement).to.be.defined;
|
|
|
|
expect(is(businessObject, 'bpmn:InclusiveGateway')).to.be.true;
|
2015-06-24 09:43:07 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('expanded sub process', inject(function(elementRegistry, modeling, bpmnReplace, canvas) {
|
2015-07-13 13:18:18 +00:00
|
|
|
|
2015-06-24 09:43:07 +00:00
|
|
|
// given
|
|
|
|
var subProcess = elementRegistry.get('SubProcess_1'),
|
|
|
|
newElementData = {
|
|
|
|
type: 'bpmn:Transaction',
|
|
|
|
isExpanded: true
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(subProcess, newElementData);
|
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(newElement).to.be.defined;
|
|
|
|
expect(is(newElement.businessObject, 'bpmn:Transaction')).to.be.true;
|
2015-06-24 09:43:07 +00:00
|
|
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('transaction', inject(function(elementRegistry, modeling, bpmnReplace, canvas) {
|
2015-07-13 13:18:18 +00:00
|
|
|
|
2015-07-23 11:59:47 +00:00
|
|
|
// given
|
2015-06-24 09:43:07 +00:00
|
|
|
var transaction = elementRegistry.get('Transaction_1'),
|
|
|
|
newElementData = {
|
|
|
|
type: 'bpmn:SubProcess',
|
|
|
|
isExpanded: true
|
|
|
|
};
|
|
|
|
|
2015-07-23 11:59:47 +00:00
|
|
|
// when
|
2015-06-24 09:43:07 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(transaction, newElementData);
|
|
|
|
|
2015-07-23 11:59:47 +00:00
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(newElement).to.be.defined;
|
|
|
|
expect(is(newElement.businessObject, 'bpmn:SubProcess')).to.be.true;
|
2015-06-24 09:43:07 +00:00
|
|
|
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
2015-07-23 11:59:47 +00:00
|
|
|
|
|
|
|
it('non interrupting boundary event by interrupting boundary event',
|
|
|
|
inject(function(elementRegistry, modeling, bpmnReplace, canvas) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var boundaryEvent = elementRegistry.get('BoundaryEvent_1'),
|
|
|
|
newElementData = {
|
|
|
|
type: 'bpmn:BoundaryEvent',
|
|
|
|
eventDefinition: 'bpmn:EscalationEventDefinition'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(boundaryEvent, newElementData);
|
|
|
|
|
|
|
|
// then
|
|
|
|
expect(newElement).to.be.defined;
|
|
|
|
expect(is(newElement.businessObject, 'bpmn:BoundaryEvent')).to.be.true;
|
|
|
|
expect(newElement.businessObject.eventDefinitions[0].$type).to.equal('bpmn:EscalationEventDefinition');
|
|
|
|
expect(newElement.businessObject.cancelActivity).to.be.true;
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('interrupting boundary event by non interrupting boundary event',
|
|
|
|
inject(function(elementRegistry, modeling, bpmnReplace, canvas) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var boundaryEvent = elementRegistry.get('BoundaryEvent_2'),
|
|
|
|
newElementData = {
|
|
|
|
type: 'bpmn:BoundaryEvent',
|
|
|
|
eventDefinition: 'bpmn:SignalEventDefinition',
|
|
|
|
cancelActivity: false
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(boundaryEvent, newElementData);
|
|
|
|
|
|
|
|
// then
|
|
|
|
expect(newElement).to.be.defined;
|
|
|
|
expect(is(newElement.businessObject, 'bpmn:BoundaryEvent')).to.be.true;
|
|
|
|
expect(newElement.businessObject.eventDefinitions[0].$type).to.equal('bpmn:SignalEventDefinition');
|
|
|
|
expect(newElement.businessObject.cancelActivity).to.be.false;
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('boundary event and update host',
|
|
|
|
inject(function(elementRegistry, modeling, bpmnReplace, canvas) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var boundaryEvent = elementRegistry.get('BoundaryEvent_1'),
|
|
|
|
host = elementRegistry.get('Task_1'),
|
|
|
|
newElementData = {
|
|
|
|
type: 'bpmn:BoundaryEvent',
|
|
|
|
eventDefinition: 'bpmn:ErrorEventDefinition',
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(boundaryEvent, newElementData);
|
|
|
|
|
|
|
|
// then
|
|
|
|
expect(newElement.host).to.be.defined;
|
|
|
|
expect(newElement.host).to.eql(host);
|
|
|
|
}));
|
|
|
|
|
2015-01-19 11:13:39 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('position and size', function() {
|
|
|
|
|
2015-03-11 15:17:19 +00:00
|
|
|
it('should keep position', inject(function(elementRegistry, bpmnReplace) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(newElement.x).to.equal(task.x);
|
|
|
|
expect(newElement.y).to.equal(task.y);
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-03-11 15:31:42 +00:00
|
|
|
describe('selection', function() {
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should select after replace',
|
|
|
|
inject(function(elementRegistry, selection, bpmnReplace) {
|
2015-03-11 15:31:42 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(selection.get()).to.include(newElement);
|
2015-03-11 15:31:42 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-01-19 11:13:39 +00:00
|
|
|
describe('label', function() {
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should keep copy label',
|
|
|
|
inject(function(elementRegistry, bpmnReplace) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(newElement.businessObject.name).to.equal('Task Caption');
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-03-11 15:17:19 +00:00
|
|
|
|
2015-01-19 11:13:39 +00:00
|
|
|
describe('undo support', function() {
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should undo replace',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
|
|
|
|
2015-03-11 15:17:19 +00:00
|
|
|
bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.undo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var target = elementRegistry.get('Task_1'),
|
|
|
|
businessObject = target.businessObject;
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(target).to.be.defined;
|
|
|
|
expect(is(businessObject, 'bpmn:Task')).to.be.true;
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should redo replace',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
|
|
|
var newElementData2 = {
|
|
|
|
type: 'bpmn:ServiceTask'
|
|
|
|
};
|
|
|
|
|
2015-03-11 15:17:19 +00:00
|
|
|
var usertask = bpmnReplace.replaceElement(task, newElementData);
|
|
|
|
var servicetask = bpmnReplace.replaceElement(usertask, newElementData2);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
commandStack.undo();
|
|
|
|
commandStack.undo();
|
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.redo();
|
|
|
|
commandStack.redo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var businessObject = servicetask.businessObject;
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(servicetask).to.be.defined;
|
|
|
|
expect(is(businessObject, 'bpmn:ServiceTask')).to.be.true;
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('connection handling', function() {
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should reconnect valid connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// then
|
|
|
|
var incoming = newElement.incoming[0],
|
|
|
|
outgoing = newElement.outgoing[0],
|
|
|
|
source = incoming.source,
|
|
|
|
target = outgoing.target;
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.defined;
|
|
|
|
expect(outgoing).to.be.defined;
|
|
|
|
expect(source).to.eql(elementRegistry.get('StartEvent_1'));
|
|
|
|
expect(target).to.eql(elementRegistry.get('ExclusiveGateway_1'));
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should remove invalid incomming connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('StartEvent_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:EndEvent'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// then
|
|
|
|
var incoming = newElement.incoming[0],
|
|
|
|
outgoing = newElement.outgoing[0];
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.undefined;
|
|
|
|
expect(outgoing).to.be.undefined;
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
2015-03-11 15:17:19 +00:00
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should remove invalid outgoing connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('EndEvent_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:StartEvent'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// then
|
|
|
|
var incoming = newElement.incoming[0],
|
|
|
|
outgoing = newElement.outgoing[0];
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.undefined;
|
|
|
|
expect(outgoing).to.be.undefined;
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
describe('undo support', function() {
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should reconnect valid connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
2015-03-11 15:17:19 +00:00
|
|
|
|
|
|
|
bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.undo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var newTask = elementRegistry.get('Task_1');
|
|
|
|
var incoming = newTask.incoming[0],
|
|
|
|
outgoing = newTask.outgoing[0],
|
|
|
|
source = incoming.source,
|
|
|
|
target = outgoing.target;
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.defined;
|
|
|
|
expect(outgoing).to.be.defined;
|
|
|
|
expect(source).to.eql(elementRegistry.get('StartEvent_1'));
|
|
|
|
expect(target).to.eql(elementRegistry.get('ExclusiveGateway_1'));
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
2015-03-11 15:17:19 +00:00
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should remove invalid incoming connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var startEvent = elementRegistry.get('StartEvent_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:EndEvent'
|
|
|
|
};
|
2015-03-11 15:17:19 +00:00
|
|
|
|
|
|
|
bpmnReplace.replaceElement(startEvent, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.undo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var newEvent = elementRegistry.get('StartEvent_1');
|
|
|
|
var incoming = newEvent.incoming[0],
|
|
|
|
outgoing = newEvent.outgoing[0],
|
|
|
|
target = outgoing.target;
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.undefined;
|
|
|
|
expect(outgoing).to.be.defined;
|
|
|
|
expect(target).to.eql(elementRegistry.get('Task_1'));
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should remove invalid outgoing connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var endEvent = elementRegistry.get('EndEvent_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:StartEvent'
|
|
|
|
};
|
2015-03-11 15:17:19 +00:00
|
|
|
|
|
|
|
bpmnReplace.replaceElement(endEvent, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.undo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var newEvent = elementRegistry.get('EndEvent_1');
|
|
|
|
var incoming = newEvent.incoming[0],
|
|
|
|
outgoing = newEvent.outgoing[0],
|
|
|
|
source = incoming.source;
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.defined;
|
|
|
|
expect(outgoing).to.be.undefined;
|
|
|
|
expect(source).to.eql(elementRegistry.get('ExclusiveGateway_1'));
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-03-11 15:17:19 +00:00
|
|
|
describe('redo support', function() {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should reconnect valid connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var task = elementRegistry.get('Task_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:UserTask'
|
|
|
|
};
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(task, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.undo();
|
|
|
|
commandStack.redo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var incoming = newElement.incoming[0],
|
|
|
|
outgoing = newElement.outgoing[0],
|
|
|
|
source = incoming.source,
|
|
|
|
target = outgoing.target;
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.defined;
|
|
|
|
expect(outgoing).to.be.defined;
|
|
|
|
expect(source).to.eql(elementRegistry.get('StartEvent_1'));
|
|
|
|
expect(target).to.eql(elementRegistry.get('ExclusiveGateway_1'));
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should remove invalid incoming connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var startEvent = elementRegistry.get('StartEvent_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:EndEvent'
|
|
|
|
};
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(startEvent, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.undo();
|
|
|
|
commandStack.redo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var incoming = newElement.incoming[0],
|
|
|
|
outgoing = newElement.outgoing[0];
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.undefined;
|
|
|
|
expect(outgoing).to.be.undefined;
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
it('should remove invalid outgoing connections',
|
|
|
|
inject(function(elementRegistry, bpmnReplace, commandStack) {
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
var endEvent = elementRegistry.get('EndEvent_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:StartEvent'
|
|
|
|
};
|
2015-03-11 15:17:19 +00:00
|
|
|
var newElement = bpmnReplace.replaceElement(endEvent, newElementData);
|
2015-01-19 11:13:39 +00:00
|
|
|
|
|
|
|
// when
|
|
|
|
commandStack.undo();
|
|
|
|
commandStack.redo();
|
|
|
|
|
|
|
|
// then
|
|
|
|
var incoming = newElement.incoming[0],
|
|
|
|
outgoing = newElement.outgoing[0];
|
|
|
|
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(incoming).to.be.undefined;
|
|
|
|
expect(outgoing).to.be.undefined;
|
2015-01-19 11:13:39 +00:00
|
|
|
}));
|
2015-03-11 15:17:19 +00:00
|
|
|
|
2015-01-19 11:13:39 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-07-13 13:18:18 +00:00
|
|
|
describe('children handling', function() {
|
|
|
|
|
|
|
|
it('should update bpmn containment properly', inject(function(elementRegistry, modeling, bpmnReplace) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var subProcessShape = elementRegistry.get('SubProcess_1');
|
|
|
|
var startEventShape = elementRegistry.get('StartEvent_2');
|
|
|
|
var taskShape = elementRegistry.get('Task_2');
|
|
|
|
var sequenceFlowConnection = elementRegistry.get('SequenceFlow_4');
|
|
|
|
|
|
|
|
var transactionShapeData = {
|
|
|
|
type: 'bpmn:Transaction'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var transactionShape = bpmnReplace.replaceElement(subProcessShape, transactionShapeData);
|
|
|
|
|
|
|
|
// then
|
|
|
|
var subProcess = subProcessShape.businessObject,
|
|
|
|
transaction = transactionShape.businessObject;
|
|
|
|
|
|
|
|
var transactionChildren = transaction.get('flowElements');
|
|
|
|
var subProcessChildren = subProcess.get('flowElements');
|
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(transactionChildren).to.include(startEventShape.businessObject);
|
|
|
|
expect(transactionChildren).to.include(taskShape.businessObject);
|
|
|
|
expect(transactionChildren).to.include(sequenceFlowConnection.businessObject);
|
2015-07-13 13:18:18 +00:00
|
|
|
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(subProcessChildren).not.to.include(startEventShape.businessObject);
|
|
|
|
expect(subProcessChildren).not.to.include(taskShape.businessObject);
|
|
|
|
expect(subProcessChildren).not.to.include(sequenceFlowConnection.businessObject);
|
2015-07-13 13:18:18 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-07-03 08:48:32 +00:00
|
|
|
describe('sub processes', function() {
|
|
|
|
|
|
|
|
it('should allow morphing expanded into expanded ad hoc',
|
|
|
|
inject(function(bpmnReplace, elementRegistry) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var element = elementRegistry.get('SubProcess_1');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:AdHocSubProcess'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(element, newElementData);
|
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(is(newElement, 'bpmn:AdHocSubProcess')).to.be.true;
|
|
|
|
expect(isExpanded(newElement)).to.be.true;
|
2015-07-03 08:48:32 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('should allow morphing expanded ad hoc into expanded',
|
|
|
|
inject(function(bpmnReplace, elementRegistry) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var element = elementRegistry.get('AdHocSubProcessExpanded');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:SubProcess'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(element, newElementData);
|
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(is(newElement, 'bpmn:SubProcess')).to.be.true;
|
|
|
|
expect(is(newElement, 'bpmn:AdHocSubProcess')).to.be.false;
|
|
|
|
expect(isExpanded(newElement)).to.be.true;
|
2015-07-03 08:48:32 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('should allow morphing collapsed into collapsed ad hoc',
|
|
|
|
inject(function(bpmnReplace, elementRegistry) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var element = elementRegistry.get('SubProcessCollapsed');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:AdHocSubProcess'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(element, newElementData);
|
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(is(newElement, 'bpmn:AdHocSubProcess')).to.be.true;
|
|
|
|
expect(isExpanded(newElement)).not.to.be.true;
|
2015-07-03 08:48:32 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('should allow morphing collapsed ad hoc into collapsed',
|
|
|
|
inject(function(bpmnReplace, elementRegistry) {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var element = elementRegistry.get('AdHocSubProcessCollapsed');
|
|
|
|
var newElementData = {
|
|
|
|
type: 'bpmn:SubProcess'
|
|
|
|
};
|
|
|
|
|
|
|
|
// when
|
|
|
|
var newElement = bpmnReplace.replaceElement(element, newElementData);
|
|
|
|
|
|
|
|
// then
|
2015-07-15 15:22:19 +00:00
|
|
|
expect(is(newElement, 'bpmn:SubProcess')).to.be.true;
|
|
|
|
expect(is(newElement, 'bpmn:AdHocSubProcess')).to.be.false;
|
|
|
|
expect(isExpanded(newElement)).not.to.be.true;
|
2015-07-03 08:48:32 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-01-19 11:13:39 +00:00
|
|
|
});
|