2016-08-18 07:08:00 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
require('../../../TestHelper');
|
|
|
|
|
|
|
|
/* global bootstrapModeler, inject */
|
|
|
|
|
2018-03-14 20:43:53 +00:00
|
|
|
var pick = require('min-dash').pick;
|
2016-08-18 07:08:00 +00:00
|
|
|
|
|
|
|
var getBBox = require('diagram-js/lib/util/Elements').getBBox;
|
|
|
|
|
2017-01-09 13:30:39 +00:00
|
|
|
var getParent = require('lib/features/modeling/util/ModelingUtil').getParent;
|
|
|
|
|
2016-08-18 07:08:00 +00:00
|
|
|
|
2018-01-24 10:41:21 +00:00
|
|
|
var bpmnEditorActionsModule = require('lib/features/editor-actions'),
|
|
|
|
modelingModule = require('lib/features/modeling'),
|
|
|
|
coreModule = require('lib/core');
|
2016-08-18 07:08:00 +00:00
|
|
|
|
2017-01-09 13:30:39 +00:00
|
|
|
var basicXML = require('../../../fixtures/bpmn/nested-subprocesses.bpmn'),
|
2016-08-22 15:04:13 +00:00
|
|
|
collaborationXML = require('../../../fixtures/bpmn/collaboration.bpmn');
|
2016-08-18 07:08:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
describe('features/editor-actions', function() {
|
|
|
|
|
|
|
|
describe('#moveToOrigin', function() {
|
|
|
|
|
|
|
|
function testMoveToOrigin(xml) {
|
|
|
|
|
|
|
|
return function() {
|
|
|
|
|
2018-01-24 19:25:28 +00:00
|
|
|
beforeEach(bootstrapModeler(xml, {
|
|
|
|
modules: [
|
|
|
|
bpmnEditorActionsModule,
|
|
|
|
modelingModule,
|
|
|
|
coreModule
|
|
|
|
]
|
|
|
|
}));
|
|
|
|
|
2016-08-18 07:08:00 +00:00
|
|
|
|
|
|
|
it('should move to origin', inject(function(editorActions) {
|
|
|
|
// given
|
|
|
|
var elements = editorActions.trigger('selectElements'),
|
|
|
|
boundingBox;
|
|
|
|
|
|
|
|
// when
|
|
|
|
editorActions.trigger('moveToOrigin');
|
|
|
|
|
|
|
|
boundingBox = getBBox(elements);
|
|
|
|
|
|
|
|
// then
|
|
|
|
expect(pick(boundingBox, [ 'x', 'y' ])).to.eql({ x: 0, y: 0 });
|
|
|
|
}));
|
2018-01-24 19:25:28 +00:00
|
|
|
|
2016-08-18 07:08:00 +00:00
|
|
|
};
|
2018-01-24 19:25:28 +00:00
|
|
|
|
2016-08-18 07:08:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-24 19:25:28 +00:00
|
|
|
|
2016-08-18 07:08:00 +00:00
|
|
|
describe('single process', testMoveToOrigin(basicXML));
|
|
|
|
|
2018-01-24 19:25:28 +00:00
|
|
|
|
2016-08-18 07:08:00 +00:00
|
|
|
describe('collaboration', testMoveToOrigin(collaborationXML));
|
|
|
|
|
2018-01-24 19:25:28 +00:00
|
|
|
|
2017-01-09 13:30:39 +00:00
|
|
|
describe('subprocesses', function() {
|
|
|
|
|
2018-01-24 19:25:28 +00:00
|
|
|
beforeEach(bootstrapModeler(basicXML, {
|
|
|
|
modules: [
|
|
|
|
bpmnEditorActionsModule,
|
|
|
|
modelingModule,
|
|
|
|
coreModule
|
|
|
|
]
|
|
|
|
}));
|
2017-01-09 13:30:39 +00:00
|
|
|
|
2018-01-24 19:25:28 +00:00
|
|
|
it('should ignore children of subprocesses', inject(
|
|
|
|
function(editorActions, elementRegistry) {
|
|
|
|
// given
|
|
|
|
var startEvent = elementRegistry.get('StartEvent_3'),
|
|
|
|
startEventParent = getParent(startEvent);
|
2017-01-09 13:30:39 +00:00
|
|
|
|
2018-01-24 19:25:28 +00:00
|
|
|
// when
|
|
|
|
editorActions.trigger('moveToOrigin');
|
|
|
|
|
|
|
|
// then
|
|
|
|
expect(getParent(startEvent)).to.equal(startEventParent);
|
|
|
|
}
|
|
|
|
));
|
2017-01-09 13:30:39 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-08-18 07:08:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|