Files
openlayers/tests/Layer/test_GML.html
crschmidt 28659c9ebc Add setUrl function for GML layer. Thanks to a well done patch (with tests!)
from Ian Johnson. (Closes #1264)


git-svn-id: http://svn.openlayers.org/trunk/openlayers@5776 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
2008-01-16 17:07:20 +00:00

60 lines
1.7 KiB
HTML

<html>
<head>
<script src="../../lib/OpenLayers.js"></script>
<script type="text/javascript">
var name = "GML Layer";
var gml = "./owls.xml";
var gml2 = "./mice.xml";
// if this test is running online, different rules apply
var isMSIE = (navigator.userAgent.indexOf("MSIE") > -1);
if (isMSIE) {
gml = "." + gml;
}
function test_01_Layer_GML_constructor(t) {
t.plan(3);
var layer = new OpenLayers.Layer.GML(name);
t.ok(layer instanceof OpenLayers.Layer.GML, "new OpenLayers.Layer.GML returns correct object" );
t.eq(layer.name, name, "layer name is correctly set");
t.ok(layer.renderer.CLASS_NAME, "layer has a renderer");
}
function test_Layer_GML_events(t) {
t.plan(3);
var layer = new OpenLayers.Layer.GML(name, gml, {isBaseLayer: true});
layer.events.register("loadstart", layer, function() {
t.ok(true, "loadstart called.")
});
layer.events.register("loadend", layer, function() {
t.ok(true, "loadend called.")
});
var map = new OpenLayers.Map("map");
map.addLayer(layer);
map.zoomToMaxExtent();
t.delay_call(1, function() {
t.ok(true, "waited for 1s");
});
}
function test_GML_setUrl(t) {
t.plan(2);
var layer = new OpenLayers.Layer.GML(name, gml);
var map = new OpenLayers.Map("map");
map.addLayer(layer);
t.eq(layer.url, gml, "layer has correct original url");
layer.setUrl(gml2);
t.eq(layer.url, gml2, "layer has correctly changed url");
}
</script>
</head>
<body>
<div id="map" style="width:500px;height:550px"></div>
</body>
</html>