1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<html>
<head>
<script src="OLLoader.js"></script>
<script type="text/javascript">
function test_initialize(t) {
t.plan(4);
var options = {};
var protocol = new OpenLayers.Protocol(options);
t.ok(protocol instanceof OpenLayers.Protocol,
"new OpenLayers.Protocol returns object" );
t.eq(protocol.options, options, "constructor sets this.options");
t.eq(protocol.options.filter, null, "constructor sets defaultFilter to null");
t.eq(protocol.autoDestroy, true, "constructor does not modify this.autoDestroy");
}
function test_read_defaultFilter(t) {
t.plan(4);
var protocol = new OpenLayers.Protocol({filter: "a"});
var options = {};
protocol.read(options);
// the line below is what happens in Protocol.WFS.v1::read
OpenLayers.Util.applyDefaults(options, protocol.options);
t.eq(options.filter, "a", "filter from protocol.options applied to options");
protocol.destroy();
var defaultFilter = 'a';
var options = {
defaultFilter: defaultFilter
};
protocol = new OpenLayers.Protocol(options);
var readFilter = 'b';
var options = { filter: readFilter };
protocol.read(options);
var filter = options.filter;
t.ok(filter instanceof OpenLayers.Filter.Logical, "read method merge default filter & options filter to a logical one");
t.eq(filter.type, OpenLayers.Filter.Logical.AND, "logical filter type is OpenLayers.Filter.Logical.AND");
t.eq(filter.filters, [defaultFilter, readFilter], "read method has merged filters");
protocol.destroy();
}
function test_destroy(t) {
t.plan(2);
var protocol = new OpenLayers.Protocol({
options: {foo: 'bar'},
format: 'foo'
});
protocol.destroy();
t.eq(protocol.format, null, "destroy nullify protocol.format");
t.eq(protocol.options, null, "destroy nullify protocol.options");
}
</script>
</head>
<body>
</body>
</html>
|