summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/array-includes.js
blob: 2cdd1123d711b03ad76a6a252d26f386b6a6d1fe (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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --harmony-array-includes

// Largely ported from
// https://github.com/tc39/Array.prototype.includes/tree/master/test
// using https://www.npmjs.org/package/test262-to-mjsunit with further edits


// Array.prototype.includes sees a new element added by a getter that is hit
// during iteration
(function() {
  var arrayLike = {
    length: 5,
    0: "a",

    get 1() {
      this[2] = "c";
      return "b";
    }
  };

  assertTrue(Array.prototype.includes.call(arrayLike, "c"));
})();


// Array.prototype.includes works on array-like objects
(function() {
  var arrayLike1 = {
    length: 5,
    0: "a",
    1: "b"
  };

  assertTrue(Array.prototype.includes.call(arrayLike1, "a"));
  assertFalse(Array.prototype.includes.call(arrayLike1, "c"));

  var arrayLike2 = {
    length: 2,
    0: "a",
    1: "b",
    2: "c"
  };

  assertTrue(Array.prototype.includes.call(arrayLike2, "b"));
  assertFalse(Array.prototype.includes.call(arrayLike2, "c"));
})();


// Array.prototype.includes should fail if used on a null or undefined this
(function() {
  assertThrows(function() {
    Array.prototype.includes.call(null, "a");
  }, TypeError);

  assertThrows(function() {
    Array.prototype.includes.call(undefined, "a");
  }, TypeError);
})();


// Array.prototype.includes should terminate if getting an index throws an
// exception
(function() {
  function Test262Error() {}

  var trappedZero = {
    length: 2,

    get 0() {
      throw new Test262Error();
    },

    get 1() {
      assertUnreachable("Should not try to get the first element");
    }
  };

  assertThrows(function() {
    Array.prototype.includes.call(trappedZero, "a");
  }, Test262Error);
})();


// Array.prototype.includes should terminate if ToNumber ends up being called on
// a symbol fromIndex
(function() {
  var trappedZero = {
    length: 1,

    get 0() {
      assertUnreachable("Should not try to get the zeroth element");
    }
  };

  assertThrows(function() {
    Array.prototype.includes.call(trappedZero, "a", Symbol());
  }, TypeError);
})();


// Array.prototype.includes should terminate if an exception occurs converting
// the fromIndex to a number
(function() {
  function Test262Error() {}

  var fromIndex = {
    valueOf: function() {
      throw new Test262Error();
    }
  };

  var trappedZero = {
    length: 1,

    get 0() {
      assertUnreachable("Should not try to get the zeroth element");
    }
  };

  assertThrows(function() {
    Array.prototype.includes.call(trappedZero, "a", fromIndex);
  }, Test262Error);
})();


// Array.prototype.includes should terminate if an exception occurs getting the
// length
(function() {
  function Test262Error() {}

  var fromIndexTrap = {
    valueOf: function() {
      assertUnreachable("Should not try to call ToInteger on valueOf");
    }
  };

  var throwingLength = {
    get length() {
      throw new Test262Error();
    },

    get 0() {
      assertUnreachable("Should not try to get the zeroth element");
    }
  };

  assertThrows(function() {
    Array.prototype.includes.call(throwingLength, "a", fromIndexTrap);
  }, Test262Error);
})();


// Array.prototype.includes should terminate if ToLength ends up being called on
// a symbol length
(function() {
  var fromIndexTrap = {
    valueOf: function() {
      assertUnreachable("Should not try to call ToInteger on valueOf");
    }
  };

  var badLength = {
    length: Symbol(),

    get 0() {
      assertUnreachable("Should not try to get the zeroth element");
    }
  };

  assertThrows(function() {
    Array.prototype.includes.call(badLength, "a", fromIndexTrap);
  }, TypeError);
})();


// Array.prototype.includes should terminate if an exception occurs converting
// the length to a number
(function() {
  function Test262Error() {}

  var fromIndexTrap = {
    valueOf: function() {
      assertUnreachable("Should not try to call ToInteger on valueOf");
    }
  };

  var badLength = {
    length: {
      valueOf: function() {
        throw new Test262Error();
      }
    },

    get 0() {
      assertUnreachable("Should not try to get the zeroth element");
    }
  };

  assertThrows(function() {
    Array.prototype.includes.call(badLength, "a", fromIndexTrap);
  }, Test262Error);
})();


// Array.prototype.includes should search the whole array, as the optional
// second argument fromIndex defaults to 0
(function() {
  assertTrue([10, 11].includes(10));
  assertTrue([10, 11].includes(11));

  var arrayLike = {
    length: 2,

    get 0() {
      return "1";
    },

    get 1() {
      return "2";
    }
  };

  assertTrue(Array.prototype.includes.call(arrayLike, "1"));
  assertTrue(Array.prototype.includes.call(arrayLike, "2"));
})();


// Array.prototype.includes returns false if fromIndex is greater or equal to
// the length of the array
(function() {
  assertFalse([1, 2].includes(2, 3));
  assertFalse([1, 2].includes(2, 2));

  var arrayLikeWithTrap = {
    length: 2,

    get 0() {
      assertUnreachable("Getter for 0 was called");
    },

    get 1() {
      assertUnreachable("Getter for 1 was called");
    }
  };

  assertFalse(Array.prototype.includes.call(arrayLikeWithTrap, "c", 2));
  assertFalse(Array.prototype.includes.call(arrayLikeWithTrap, "c", 3));
})();


// Array.prototype.includes searches the whole array if the computed index from
// the given negative fromIndex argument is less than 0
(function() {
  assertTrue([1, 3].includes(1, -4));
  assertTrue([1, 3].includes(3, -4));

  var arrayLike = {
    length: 2,
    0: "a",

    get 1() {
      return "b";
    },

    get "-1"() {
      assertUnreachable("Should not try to get the element at index -1");
    }
  };

  assertTrue(Array.prototype.includes.call(arrayLike, "a", -4));
  assertTrue(Array.prototype.includes.call(arrayLike, "b", -4));
})();


// Array.prototype.includes should use a negative value as the offset from the
// end of the array to compute fromIndex
(function() {
  assertTrue([12, 13].includes(13, -1));
  assertFalse([12, 13].includes(12, -1));
  assertTrue([12, 13].includes(12, -2));

  var arrayLike = {
    length: 2,

    get 0() {
      return "a";
    },

    get 1() {
      return "b";
    }
  };

  assertTrue(Array.prototype.includes.call(arrayLike, "b", -1));
  assertFalse(Array.prototype.includes.call(arrayLike, "a", -1));
  assertTrue(Array.prototype.includes.call(arrayLike, "a", -2));
})();


// Array.prototype.includes converts its fromIndex parameter to an integer
(function() {
  assertFalse(["a", "b"].includes("a", 2.3));

  var arrayLikeWithTraps = {
    length: 2,

    get 0() {
      assertUnreachable("Getter for 0 was called");
    },

    get 1() {
      assertUnreachable("Getter for 1 was called");
    }
  };

  assertFalse(Array.prototype.includes.call(arrayLikeWithTraps, "c", 2.1));
  assertFalse(Array.prototype.includes.call(arrayLikeWithTraps, "c", +Infinity));
  assertTrue(["a", "b", "c"].includes("a", -Infinity));
  assertTrue(["a", "b", "c"].includes("c", 2.9));
  assertTrue(["a", "b", "c"].includes("c", NaN));

  var arrayLikeWithTrapAfterZero = {
    length: 2,

    get 0() {
      return "a";
    },

    get 1() {
      assertUnreachable("Getter for 1 was called");
    }
  };

  assertTrue(Array.prototype.includes.call(arrayLikeWithTrapAfterZero, "a", NaN));

  var numberLike = {
    valueOf: function() {
      return 2;
    }
  };

  assertFalse(["a", "b", "c"].includes("a", numberLike));
  assertFalse(["a", "b", "c"].includes("a", "2"));
  assertTrue(["a", "b", "c"].includes("c", numberLike));
  assertTrue(["a", "b", "c"].includes("c", "2"));
})();


// Array.prototype.includes should have length 1
(function() {
  assertEquals(1, Array.prototype.includes.length);
})();


// Array.prototype.includes should have name property with value 'includes'
(function() {
  assertEquals("includes", Array.prototype.includes.name);
})();


// !!! Test failed to convert:
// Cannot convert tests with includes.
// !!!


// Array.prototype.includes does not skip holes; if the array has a prototype it
// gets from that
(function() {
  var holesEverywhere = [,,,];

  holesEverywhere.__proto__ = {
    1: "a"
  };

  holesEverywhere.__proto__.__proto__ = Array.prototype;
  assertTrue(holesEverywhere.includes("a"));
  var oneHole = ["a", "b",, "d"];

  oneHole.__proto__ = {
    get 2() {
      return "c";
    }
  };

  assertTrue(Array.prototype.includes.call(oneHole, "c"));
})();


// Array.prototype.includes does not skip holes; instead it treates them as
// undefined
(function() {
  assertTrue([,,,].includes(undefined));
  assertTrue(["a", "b",, "d"].includes(undefined));
})();


// Array.prototype.includes gets length property from the prototype if it's
// available
(function() {
  var proto = {
    length: 1
  };

  var arrayLike = Object.create(proto);
  arrayLike[0] = "a";

  Object.defineProperty(arrayLike, "1", {
    get: function() {
      assertUnreachable("Getter for 1 was called");
    }
  });

  assertTrue(Array.prototype.includes.call(arrayLike, "a"));
})();


// Array.prototype.includes treats a missing length property as zero
(function() {
  var arrayLikeWithTraps = {
    get 0() {
      assertUnreachable("Getter for 0 was called");
    },

    get 1() {
      assertUnreachable("Getter for 1 was called");
    }
  };

  assertFalse(Array.prototype.includes.call(arrayLikeWithTraps, "a"));
})();


// Array.prototype.includes should always return false on negative-length
// objects
(function() {
  assertFalse(Array.prototype.includes.call({
    length: -1
  }, 2));

  assertFalse(Array.prototype.includes.call({
    length: -2
  }));

  assertFalse(Array.prototype.includes.call({
    length: -Infinity
  }, undefined));

  assertFalse(Array.prototype.includes.call({
    length: -Math.pow(2, 53)
  }, NaN));

  assertFalse(Array.prototype.includes.call({
    length: -1,
    "-1": 2
  }, 2));

  assertFalse(Array.prototype.includes.call({
    length: -3,
    "-1": 2
  }, 2));

  assertFalse(Array.prototype.includes.call({
    length: -Infinity,
    "-1": 2
  }, 2));

  var arrayLikeWithTrap = {
    length: -1,

    get 0() {
      assertUnreachable("Getter for 0 was called");
    }
  };

  assertFalse(Array.prototype.includes.call(arrayLikeWithTrap, 2));
})();


// Array.prototype.includes should clamp positive lengths to 2^53 - 1
(function() {
  var fromIndexForLargeIndexTests = 9007199254740990;

  assertFalse(Array.prototype.includes.call({
    length: 1
  }, 2));

  assertTrue(Array.prototype.includes.call({
    length: 1,
    0: "a"
  }, "a"));

  assertTrue(Array.prototype.includes.call({
    length: +Infinity,
    0: "a"
  }, "a"));

  assertFalse(Array.prototype.includes.call({
    length: +Infinity
  }, "a", fromIndexForLargeIndexTests));

  var arrayLikeWithTrap = {
    length: +Infinity,

    get 9007199254740992() {
      assertUnreachable("Getter for 9007199254740992 (i.e. 2^53) was called");
    },

    "9007199254740993": "a"
  };

  assertFalse(
    Array.prototype.includes.call(arrayLikeWithTrap, "a", fromIndexForLargeIndexTests)
  );

  var arrayLikeWithTooBigLength = {
    length: 9007199254740996,
    "9007199254740992": "a"
  };

  assertFalse(
    Array.prototype.includes.call(arrayLikeWithTooBigLength, "a", fromIndexForLargeIndexTests)
  );
})();


// Array.prototype.includes should always return false on zero-length objects
(function() {
  assertFalse([].includes(2));
  assertFalse([].includes());
  assertFalse([].includes(undefined));
  assertFalse([].includes(NaN));

  assertFalse(Array.prototype.includes.call({
    length: 0
  }, 2));

  assertFalse(Array.prototype.includes.call({
    length: 0
  }));

  assertFalse(Array.prototype.includes.call({
    length: 0
  }, undefined));

  assertFalse(Array.prototype.includes.call({
    length: 0
  }, NaN));

  assertFalse(Array.prototype.includes.call({
    length: 0,
    0: 2
  }, 2));

  assertFalse(Array.prototype.includes.call({
    length: 0,
    0: undefined
  }));

  assertFalse(Array.prototype.includes.call({
    length: 0,
    0: undefined
  }, undefined));

  assertFalse(Array.prototype.includes.call({
    length: 0,
    0: NaN
  }, NaN));

  var arrayLikeWithTrap = {
    length: 0,

    get 0() {
      assertUnreachable("Getter for 0 was called");
    }
  };

  Array.prototype.includes.call(arrayLikeWithTrap);

  var trappedFromIndex = {
    valueOf: function() {
      assertUnreachable("Should not try to convert fromIndex to a number on a zero-length array");
    }
  };

  [].includes("a", trappedFromIndex);

  Array.prototype.includes.call({
    length: 0
  }, trappedFromIndex);
})();


// Array.prototype.includes works on objects
(function() {
  assertFalse(["a", "b", "c"].includes({}));
  assertFalse([{}, {}].includes({}));
  var obj = {};
  assertTrue([obj].includes(obj));
  assertFalse([obj].includes(obj, 1));
  assertTrue([obj, obj].includes(obj, 1));

  var stringyObject = {
    toString: function() {
      return "a";
    }
  };

  assertFalse(["a", "b", obj].includes(stringyObject));
})();


// Array.prototype.includes does not see an element removed by a getter that is
// hit during iteration
(function() {
  var arrayLike = {
    length: 5,
    0: "a",

    get 1() {
      delete this[2];
      return "b";
    },

    2: "c"
  };

  assertFalse(Array.prototype.includes.call(arrayLike, "c"));
})();


// Array.prototype.includes should use the SameValueZero algorithm to compare
(function() {
  assertTrue([1, 2, 3].includes(2));
  assertFalse([1, 2, 3].includes(4));
  assertTrue([1, 2, NaN].includes(NaN));
  assertTrue([1, 2, -0].includes(+0));
  assertTrue([1, 2, -0].includes(-0));
  assertTrue([1, 2, +0].includes(-0));
  assertTrue([1, 2, +0].includes(+0));
  assertFalse([1, 2, -Infinity].includes(+Infinity));
  assertTrue([1, 2, -Infinity].includes(-Infinity));
  assertFalse([1, 2, +Infinity].includes(-Infinity));
  assertTrue([1, 2, +Infinity].includes(+Infinity));
})();


// Array.prototype.includes stops once it hits the length of an array-like, even
// if there are more after
(function() {
  var arrayLike = {
    length: 2,
    0: "a",
    1: "b",

    get 2() {
      assertUnreachable("Should not try to get the second element");
    }
  };

  assertFalse(Array.prototype.includes.call(arrayLike, "c"));
})();


// Array.prototype.includes works on typed arrays
(function() {
  assertTrue(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 2));

  assertTrue(
    Array.prototype.includes.call(new Float32Array([2.5, 3.14, Math.PI]), 3.1415927410125732)
  );

  assertFalse(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 4));
  assertFalse(Array.prototype.includes.call(new Uint8Array([1, 2, 3]), 2, 2));
})();