Skip to content
Snippets Groups Projects
Commit 42e8f9ad authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unit test for hideMarkersForDbOverlay

parent 4535ef09
No related branches found
No related tags found
1 merge request!5Frontend refactor
......@@ -345,6 +345,50 @@ describe('CustomMap', function() {
});
});
it("hideMarkersForDbOverlay", function() {
var map = helper.createCustomMap();
var reaction = helper.createReaction(map);
var alias = helper.createAlias(map);
map.getModel().addReaction(reaction);
map.getModel().addAlias(alias);
var oc = helper.createDbOverlay(map);
oc.getIdentifiedElements = function() {
return Promise.resolve([ new IdentifiedElement(reaction),new IdentifiedElement(alias), new IdentifiedElement({
objectId : "Point2D.Double[117.685546875, 204.6923828125001]",
modelId : map.getId(),
type : "POINT",
icon : "marker/empty.png"
}) ]);
};
return map.renderOverlayCollection({
overlayCollection : oc
}).then(function() {
return map.hideMarkersForDbOverlay(oc);
}).then(function() {
var markerCount = 0;
for ( var id in oc.reactionMarkers) {
if (oc.reactionMarkers.hasOwnProperty(id)) {
markerCount++;
}
}
for ( var id in oc.pointMarkers) {
if (oc.pointMarkers.hasOwnProperty(id)) {
markerCount++;
}
}
for ( var id in oc.aliasMarkers) {
if (oc.aliasMarkers.hasOwnProperty(id)) {
markerCount++;
}
}
assert.equal(0, markerCount);
});
});
it("clearDbOverlays", function() {
var map = helper.createCustomMap();
......
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment