2014-05-06 08:00:06 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-06-07 06:46:45 +00:00
|
|
|
require('../../../TestHelper');
|
2014-06-18 09:45:30 +00:00
|
|
|
|
2014-08-05 06:17:22 +00:00
|
|
|
/* global bootstrapViewer, inject */
|
2014-04-25 14:14:36 +00:00
|
|
|
|
|
|
|
|
2016-10-26 09:26:58 +00:00
|
|
|
function getCenter(element) {
|
|
|
|
return {
|
|
|
|
x: element.x + Math.ceil(element.width / 2),
|
|
|
|
y: element.y + Math.ceil(element.height / 2)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-10-30 11:07:28 +00:00
|
|
|
describe('import - labels', function() {
|
2014-04-25 14:14:36 +00:00
|
|
|
|
2014-05-06 08:00:06 +00:00
|
|
|
describe('should import embedded labels', function() {
|
|
|
|
|
|
|
|
it('on flow nodes', function(done) {
|
2015-03-31 12:17:15 +00:00
|
|
|
var xml = require('../../../fixtures/bpmn/import/labels/embedded.bpmn');
|
2014-08-05 06:17:22 +00:00
|
|
|
bootstrapViewer(xml)(done);
|
2014-04-25 14:14:36 +00:00
|
|
|
});
|
2014-05-06 08:00:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
it('on pools and lanes', function(done) {
|
2015-03-31 12:17:15 +00:00
|
|
|
var xml = require('../../../fixtures/bpmn/import/labels/collaboration.bpmn');
|
2014-08-05 06:17:22 +00:00
|
|
|
bootstrapViewer(xml)(done);
|
2014-05-06 08:00:06 +00:00
|
|
|
});
|
|
|
|
|
2014-06-17 09:03:03 +00:00
|
|
|
|
|
|
|
it('on message flows', function(done) {
|
2015-03-31 12:17:15 +00:00
|
|
|
var xml = require('../../../fixtures/bpmn/import/labels/collaboration-message-flows.bpmn');
|
2014-08-05 06:17:22 +00:00
|
|
|
bootstrapViewer(xml)(done);
|
2014-06-17 09:03:03 +00:00
|
|
|
});
|
|
|
|
|
2014-04-25 14:14:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
describe('should import external labels', function() {
|
|
|
|
|
|
|
|
it('with di', function(done) {
|
2015-03-31 12:17:15 +00:00
|
|
|
var xml = require('../../../fixtures/bpmn/import/labels/external.bpmn');
|
2014-10-30 11:07:28 +00:00
|
|
|
|
|
|
|
// given
|
|
|
|
bootstrapViewer(xml)(function(err) {
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
return done(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
// when
|
|
|
|
inject(function(elementRegistry) {
|
|
|
|
|
2016-10-26 09:26:58 +00:00
|
|
|
var eventLabel = elementRegistry.get('EndEvent_1').label,
|
|
|
|
sequenceFlowLabel = elementRegistry.get('SequenceFlow_1').label;
|
|
|
|
|
|
|
|
var eventLabelCenter = getCenter(eventLabel),
|
|
|
|
sequenceFlowCenter = getCenter(sequenceFlowLabel);
|
2014-10-30 11:07:28 +00:00
|
|
|
|
|
|
|
// then
|
2016-10-26 09:26:58 +00:00
|
|
|
expect(eventLabelCenter.x).to.be.within(270, 272);
|
|
|
|
expect(eventLabelCenter.y).to.be.within(268, 270);
|
|
|
|
expect(eventLabel.width).to.be.above(65);
|
|
|
|
expect(eventLabel.height).to.be.above(20);
|
|
|
|
|
|
|
|
expect(sequenceFlowCenter.x).to.be.within(481, 483);
|
|
|
|
expect(sequenceFlowCenter.y).to.be.within(323, 325);
|
|
|
|
expect(sequenceFlowLabel.width).to.be.above(75);
|
|
|
|
expect(sequenceFlowLabel.height).to.be.above(11);
|
2014-10-30 11:07:28 +00:00
|
|
|
|
|
|
|
done();
|
|
|
|
})();
|
|
|
|
|
|
|
|
});
|
2014-04-25 14:14:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it('without di', function(done) {
|
2015-03-31 12:17:15 +00:00
|
|
|
var xml = require('../../../fixtures/bpmn/import/labels/external-no-di.bpmn');
|
2014-08-05 06:17:22 +00:00
|
|
|
bootstrapViewer(xml)(done);
|
2014-04-25 14:14:36 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-09-14 06:18:56 +00:00
|
|
|
});
|