summaryrefslogtreecommitdiff
path: root/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html
diff options
context:
space:
mode:
authorChris Schlaeger <chris@linux.com>2015-10-17 21:36:38 +0200
committerChris Schlaeger <chris@linux.com>2015-10-17 21:36:38 +0200
commite30f267181d990947e67909de4809fa941698c85 (patch)
tree46e9f94c2b3699ed378963b420b8a8d361286ea1 /misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html
parente763ceb183f389fcd314a4a6a712d87c9d4cdb32 (diff)
downloadpostrunner-e30f267181d990947e67909de4809fa941698c85.zip
Upgrading openlayers to 3.x
Diffstat (limited to 'misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html')
-rw-r--r--misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html56
1 files changed, 0 insertions, 56 deletions
diff --git a/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html b/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html
deleted file mode 100644
index ea0be83..0000000
--- a/misc/openlayers/tests/Format/CSWGetDomain/v2_0_2.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<html>
-<head>
- <script src="../../OLLoader.js"></script>
- <script src="v2_0_2.js"></script>
- <script type="text/javascript">
-
- var format = new OpenLayers.Format.CSWGetDomain();
-
- function test_write(t) {
-
- t.plan(1);
-
- var options = {
- PropertyName: "type"
- };
-
- var result = format.write(options);
-
- t.eq(result, csw_request, "check value returned by format " +
- "CSWGetDomain: write method");
-
- }
-
-
- function test_read(t) {
-
- t.plan(9);
-
- var obj = format.read(csw_response);
-
- var domainValues = obj.DomainValues;
- // test getRecordsResponse object
- t.ok(domainValues, "object contains DomainValues property");
-
- // test DomainValues
- t.eq(domainValues.length, 1, "object contains 1 object in DomainValues");
- var domainValue = domainValues[0];
- t.eq(domainValue.type, "csw:Record", "check value for attribute type");
- t.eq(domainValue.PropertyName, "type", "check value for element PropertyName");
- t.ok(domainValue.ListOfValues, "object contains ListOfValues property");
-
- // test ListOfValues
- t.eq(domainValue.ListOfValues.length, 2, "object contains 2 objects " +
- "in ListOfValues");
- var val = domainValue.ListOfValues[0];
- t.ok(val.Value, "object contains Value property");
- t.eq(val.Value.my_attr, "my_value", "check value for attribute my_attr");
- t.eq(val.Value.value, "dataset", "check value for element Value");
-
- }
-
- </script>
-</head>
-<body>
-</body>
-</html>