-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDeviceProximityEvent_tests.js
313 lines (269 loc) · 10.9 KB
/
DeviceProximityEvent_tests.js
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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/**
* DeviceProximityEvent_tests.js
* This is the unofficial, unapproved, tell all, test suite for the
* DeviceProximityEvent API of the W3C Proximity Event specification.
*
* Public Domain Software
* To the extent possible under law, Marcos Caceres has waived all copyright and
* related or neighboring rights to DeviceProximityEvent Implementation.
**/
(function() {
//inheritance tests
test(function() {
var event = new DeviceProximityEvent('');
assert_true(event instanceof window.DeviceProximityEvent);
}, 'the event is an instance of DeviceProximityEvent');
test(function() {
var event = new DeviceProximityEvent('');
assert_true(event instanceof window.Event);
}, 'the event inherits from Event');
//Type attribute tests
test(function() {
assert_throws(TypeError(), function() {
new DeviceProximityEvent();
}, 'First argument is required, so was expecting a TypeError.');
}, 'Missing type argument');
test(function() {
var event = new DeviceProximityEvent(undefined);
assert_equals(event.type, 'undefined');
}, 'Event type set to undefined');
test(function() {
var event = new DeviceProximityEvent(null);
assert_equals(event.type, 'null');
}, 'type argument is null');
test(function() {
var event = new DeviceProximityEvent(123);
assert_equals(event.type, '123');
}, 'type argument is number');
test(function() {
var event = new DeviceProximityEvent(new Number(123));
assert_equals(event.type, '123');
}, 'type argument is Number');
test(function() {
var event = new DeviceProximityEvent([]);
assert_equals(event.type, '');
}, 'type argument is array');
test(function() {
var event = new DeviceProximityEvent(new Array());
assert_equals(event.type, '');
}, 'type argument is instance of Array');
test(function() {
var event = new DeviceProximityEvent(['t', ['e', ['s', ['t']]]]);
assert_equals(event.type, 't,e,s,t');
}, 'type argument is nested array');
test(function() {
var event = new DeviceProximityEvent(Math);
assert_equals(event.type, '[object Math]');
}, 'type argument is host object');
test(function() {
var event = new DeviceProximityEvent(true);
assert_equals(event.type, 'true');
}, 'type argument is boolean (true)');
test(function() {
var event = new DeviceProximityEvent(new Boolean(true));
assert_equals(event.type, 'true');
}, 'type argument is instance of boolean');
test(function() {
var event = new DeviceProximityEvent(false);
assert_equals(event.type, 'false');
}, 'type argument is boolean (false)');
test(function() {
var event = new DeviceProximityEvent(new Boolean(false));
assert_equals(event.type, 'false');
}, '');
test(function() {
var event = new DeviceProximityEvent('test');
assert_equals(event.type, 'test');
}, 'type argument is instance of boolean (false)');
test(function() {
var event = new DeviceProximityEvent(new String('test'));
assert_equals(event.type, 'test');
}, 'type argument is string');
test(function() {
var event = new DeviceProximityEvent(function test() {});
assert_equals(event.type, 'function test() {}');
}, 'type argument is function');
test(function() {
var event = new DeviceProximityEvent({
toString: function() {
return '123';
}
});
assert_equals(event.type, '123');
}, 'type argument is complext object, with toString method');
test(function() {
assert_throws(TypeError(), function() {
new DeviceProximityEvent({
toString: function() {
return function() {}
}
});
});
}, 'toString is of type function');
//test the attributes exist
test(function() {
var event = new DeviceProximityEvent('test');
assert_own_property(event, 'value', 'must have attribute value');
}, 'value attribute exist');
test(function() {
var event = new DeviceProximityEvent('test');
assert_own_property(event, 'min', 'must have attribute min');
}, 'min attribute exist');
test(function() {
var event = new DeviceProximityEvent('test');
assert_own_property(event, 'max', 'must have attribute max');
}, 'max attribute exist');
//test readonly attribute double value;
test(function() {
var event = new DeviceProximityEvent('test');
assert_readonly(event, 'value', 'readonly attribute value');
}, 'value attribute is readonly');
//test readonly attribute double min
test(function() {
var event = new DeviceProximityEvent('test');
assert_readonly(event, 'min', 'readonly attribute min');
}, 'min attribute is readonly');
//readonly attribute double max;
test(function() {
var event = new DeviceProximityEvent('test');
assert_readonly(event, 'max', 'readonly attribute max');
}, 'max attribute is readonly');
test(function() {
var dic = {
min: 3,
max: 7,
value: 13
},
event = new DeviceProximityEvent('test', dic),
props = {
writable: false,
enumerable: true,
configurable: true
},
eProps = Object.getOwnPropertyDescriptor(event, 'max'),
writable = eProps.writable === props.writable,
enumerable = eProps.enumerable === props.enumerable,
config = eProps.configurable === props.configurable;
assert_true(writable && enumerable && config);
}, 'min props check');
test(function() {
//the max attribute
var dic = {
min: 3,
max: 7,
value: 13
},
event = new DeviceProximityEvent('test', dic),
props = {
writable: false,
enumerable: true,
configurable: true
},
eProps = Object.getOwnPropertyDescriptor(event, 'max'),
writable = eProps.writable === props.writable,
enumerable = eProps.enumerable === props.enumerable,
config = eProps.configurable === props.configurable;
assert_true(writable && enumerable && config);
}, 'max props check');
test(function() {
var dic = {
min: 3,
max: 7,
value: 13
},
event = new DeviceProximityEvent('test', dic),
props = {
writable: false,
enumerable: true,
configurable: true
},
eProps = Object.getOwnPropertyDescriptor(event, 'value'),
writable = eProps.writable === props.writable,
enumerable = eProps.enumerable === props.enumerable,
config = eProps.configurable === props.configurable;
assert_true(writable && enumerable && config);
}, 'value props check');
test(function() {
var desc = 'Expected to find ondeviceproximity attribute on window object';
assert_own_property(window, 'ondeviceproximity', desc);
}, 'ondeviceproximity exists');
test(function() {
var desc = 'window.ondeviceproximity must be null';
assert_equals(window.ondeviceproximity, null, desc);
}, 'ondeviceproximity is null');
test(function() {
var desc = 'window.ondeviceproximity did not accept callable object',
func = function() {};
window.ondeviceproximity = func;
assert_equals(window.ondeviceproximity, func, desc);
}, 'ondeviceproximity is set to function');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable as null';
window.ondeviceproximity = function() {};
window.ondeviceproximity = {};
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat object as null');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable as null';
window.ondeviceproximity = function() {};
window.ondeviceproximity = {
call: 'test'
};
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat object with non-callable call property as null');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable as null',
test = function() {};
test.call = 'test';
window.ondeviceproximity = function() {};
window.ondeviceproximity = test;
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat object with non-callable call property as null');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable (string) as null';
window.ondeviceproximity = function() {};
window.ondeviceproximity = 'string';
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat string as null');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable (number) as null';
window.ondeviceproximity = function() {};
window.ondeviceproximity = 123;
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat number as null');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable (undefined) as null';
window.ondeviceproximity = function() {};
window.ondeviceproximity = undefined;
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat undefined as null');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable (array) as null';
window.ondeviceproximity = function() {};
window.ondeviceproximity = [];
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat array as null');
test(function() {
var desc = 'window.ondeviceproximity did not treat noncallable host object as null';
window.ondeviceproximity = function() {};
window.ondeviceproximity = Node;
assert_equals(window.ondeviceproximity, null, desc);
}, 'treat non-callable host object as null');
//Async tests
var t = async_test('test if device proximity event recieved');
window.addEventListener('deviceproximity', function(e) {
t.step(function() {
var msg = 'expected instance of DeviceProximityEvent: ';
assert_true(e instanceof window.DeviceProximityEvent, msg);
});
t.done();
});
var t2 = async_test('test if user proximity event recieved');
window.ondeviceproximity = function(e) {
t2.step(function() {
var msg = 'expected instance of DeviceProximityEvent: ';
assert_true(e instanceof window.DeviceProximityEvent, msg);
});
t2.done();
};
})();