summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/of/resized-with-out-of-bounds-and-in-bounds-indices.js
blob: 6e0ee8a25e819847e08fba0bfba95396a5a46c54 (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
// |reftest| shell-option(--enable-arraybuffer-resizable) skip-if(!ArrayBuffer.prototype.resize||!xulRuntime.shell) -- resizable-arraybuffer is not enabled unconditionally, requires shell-options
// Copyright (C) 2024 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-%typedarray%.of
description: >
  Performs Set operation which ignores out-of-bounds indices.
info: |
  %TypedArray%.of ( ...items )

  ...
  6. Repeat, while k < len,
    ...
    c. Perform ? Set(newObj, Pk, kValue, true).
    ...

features: [TypedArray, resizable-arraybuffer]
---*/

let rab = new ArrayBuffer(3, {maxByteLength: 4});
let ta = new Int8Array(rab);

let one = {
  valueOf() {
    // Shrink buffer. Assignment to `ta[0]` should be ignored.
    rab.resize(0);
    return 1;
  }
};

let two = {
  valueOf() {
    // Grow buffer. All following assignment should succeed.
    rab.resize(4);
    return 2;
  }
};

// Typed array is correctly zero initialised.
assert.sameValue(ta.length, 3);
assert.sameValue(ta[0], 0);
assert.sameValue(ta[1], 0);
assert.sameValue(ta[2], 0);

let result = Int8Array.of.call(function() {
  return ta;
}, one, two, 3);

// Correct result value.
assert.sameValue(result, ta);

// Values are correctly set.
assert.sameValue(ta.length, 4);
assert.sameValue(ta[0], 0);
assert.sameValue(ta[1], 2);
assert.sameValue(ta[2], 3);
assert.sameValue(ta[3], 0);

reportCompare(0, 0);