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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
<html>
<head>
<script src="../OLLoader.js"></script>
<script type="text/javascript">
var map;
function test_Control_KeyboardDefaults_constructor (t) {
t.plan( 2 );
control = new OpenLayers.Control.KeyboardDefaults();
t.ok( control instanceof OpenLayers.Control.KeyboardDefaults,
"new OpenLayers.Control.KeyboardDefaults returns object" );
t.eq( control.displayClass, "olControlKeyboardDefaults", "displayClass is correct" );
}
function test_Control_KeyboardDefaults_destroy (t) {
t.plan(2);
map = new OpenLayers.Map('map');
var control = new OpenLayers.Control.KeyboardDefaults();
map.addControl(control);
t.ok(control.handler != null, "control.handler is created");
control.destroy();
t.ok(control.handler == null, "control.handler is null after destroy");
map.destroy();
}
function test_Control_KeyboardDefaults_addControl (t) {
t.plan( 4 );
map = new OpenLayers.Map('map');
control = new OpenLayers.Control.KeyboardDefaults();
t.ok( control instanceof OpenLayers.Control.KeyboardDefaults,
"new OpenLayers.Control.KeyboardDefaults returns object" );
t.ok( map instanceof OpenLayers.Map,
"new OpenLayers.Map creates map" );
map.addControl(control);
t.ok( control.map === map, "Control.map is set to the map object" );
t.ok( OpenLayers.Util.indexOf(map.controls, control), "map.controls contains control" );
}
/* When interpretting
* the keycodes below (including the comments associated with them),
* consult the URL below. For instance, the Safari browser returns
* "IE keycodes", and so is supported by any keycode labeled "IE".
*
* Very informative URL:
* http://unixpapa.com/js/key.html
*/
function test_Control_KeyboardDefaults_KeyDownEvent (t) {
t.plan( 25 );
var evt = {which: 1}, pans = [], zoomIns = 0, zoomOuts = 0;
map = new OpenLayers.Map('map');
// mock "pan", "zoomIn" and "zoomOut"
map.pan = function(dx, dy) {
pans.push({dx: dx, dy: dy});
};
map.zoomIn = function() {
zoomIns++;
};
map.zoomOut = function() {
zoomOuts++;
};
var layer = new OpenLayers.Layer.WMS("Test Layer",
"http://octo.metacarta.com/cgi-bin/mapserv?",
{map: "/mapdata/vmap_wms.map", layers: "basic"});
map.addLayer(layer);
var control = new OpenLayers.Control.KeyboardDefaults({
slideFactor: 100
});
map.addControl(control);
map.setCenter(new OpenLayers.LonLat(0, 0), 4);
// Start new test.
evt.keyCode = OpenLayers.Event.KEY_LEFT;
control.defaultKeyPress(evt);
t.eq(pans.length, 1, '[KEY_LEFT] pan called once');
t.eq(pans[0], {dx: -100, dy: 0},
'[KEY LEFT] pan called with expected args');
evt.keyCode = OpenLayers.Event.KEY_RIGHT;
control.defaultKeyPress(evt);
t.eq(pans.length, 2, '[KEY_RIGHT] pan called once');
t.eq(pans[1], {dx: 100, dy: 0},
'[KEY RIGHT] pan called with expected args');
evt.keyCode = OpenLayers.Event.KEY_UP;
control.defaultKeyPress(evt);
t.eq(pans.length, 3, '[KEY_UP] pan called once');
t.eq(pans[2], {dx: 0, dy: -100},
'[KEY UP] pan called with expected args');
evt.keyCode = OpenLayers.Event.KEY_DOWN;
control.defaultKeyPress(evt);
t.eq(pans.length, 4, '[KEY_DOWN] pan called once');
t.eq(pans[3], {dx: 0, dy: 100},
'[KEY DOWN] pan called with expected args');
evt.keyCode = 33;
control.defaultKeyPress(evt);
t.eq(pans.length, 5, '[33] pan called once');
t.eq(pans[4], {dx: 0, dy: -384},
'[33] pan called with expected args');
evt.keyCode = 34;
control.defaultKeyPress(evt);
t.eq(pans.length, 6, '[34] pan called once');
t.eq(pans[5], {dx: 0, dy: 384},
'[34] pan called with expected args');
evt.keyCode = 35;
control.defaultKeyPress(evt);
t.eq(pans.length, 7, '[35] pan called once');
t.eq(pans[6], {dx: 768, dy: 0},
'[35] pan called with expected args');
evt.keyCode = 36;
control.defaultKeyPress(evt);
t.eq(pans.length, 8, '[36] pan called once');
t.eq(pans[7], {dx: -768, dy: 0},
'[36] pan called with expected args');
evt.keyCode = 43;
control.defaultKeyPress(evt);
t.eq(zoomIns, 1, '[43] zoomIn called once');
evt.keyCode = 61;
control.defaultKeyPress(evt);
t.eq(zoomIns, 2, '[61] zoomIn called once');
evt.keyCode = 187;
control.defaultKeyPress(evt);
t.eq(zoomIns, 3, '[187] zoomIn called once');
evt.keyCode = 107;
control.defaultKeyPress(evt);
t.eq(zoomIns, 4, '[107] zoomIn called once');
evt.keyCode = 107;
control.defaultKeyPress(evt);
t.eq(zoomIns, 5, '[107] zoomIn called once');
evt.keyCode = 45;
control.defaultKeyPress(evt);
t.eq(zoomOuts, 1, '[45] zoomOut called once');
evt.keyCode = 109;
control.defaultKeyPress(evt);
t.eq(zoomOuts, 2, '[109] zoomOut called once');
evt.keyCode = 189;
control.defaultKeyPress(evt);
t.eq(zoomOuts, 3, '[189] zoomOut called once');
evt.keyCode = 95;
control.defaultKeyPress(evt);
t.eq(zoomOuts, 4, '[95] zoomOut called once');
map.destroy();
}
</script>
</head>
<body>
<div id="map" style="width: 1024px; height: 512px;"/>
</body>
</html>
|