97 lines
2.6 KiB
JavaScript
97 lines
2.6 KiB
JavaScript
'use strict';
|
|
|
|
var TestHelper = require('../../../TestHelper');
|
|
|
|
/* global bootstrapModeler, inject */
|
|
|
|
|
|
var modelingModule = require('../../../../lib/features/modeling'),
|
|
coreModule = require('../../../../lib/core');
|
|
|
|
|
|
describe('features/modeling - update attachment', function() {
|
|
|
|
var diagramXML = require('../../../fixtures/bpmn/boundary-events.bpmn');
|
|
|
|
var testModules = [ coreModule, modelingModule ];
|
|
|
|
beforeEach(bootstrapModeler(diagramXML, { modules: testModules }));
|
|
|
|
|
|
var subProcessElement, subProcess, task, boundaryEventElement, boundaryEvent;
|
|
|
|
beforeEach(inject(function(elementFactory, elementRegistry, canvas, modeling) {
|
|
task = elementRegistry.get('Task_1');
|
|
|
|
subProcessElement = elementRegistry.get('SubProcess_1');
|
|
|
|
subProcess = subProcessElement.businessObject;
|
|
|
|
boundaryEventElement = elementFactory.createShape({
|
|
type: 'bpmn:BoundaryEvent',
|
|
host: task,
|
|
x: 513, y: 254
|
|
});
|
|
|
|
boundaryEvent = boundaryEventElement.businessObject;
|
|
|
|
canvas.addShape(boundaryEventElement, subProcessElement);
|
|
}));
|
|
|
|
|
|
describe('should reattach BoundaryEvent', function() {
|
|
|
|
it('execute', inject(function(modeling, elementRegistry) {
|
|
|
|
// when
|
|
modeling.updateAttachment(boundaryEventElement, subProcessElement);
|
|
|
|
// then
|
|
expect(boundaryEvent.attachedToRef).to.equal(subProcess);
|
|
|
|
expect(boundaryEvent.cancelActivity).to.equal(true);
|
|
|
|
expect(subProcessElement.attachers).to.include(boundaryEventElement);
|
|
expect(task.attachers).not.to.include(boundaryEventElement);
|
|
}));
|
|
|
|
|
|
it('undo', inject(function(elementRegistry, commandStack, modeling) {
|
|
|
|
// given
|
|
modeling.updateAttachment(boundaryEventElement, subProcessElement);
|
|
|
|
// when
|
|
commandStack.undo();
|
|
|
|
// then
|
|
expect(boundaryEvent.attachedToRef).to.equal(task.businessObject);
|
|
expect(boundaryEvent.cancelActivity).to.equal(true);
|
|
|
|
expect(subProcessElement.attachers).not.to.include(boundaryEventElement);
|
|
expect(task.attachers).to.include(boundaryEventElement);
|
|
}));
|
|
|
|
|
|
it('redo', inject(function(elementRegistry, commandStack, modeling) {
|
|
|
|
// given
|
|
modeling.updateAttachment(boundaryEventElement, subProcessElement);
|
|
|
|
// when
|
|
commandStack.undo();
|
|
|
|
commandStack.redo();
|
|
|
|
// then
|
|
expect(boundaryEvent.attachedToRef).to.equal(subProcess);
|
|
expect(boundaryEvent.cancelActivity).to.equal(true);
|
|
|
|
expect(subProcessElement.attachers).to.include(boundaryEventElement);
|
|
expect(task.attachers).not.to.include(boundaryEventElement);
|
|
}));
|
|
|
|
});
|
|
|
|
});
|