summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/proximity/DeviceProximityEvent_tests.js
blob: 4d3c00c0a3c5936aa2787b417130b6e03e4ffb8a (plain)
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
(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(new 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 (true)');

    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');
    }, 'type argument is instance of Boolean (false)');

    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_equals(event.type, 'test');
    }, 'type argument is string');

    test(function() {
        var event = new DeviceProximityEvent(new String('test'));
        assert_equals(event.type, 'test');
    }, 'type argument is instance of String');

    test(function() {
        var event = new DeviceProximityEvent(function test() {});
        assert_regexp_match(event.type, /function test.+{\s?}/);
    }, '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(new TypeError(), function() {
            new DeviceProximityEvent({
                toString: function() {
                    return function() {}
                }
            });
        });
    }, 'toString is of type function');

    //eventInitDict attribute tests
    test(function() {
        var event = new DeviceProximityEvent('test', undefined);
        assert_equals(event.value, Infinity);
        assert_equals(event.min, -Infinity);
        assert_equals(event.max, Infinity);
    }, 'eventInitDict argument sets to undefined');

    test(function() {
        var event = new DeviceProximityEvent('test', null);
        assert_equals(event.value, Infinity);
        assert_equals(event.min, -Infinity);
        assert_equals(event.max, Infinity);
    }, 'eventInitDict argument is null');

    test(function() {
        var date = new Date();
        assert_throws(new TypeError(), function() {
            new DeviceProximityEvent('test', date);
        });
    }, 'eventInitDict argument is Date object');

    test(function() {
        var regexp = /abc/;
        assert_throws(new TypeError(), function() {
            new DeviceProximityEvent('test', regexp);
        });
    }, 'eventInitDict argument is RegExp object');

    test(function() {
        assert_throws(new TypeError(), function() {
            new DeviceProximityEvent('test', false);
        });
    }, 'eventInitDict argument is boolean');

    test(function() {
        assert_throws(new TypeError(), function() {
            new DeviceProximityEvent('test', 123);
        });
    }, 'eventInitDict argument is number');

    test(function() {
        assert_throws(new TypeError(), function() {
            new DeviceProximityEvent('test', 'hello');
        });
    }, 'eventInitDict argument is string');

    //test readonly attribute unrestricted double value;
    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_idl_attribute(event, 'value', 'must have attribute value');
    }, 'value attribute exist');

     test(function() {
        var event = new DeviceProximityEvent('test');
        assert_readonly(event, 'value', 'readonly attribute value');
    }, 'value attribute is readonly');

    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_equals(event.value, Infinity);
    }, 'value initializes to positive Infinity');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: Infinity
        });
        assert_equals(event.value, Infinity);
    }, 'value set to positive Infinity');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: -Infinity
        });
        assert_equals(event.value, -Infinity);
    }, 'value set to negative Infinity');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: 0
        });
        assert_equals(event.value, 0);
    }, 'value set to 0');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: 1
        });
        assert_equals(event.value, 1);
    }, 'value set to 1');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: 0.5
        });
        assert_equals(event.value, 0.5);
    }, 'value set to 0.5');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: false
        });
        assert_equals(event.value, 0, 'value set to false, converts to 0.');
    }, 'value set to false');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: true
        });
        assert_equals(event.value, 1, 'value set to true, converts to 1.');
    }, 'value set to true');


    test(function() {
        var prop = {
            value: undefined
        };
        try {
            var event = new DeviceProximityEvent('test', prop);
            assert_true(isNaN(event.value));
        } catch(e) {
            assert_unreached('error message: ' + e.message);
        }
    }, 'value of undefined resolves to NaN');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: null
        });
        assert_equals(event.value, 0, 'value resolves to 0');
    }, 'value of null resolves to 0');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: ''
        });
        assert_equals(event.value, 0, 'value must resolve to 0');
    }, 'value of empty string must resolve to 0');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: '\u0020'
        });
        assert_equals(event.value, 0, 'value must resolve to 0');
    }, 'value of U+0020 must resolve to 0');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: '\u0020\u0020\u0020\u0020\u0020\u0020'
        });
        assert_equals(event.value, 0, 'value must resolve to 0');
    }, 'value of multiple U+0020 must resolve to 0');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: '\u0020\u0020\u00201234\u0020\u0020\u0020'
        });
        assert_equals(event.value, 1234, 'converts to 1234');
    }, 'value converts to 1234');

    test(function() {
        var event = new DeviceProximityEvent('test', {
            value: []
        });
        assert_equals(event.value, 0, 'converts to 0');
    }, 'value converts to 0');


    test(function() {
        var prop = {
            value: {}
        };
        try {
            var event = new DeviceProximityEvent('test', prop);
            assert_true(isNaN(event.value));
        } catch(e) {
            assert_unreached('error message: ' + e.message);
        }
    }, 'value of {} resolves to NaN');

    test(function() {
        var prop = {
            get value() {
                return NaN;
            }
        };
        try {
            var event = new DeviceProximityEvent('test', prop);
            assert_true(isNaN(event.value));
        } catch(e) {
            assert_unreached('error message: ' + e.message);
        }
    }, 'value resolves to NaN');

    test(function() {
        var prop = {
            get value() {
                return '123';
            }
        };
        var event = new DeviceProximityEvent('test', prop);
        assert_equals(event.value, 123, 'converts to 123');
    }, 'value resolves 123');

    //test readonly attribute unrestricted double min
   test(function() {
        var event = new DeviceProximityEvent('test');
        assert_idl_attribute(event, 'min', 'must have attribute min');
    }, 'min attribute exist');

    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_readonly(event, 'min', 'readonly attribute min');
    }, 'min attribute is readonly');

    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_equals(event.min, -Infinity);
    }, 'min initializes to negative Infinity');

    //test readonly attribute unrestricted double max;
    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_idl_attribute(event, 'max', 'must have attribute max');
    }, 'max attribute exist');

    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_readonly(event, 'max', 'readonly attribute max');
    }, 'max attribute is readonly');

    test(function() {
        var event = new DeviceProximityEvent('test');
        assert_equals(event.max, Infinity);
    }, 'max initializes to positive Infinity');

    //test attribute EventHandler ondeviceproximity;
    test(function() {
        var desc = 'Expected to find ondeviceproximity attribute on window object';
        assert_idl_attribute(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() {},
            descidl = 'Expected to find ondeviceproximity attribute on window object';
        assert_idl_attribute(window, 'ondeviceproximity', descidl);
        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 (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 received');
    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 received');
    window.ondeviceproximity = function(e) {
        t2.step(function() {
            var msg = 'expected instance of DeviceProximityEvent: ';
            assert_true(e instanceof window.DeviceProximityEvent, msg);
        });
        t2.done();
    };
})();