mirror of
https://github.com/stylersnico/librenms.git
synced 2026-08-02 00:32:09 +02:00
More tests for #200, this was really bugged!
This commit is contained in:
+80
-23
@@ -47,40 +47,97 @@
|
|||||||
expect(callback.called).to.be(true);
|
expect(callback.called).to.be(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('fires events for nonpoint data after being removed and re-added to the map', function () {
|
it('is fired for a cluster click', function () {
|
||||||
var callback = sinon.spy();
|
|
||||||
var group = new L.MarkerClusterGroup();
|
|
||||||
|
|
||||||
var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]);
|
|
||||||
|
|
||||||
group.on('click', callback);
|
|
||||||
group.addLayer(polygon);
|
|
||||||
map.addLayer(group);
|
|
||||||
map.removeLayer(group);
|
|
||||||
map.addLayer(group);
|
|
||||||
|
|
||||||
polygon.fire('click');
|
|
||||||
|
|
||||||
expect(callback.called).to.be(true);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('fires events for point data after being removed and re-added to the map', function () {
|
|
||||||
var callback = sinon.spy();
|
var callback = sinon.spy();
|
||||||
var group = new L.MarkerClusterGroup();
|
var group = new L.MarkerClusterGroup();
|
||||||
|
|
||||||
var marker = new L.Marker([1.5, 1.5]);
|
var marker = new L.Marker([1.5, 1.5]);
|
||||||
|
var marker2 = new L.Marker([1.5, 1.5]);
|
||||||
|
|
||||||
group.on('click', callback);
|
group.on('clusterclick', callback);
|
||||||
group.addLayer(marker);
|
group.addLayers([marker, marker2]);
|
||||||
map.addLayer(group);
|
|
||||||
map.removeLayer(group);
|
|
||||||
map.addLayer(group);
|
map.addLayer(group);
|
||||||
|
|
||||||
marker.fire('click');
|
var cluster = group.getVisibleParent(marker);
|
||||||
|
expect(cluster instanceof L.MarkerCluster).to.be(true);
|
||||||
|
|
||||||
|
cluster.fire('click');
|
||||||
|
|
||||||
expect(callback.called).to.be(true);
|
expect(callback.called).to.be(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('after being added, removed, re-added from the map', function() {
|
||||||
|
it('still fires events for nonpoint data', function() {
|
||||||
|
var callback = sinon.spy();
|
||||||
|
var group = new L.MarkerClusterGroup();
|
||||||
|
|
||||||
|
var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]);
|
||||||
|
|
||||||
|
group.on('click', callback);
|
||||||
|
group.addLayer(polygon);
|
||||||
|
map.addLayer(group);
|
||||||
|
map.removeLayer(group);
|
||||||
|
map.addLayer(group);
|
||||||
|
|
||||||
|
polygon.fire('click');
|
||||||
|
|
||||||
|
expect(callback.called).to.be(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('still fires events for point data', function() {
|
||||||
|
var callback = sinon.spy();
|
||||||
|
var group = new L.MarkerClusterGroup();
|
||||||
|
|
||||||
|
var marker = new L.Marker([1.5, 1.5]);
|
||||||
|
|
||||||
|
group.on('click', callback);
|
||||||
|
group.addLayer(marker);
|
||||||
|
map.addLayer(group);
|
||||||
|
map.removeLayer(group);
|
||||||
|
map.addLayer(group);
|
||||||
|
|
||||||
|
marker.fire('click');
|
||||||
|
|
||||||
|
expect(callback.called).to.be(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('still fires cluster events', function() {
|
||||||
|
var callback = sinon.spy();
|
||||||
|
var group = new L.MarkerClusterGroup();
|
||||||
|
|
||||||
|
var marker = new L.Marker([1.5, 1.5]);
|
||||||
|
var marker2 = new L.Marker([1.5, 1.5]);
|
||||||
|
|
||||||
|
group.on('clusterclick', callback);
|
||||||
|
group.addLayers([marker, marker2]);
|
||||||
|
map.addLayer(group);
|
||||||
|
|
||||||
|
map.removeLayer(group);
|
||||||
|
map.addLayer(group);
|
||||||
|
|
||||||
|
var cluster = group.getVisibleParent(marker);
|
||||||
|
expect(cluster instanceof L.MarkerCluster).to.be(true);
|
||||||
|
|
||||||
|
cluster.fire('click');
|
||||||
|
|
||||||
|
expect(callback.called).to.be(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('doesnt break map events', function () {
|
||||||
|
var callback = sinon.spy();
|
||||||
|
var group = new L.MarkerClusterGroup();
|
||||||
|
|
||||||
|
map.on('zoomend', callback);
|
||||||
|
map.addLayer(group);
|
||||||
|
|
||||||
|
map.removeLayer(group);
|
||||||
|
map.addLayer(group);
|
||||||
|
|
||||||
|
map.fire('zoomend');
|
||||||
|
|
||||||
|
expect(callback.called).to.be(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
/*
|
/*
|
||||||
//No normal events can be fired by a clustered marker, so probably don't need this.
|
//No normal events can be fired by a clustered marker, so probably don't need this.
|
||||||
it('is fired for a clustered child marker', function() {
|
it('is fired for a clustered child marker', function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user