mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-11 17:44:12 +00:00
test(modeling/layout): add integration test for reconnection
This commit is contained in:
parent
76ed2b4c26
commit
6a396fb947
@ -108,6 +108,62 @@ describe('features/modeling - layout connection', function() {
|
|||||||
]);
|
]);
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
describe('integration', function() {
|
||||||
|
|
||||||
|
it('should correctly layout after start re-connection', inject(function(elementRegistry, modeling) {
|
||||||
|
|
||||||
|
// given
|
||||||
|
var task1 = elementRegistry.get('Task_1'),
|
||||||
|
connection = elementRegistry.get('SequenceFlow_1'),
|
||||||
|
docking = { x: 292, y: 376 };
|
||||||
|
|
||||||
|
// when
|
||||||
|
modeling.reconnectStart(connection, task1, docking);
|
||||||
|
|
||||||
|
// then
|
||||||
|
var waypoints = connection.waypoints,
|
||||||
|
i,
|
||||||
|
first,
|
||||||
|
second;
|
||||||
|
|
||||||
|
for (i = 0; i < waypoints.length - 1; i++) {
|
||||||
|
first = waypoints[i];
|
||||||
|
second = waypoints[i + 1];
|
||||||
|
|
||||||
|
expect(areOnSameAxis(first, second), 'points are on different axes').to.be.true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}));
|
||||||
|
|
||||||
|
|
||||||
|
it('should correctly layout after end re-connection', inject(function(elementRegistry, modeling) {
|
||||||
|
|
||||||
|
// given
|
||||||
|
var task1 = elementRegistry.get('Task_1'),
|
||||||
|
connection = elementRegistry.get('SequenceFlow_1'),
|
||||||
|
docking = { x: 292, y: 376 };
|
||||||
|
|
||||||
|
// when
|
||||||
|
modeling.reconnectEnd(connection, task1, docking);
|
||||||
|
|
||||||
|
// then
|
||||||
|
var waypoints = connection.waypoints,
|
||||||
|
i,
|
||||||
|
first,
|
||||||
|
second;
|
||||||
|
|
||||||
|
for (i = 0; i < waypoints.length - 1; i++) {
|
||||||
|
first = waypoints[i];
|
||||||
|
second = waypoints[i + 1];
|
||||||
|
|
||||||
|
expect(areOnSameAxis(first, second), 'points are on different axes').to.be.true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}));
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
@ -119,4 +175,8 @@ function toPoint(p) {
|
|||||||
x: p.x,
|
x: p.x,
|
||||||
y: p.y
|
y: p.y
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function areOnSameAxis(a, b) {
|
||||||
|
return a.x === b.x || a.y === b.y;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user