summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/fromAsync/this-constructor-with-readonly-elements.js
blob: 112824f6e6a346e35b7f9ed8f8eb7ff2d5bae0fe (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
// |reftest| async
// Copyright (C) 2023 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.fromasync
description: >
  Overwrites non-writable element properties on an instance of a custom
  this-value
info: |
  3.j.ii.8. Let _defineStatus_ be CreateDataPropertyOrThrow(_A_, _Pk_, _mappedValue_).
  ...
  3.k.vii.6. Perform ? CreateDataPropertyOrThrow(_A_, _Pk_, _mappedValue_).
includes: [asyncHelpers.js]
flags: [async]
features: [Array.fromAsync]
---*/

asyncTest(async function () {
  function MyArray() {
    this.length = 4;
    for (let ix = 0; ix < this.length; ix++) {
      Object.defineProperty(this, ix, {
        enumerable: true,
        writable: false,
        configurable: true,
        value: 99
      });
    }
  }

  let result = await Array.fromAsync.call(MyArray, [0, 1, 2]);
  assert.sameValue(result.length, 3, "Length property is overwritten");
  assert.sameValue(result[0], 0, "Read-only element 0 is overwritten");
  assert.sameValue(result[1], 1, "Read-only element 1 is overwritten");
  assert.sameValue(result[2], 2, "Read-only element 2 is overwritten");
  assert.sameValue(result[3], 99, "Element 3 is not overwritten");

  result = await Array.fromAsync.call(MyArray, {
    length: 3,
    0: 0,
    1: 1,
    2: 2,
    3: 3  // ignored
  });
  assert.sameValue(result.length, 3, "Length property is overwritten");
  assert.sameValue(result[0], 0, "Read-only element 0 is overwritten");
  assert.sameValue(result[1], 1, "Read-only element 1 is overwritten");
  assert.sameValue(result[2], 2, "Read-only element 2 is overwritten");
  assert.sameValue(result[3], 99, "Element 3 is not overwritten");
});