forked from tc39/test262
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import relevant files from tc39#3888
- Loading branch information
Showing
6 changed files
with
1,562 additions
and
0 deletions.
There are no files selected for viewing
187 changes: 187 additions & 0 deletions
187
test/built-ins/TypedArray/prototype/set/target-grow-mid-iteration.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
// Copyright 2023 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 | ||
description: > | ||
TypedArray.p.set behaves correctly when the receiver is backed by a | ||
resizable buffer is grown mid-iteration due to a Proxy source | ||
includes: [compareArray.js] | ||
features: [resizable-arraybuffer] | ||
---*/ | ||
|
||
class MyUint8Array extends Uint8Array { | ||
} | ||
|
||
class MyFloat32Array extends Float32Array { | ||
} | ||
|
||
class MyBigInt64Array extends BigInt64Array { | ||
} | ||
|
||
const builtinCtors = [ | ||
Uint8Array, | ||
Int8Array, | ||
Uint16Array, | ||
Int16Array, | ||
Uint32Array, | ||
Int32Array, | ||
Float32Array, | ||
Float64Array, | ||
Uint8ClampedArray, | ||
BigUint64Array, | ||
BigInt64Array | ||
]; | ||
|
||
const ctors = [ | ||
...builtinCtors, | ||
MyUint8Array, | ||
MyFloat32Array, | ||
MyBigInt64Array | ||
]; | ||
|
||
function CreateResizableArrayBuffer(byteLength, maxByteLength) { | ||
return new ArrayBuffer(byteLength, { maxByteLength: maxByteLength }); | ||
} | ||
|
||
function WriteToTypedArray(array, index, value) { | ||
if (array instanceof BigInt64Array || array instanceof BigUint64Array) { | ||
array[index] = BigInt(value); | ||
} else { | ||
array[index] = value; | ||
} | ||
} | ||
|
||
function Convert(item) { | ||
if (typeof item == 'bigint') { | ||
return Number(item); | ||
} | ||
return item; | ||
} | ||
|
||
function ToNumbers(array) { | ||
let result = []; | ||
for (let item of array) { | ||
result.push(Convert(item)); | ||
} | ||
return result; | ||
} | ||
|
||
// Orig. array: [0, 2, 4, 6] | ||
// [0, 2, 4, 6] << fixedLength | ||
// [4, 6] << fixedLengthWithOffset | ||
// [0, 2, 4, 6, ...] << lengthTracking | ||
// [4, 6, ...] << lengthTrackingWithOffset | ||
function CreateRabForTest(ctor) { | ||
const rab = CreateResizableArrayBuffer(4 * ctor.BYTES_PER_ELEMENT, 8 * ctor.BYTES_PER_ELEMENT); | ||
// Write some data into the array. | ||
const taWrite = new ctor(rab); | ||
for (let i = 0; i < 4; ++i) { | ||
WriteToTypedArray(taWrite, i, 2 * i); | ||
} | ||
return rab; | ||
} | ||
let rab; | ||
// Resizing will happen when we're calling Get for the `resizeAt`:th data | ||
// element, but we haven't yet written it to the target. | ||
let resizeAt; | ||
let resizeTo; | ||
function CreateSourceProxy(length) { | ||
let requestedIndices = []; | ||
return new Proxy({}, { | ||
get(target, prop, receiver) { | ||
if (prop == 'length') { | ||
return length; | ||
} | ||
requestedIndices.push(prop); | ||
if (requestedIndices.length == resizeAt) { | ||
rab.resize(resizeTo); | ||
} | ||
return true; // Can be converted to both BigInt and Number. | ||
} | ||
}); | ||
} | ||
for (let ctor of ctors) { | ||
rab = CreateRabForTest(ctor); | ||
const fixedLength = new ctor(rab, 0, 4); | ||
resizeAt = 2; | ||
resizeTo = 6 * ctor.BYTES_PER_ELEMENT; | ||
fixedLength.set(CreateSourceProxy(4)); | ||
assert.compareArray(ToNumbers(fixedLength), [ | ||
1, | ||
1, | ||
1, | ||
1 | ||
]); | ||
assert.compareArray(ToNumbers(new ctor(rab)), [ | ||
1, | ||
1, | ||
1, | ||
1, | ||
0, | ||
0 | ||
]); | ||
} | ||
for (let ctor of ctors) { | ||
rab = CreateRabForTest(ctor); | ||
const fixedLengthWithOffset = new ctor(rab, 2 * ctor.BYTES_PER_ELEMENT, 2); | ||
resizeAt = 1; | ||
resizeTo = 6 * ctor.BYTES_PER_ELEMENT; | ||
fixedLengthWithOffset.set(CreateSourceProxy(2)); | ||
assert.compareArray(ToNumbers(fixedLengthWithOffset), [ | ||
1, | ||
1 | ||
]); | ||
assert.compareArray(ToNumbers(new ctor(rab)), [ | ||
0, | ||
2, | ||
1, | ||
1, | ||
0, | ||
0 | ||
]); | ||
} | ||
for (let ctor of ctors) { | ||
rab = CreateRabForTest(ctor); | ||
const lengthTracking = new ctor(rab, 0); | ||
resizeAt = 2; | ||
resizeTo = 6 * ctor.BYTES_PER_ELEMENT; | ||
lengthTracking.set(CreateSourceProxy(2)); | ||
assert.compareArray(ToNumbers(lengthTracking), [ | ||
1, | ||
1, | ||
4, | ||
6, | ||
0, | ||
0 | ||
]); | ||
assert.compareArray(ToNumbers(new ctor(rab)), [ | ||
1, | ||
1, | ||
4, | ||
6, | ||
0, | ||
0 | ||
]); | ||
} | ||
for (let ctor of ctors) { | ||
rab = CreateRabForTest(ctor); | ||
const lengthTrackingWithOffset = new ctor(rab, 2 * ctor.BYTES_PER_ELEMENT); | ||
resizeAt = 1; | ||
resizeTo = 6 * ctor.BYTES_PER_ELEMENT; | ||
lengthTrackingWithOffset.set(CreateSourceProxy(2)); | ||
assert.compareArray(ToNumbers(lengthTrackingWithOffset), [ | ||
1, | ||
1, | ||
0, | ||
0 | ||
]); | ||
assert.compareArray(ToNumbers(new ctor(rab)), [ | ||
0, | ||
2, | ||
1, | ||
1, | ||
0, | ||
0 | ||
]); | ||
} |
132 changes: 132 additions & 0 deletions
132
test/built-ins/TypedArray/prototype/set/target-grow-source-length-getter.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
// Copyright 2023 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 | ||
description: > | ||
TypedArray.p.set behaves correctly when the receiver is backed by a | ||
resizable buffer is grown due to the source's length getter | ||
includes: [compareArray.js] | ||
features: [resizable-arraybuffer] | ||
---*/ | ||
|
||
class MyUint8Array extends Uint8Array { | ||
} | ||
|
||
class MyFloat32Array extends Float32Array { | ||
} | ||
|
||
class MyBigInt64Array extends BigInt64Array { | ||
} | ||
|
||
const builtinCtors = [ | ||
Uint8Array, | ||
Int8Array, | ||
Uint16Array, | ||
Int16Array, | ||
Uint32Array, | ||
Int32Array, | ||
Float32Array, | ||
Float64Array, | ||
Uint8ClampedArray, | ||
BigUint64Array, | ||
BigInt64Array | ||
]; | ||
|
||
const ctors = [ | ||
...builtinCtors, | ||
MyUint8Array, | ||
MyFloat32Array, | ||
MyBigInt64Array | ||
]; | ||
|
||
function CreateResizableArrayBuffer(byteLength, maxByteLength) { | ||
return new ArrayBuffer(byteLength, { maxByteLength: maxByteLength }); | ||
} | ||
|
||
function WriteToTypedArray(array, index, value) { | ||
if (array instanceof BigInt64Array || array instanceof BigUint64Array) { | ||
array[index] = BigInt(value); | ||
} else { | ||
array[index] = value; | ||
} | ||
} | ||
|
||
function Convert(item) { | ||
if (typeof item == 'bigint') { | ||
return Number(item); | ||
} | ||
return item; | ||
} | ||
|
||
function ToNumbers(array) { | ||
let result = []; | ||
for (let item of array) { | ||
result.push(Convert(item)); | ||
} | ||
return result; | ||
} | ||
|
||
// Orig. array: [0, 2, 4, 6] | ||
// [0, 2, 4, 6] << fixedLength | ||
// [4, 6] << fixedLengthWithOffset | ||
// [0, 2, 4, 6, ...] << lengthTracking | ||
// [4, 6, ...] << lengthTrackingWithOffset | ||
function CreateRabForTest(ctor) { | ||
const rab = CreateResizableArrayBuffer(4 * ctor.BYTES_PER_ELEMENT, 8 * ctor.BYTES_PER_ELEMENT); | ||
// Write some data into the array. | ||
const taWrite = new ctor(rab); | ||
for (let i = 0; i < 4; ++i) { | ||
WriteToTypedArray(taWrite, i, 2 * i); | ||
} | ||
return rab; | ||
} | ||
let rab; | ||
let resizeTo; | ||
function CreateSourceProxy(length) { | ||
return new Proxy({}, { | ||
get(target, prop, receiver) { | ||
if (prop == 'length') { | ||
rab.resize(resizeTo); | ||
return length; | ||
} | ||
return true; // Can be converted to both BigInt and Number. | ||
} | ||
}); | ||
} | ||
|
||
// Test that we still throw for lengthTracking TAs if the source length is | ||
// too large, even though we resized in the length getter (we check against | ||
// the original length). | ||
for (let ctor of ctors) { | ||
rab = CreateRabForTest(ctor); | ||
const lengthTracking = new ctor(rab, 0); | ||
resizeTo = 6 * ctor.BYTES_PER_ELEMENT; | ||
assert.throws(RangeError, () => { | ||
lengthTracking.set(CreateSourceProxy(6)); | ||
}); | ||
assert.compareArray(ToNumbers(new ctor(rab)), [ | ||
0, | ||
2, | ||
4, | ||
6, | ||
0, | ||
0 | ||
]); | ||
} | ||
for (let ctor of ctors) { | ||
rab = CreateRabForTest(ctor); | ||
const lengthTrackingWithOffset = new ctor(rab, 2 * ctor.BYTES_PER_ELEMENT); | ||
resizeTo = 6 * ctor.BYTES_PER_ELEMENT; | ||
assert.throws(RangeError, () => { | ||
lengthTrackingWithOffset.set(CreateSourceProxy(4)); | ||
}); | ||
assert.compareArray(ToNumbers(new ctor(rab)), [ | ||
0, | ||
2, | ||
4, | ||
6, | ||
0, | ||
0 | ||
]); | ||
} |
Oops, something went wrong.