summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-same-buffer-same-type-resized.js
blob: 7cd14112265bba703597a946fb7e495cac7ff44a (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
// |reftest| skip -- resizable-arraybuffer is not supported
// Copyright (C) 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-%typedarray%.prototype.set-typedarray-offset
description: >
  Set values from different instances using the same buffer and same
  constructor when underlying ArrayBuffer has been resized
includes: [testTypedArray.js, compareArray.js]
features: [TypedArray, resizable-arraybuffer]
---*/

assert.sameValue(
  typeof ArrayBuffer.prototype.resize,
  'function',
  'implements ArrayBuffer.prototype.resize'
);

testWithTypedArrayConstructors(function(TA) {
  var BPE = TA.BYTES_PER_ELEMENT;
  var ab = new ArrayBuffer(BPE * 4, {maxByteLength: BPE * 5});
  var source = new TA(ab);
  var target = new TA(ab);
  var expected = [10, 20, 30, 40];

  source[0] = 10;
  source[1] = 20;
  source[2] = 30;
  source[3] = 40;

  try {
    ab.resize(BPE * 5);
    expected = [10, 20, 30, 40, 0];
  } catch (_) {}

  target.set(source);
  assert(compareArray(target, expected), 'following grow');

  try {
    ab.resize(BPE * 3);
    expected = [10, 20, 30];
  } catch (_) {}

  target.set(source);
  assert(compareArray(target, expected), 'following shrink');
});

reportCompare(0, 0);