68 lines
1.6 KiB
JavaScript
68 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
var TestHelper = require('../../../TestHelper');
|
|
|
|
/* global bootstrapViewer, inject */
|
|
|
|
|
|
describe('import - labels', function() {
|
|
|
|
describe('should import embedded labels', function() {
|
|
|
|
it('on flow nodes', function(done) {
|
|
var xml = require('../../../fixtures/bpmn/import/labels/embedded.bpmn');
|
|
bootstrapViewer(xml)(done);
|
|
});
|
|
|
|
|
|
it('on pools and lanes', function(done) {
|
|
var xml = require('../../../fixtures/bpmn/import/labels/collaboration.bpmn');
|
|
bootstrapViewer(xml)(done);
|
|
});
|
|
|
|
|
|
it('on message flows', function(done) {
|
|
var xml = require('../../../fixtures/bpmn/import/labels/collaboration-message-flows.bpmn');
|
|
bootstrapViewer(xml)(done);
|
|
});
|
|
|
|
});
|
|
|
|
|
|
describe('should import external labels', function() {
|
|
|
|
it('with di', function(done) {
|
|
var xml = require('../../../fixtures/bpmn/import/labels/external.bpmn');
|
|
|
|
// given
|
|
bootstrapViewer(xml)(function(err) {
|
|
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
// when
|
|
inject(function(elementRegistry) {
|
|
|
|
var endEvent = elementRegistry.get('EndEvent_1'),
|
|
sequenceFlow = elementRegistry.get('SequenceFlow_1');
|
|
|
|
// then
|
|
expect(endEvent.label).to.have.bounds({ x: 211, y: 256, width: 119, height: 44 });
|
|
expect(sequenceFlow.label).to.have.bounds({ x: 432, y: 317, width: 99, height: 22 });
|
|
|
|
done();
|
|
})();
|
|
|
|
});
|
|
});
|
|
|
|
|
|
it('without di', function(done) {
|
|
var xml = require('../../../fixtures/bpmn/import/labels/external-no-di.bpmn');
|
|
bootstrapViewer(xml)(done);
|
|
});
|
|
|
|
});
|
|
|
|
}); |