keys-spec.js
6.45 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
* Copyright 2014,2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
ONOS GUI -- Key Handler Service - Unit Tests
*/
describe('factory: fw/util/keys.js', function() {
var $log, ks, fs,
d3Elem, elem, last;
beforeEach(module('onosUtil'));
beforeEach(inject(function (_$log_, KeyService, FnService) {
$log = _$log_;
ks = KeyService;
fs = FnService;
d3Elem = d3.select('body').append('p').attr('id', 'ptest');
elem = d3Elem.node();
ks.installOn(d3Elem);
last = {
view: null,
key: null,
code: null,
ev: null
};
}));
afterEach(function () {
d3.select('#ptest').remove();
});
// Code to emulate key presses....
// NOTE: kinda messy, but it seems to get the job done.
function jsKeyDown(element, code) {
var ev = document.createEvent('KeyboardEvent');
// Chromium Hack
if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1) {
Object.defineProperty(ev, 'keyCode', {
get: function () { return this.keyCodeVal; }
});
Object.defineProperty(ev, 'which', {
get: function () { return this.keyCodeVal; }
});
}
if (ev.initKeyboardEvent) {
ev.initKeyboardEvent('keydown', true, true, document.defaultView,
false, false, false, false, code, code);
} else {
ev.initKeyEvent('keydown', true, true, document.defaultView,
false, false, false, false, code, 0);
}
ev.keyCodeVal = code;
if (ev.keyCode !== code) {
console.warn("keyCode mismatch " + ev.keyCode +
"(" + ev.which + ") -> "+ code);
}
element.dispatchEvent(ev);
}
// === Key binding related tests
it('should start with default key bindings', function () {
var state = ks.keyBindings(),
gk = state.globalKeys,
mk = state.maskedKeys,
vk = state.viewKeys,
vf = state.viewFunction;
expect(gk.length).toEqual(4);
['backSlash', 'slash', 'esc', 'T'].forEach(function (k) {
expect(fs.contains(gk, k)).toBeTruthy();
});
expect(mk.length).toEqual(3);
['backSlash', 'slash', 'T'].forEach(function (k) {
expect(fs.contains(mk, k)).toBeTruthy();
});
expect(vk.length).toEqual(0);
expect(vf).toBeFalsy();
});
function bindTestKeys(withDescs) {
var keys = ['A', '1', 'F5', 'equals'],
kb = {};
function cb(view, key, code, ev) {
last.view = view;
last.key = key;
last.code = code;
last.ev = ev;
}
function bind(k) {
return withDescs ? [cb, 'desc for key ' + k] : cb;
}
keys.forEach(function (k) {
kb[k] = bind(k);
});
ks.keyBindings(kb);
}
function verifyCall(key, code) {
// TODO: update expectation, when view tokens are implemented
expect(last.view).toEqual('NotYetAViewToken');
last.view = null;
expect(last.key).toEqual(key);
last.key = null;
expect(last.code).toEqual(code);
last.code = null;
expect(last.ev).toBeTruthy();
last.ev = null;
}
function verifyNoCall() {
expect(last.view).toBeNull();
expect(last.key).toBeNull();
expect(last.code).toBeNull();
expect(last.ev).toBeNull();
}
function verifyTestKeys() {
jsKeyDown(elem, 65); // 'A'
verifyCall('A', 65);
jsKeyDown(elem, 66); // 'B'
verifyNoCall();
jsKeyDown(elem, 49); // '1'
verifyCall('1', 49);
jsKeyDown(elem, 50); // '2'
verifyNoCall();
jsKeyDown(elem, 116); // 'F5'
verifyCall('F5', 116);
jsKeyDown(elem, 117); // 'F6'
verifyNoCall();
jsKeyDown(elem, 187); // 'equals'
verifyCall('equals', 187);
jsKeyDown(elem, 189); // 'dash'
verifyNoCall();
var vk = ks.keyBindings().viewKeys;
expect(vk.length).toEqual(4);
['A', '1', 'F5', 'equals'].forEach(function (k) {
expect(fs.contains(vk, k)).toBeTruthy();
});
expect(ks.keyBindings().viewFunction).toBeFalsy();
}
it('should allow specific key bindings', function () {
bindTestKeys();
verifyTestKeys();
});
it('should allow specific key bindings with descriptions', function () {
bindTestKeys(true);
verifyTestKeys();
});
it('should warn about masked keys', function () {
var k = {'space': cb, 'T': cb},
count = 0;
function cb(token, key, code, ev) {
count++;
//console.debug('count = ' + count, token, key, code);
}
spyOn($log, 'warn');
ks.keyBindings(k);
expect($log.warn).toHaveBeenCalledWith('setKeyBindings(): Key "T" is reserved');
// the 'T' key should NOT invoke our callback
expect(count).toEqual(0);
jsKeyDown(elem, 84); // 'T'
expect(count).toEqual(0);
// but the 'space' key SHOULD invoke our callback
jsKeyDown(elem, 32); // 'space'
expect(count).toEqual(1);
});
// === Gesture notes related tests
it('should start with no notes', function () {
expect(ks.gestureNotes()).toEqual([]);
});
it('should allow us to add nodes', function () {
var notes = [
['one', 'something about one'],
['two', 'description of two']
];
ks.gestureNotes(notes);
expect(ks.gestureNotes()).toEqual(notes);
});
it('should ignore non-arrays', function () {
ks.gestureNotes({foo:4});
expect(ks.gestureNotes()).toEqual([]);
});
// Consider adding test to ensure array contains 2-tuples of strings
});