57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
|
import {
|
||
|
bootstrapModeler,
|
||
|
getBpmnJS,
|
||
|
inject
|
||
|
} from 'test/TestHelper';
|
||
|
|
||
|
import {
|
||
|
createCanvasEvent as canvasEvent
|
||
|
} from 'test/util/MockEvents';
|
||
|
|
||
|
import coreModule from 'lib/core';
|
||
|
import modelingModule from 'lib/features/modeling';
|
||
|
|
||
|
|
||
|
describe('features/modeling - ModelingFeedback', function() {
|
||
|
|
||
|
var collaborationDiagramXML = require('./ModelingFeedback.bpmn');
|
||
|
|
||
|
beforeEach(bootstrapModeler(collaborationDiagramXML, {
|
||
|
modules: [
|
||
|
coreModule,
|
||
|
modelingModule
|
||
|
]
|
||
|
}));
|
||
|
|
||
|
|
||
|
it('should indicate', inject(function(create, canvas, elementFactory, dragging) {
|
||
|
|
||
|
// given
|
||
|
var task = elementFactory.createShape({ type: 'bpmn:Task' });
|
||
|
|
||
|
var collaboration = canvas.getRootElement();
|
||
|
var collaborationGfx = canvas.getGraphics(collaboration);
|
||
|
|
||
|
create.start(canvasEvent({ x: 100, y: 100 }), task);
|
||
|
dragging.hover({ element: collaboration, gfx: collaborationGfx });
|
||
|
|
||
|
// when
|
||
|
dragging.end();
|
||
|
|
||
|
// then
|
||
|
expectTooltip('error', 'flow elements must be children of pools/participants');
|
||
|
}));
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
function expectTooltip(cls, message) {
|
||
|
|
||
|
return getBpmnJS().invoke(function(canvas) {
|
||
|
|
||
|
var tooltipEl = document.querySelector('[data-tooltip-id]', canvas.getContainer());
|
||
|
|
||
|
expect(tooltipEl.textContent).to.eql(message);
|
||
|
expect(tooltipEl.classList.contains(cls));
|
||
|
});
|
||
|
}
|