From 1db1bb8216108a32b35c2f9eac981343b751885e Mon Sep 17 00:00:00 2001 From: jugglinmike Date: Fri, 25 Jun 2021 13:27:36 -0400 Subject: [PATCH] Resizable ArrayBuffer: SharedArrayBuffer ctor (#3023) * Add "feature" for "Resizable ArrayBuffer" proposal * Resizable ArrayBuffer: SharedArrayBuffer ctor --- .../options-maxbytelength-diminuitive.js | 22 +++++++++ .../options-maxbytelength-excessive.js | 28 ++++++++++++ .../options-maxbytelength-negative.js | 25 +++++++++++ .../options-maxbytelength-object.js | 45 +++++++++++++++++++ .../options-maxbytelength-poisoned.js | 29 ++++++++++++ .../options-maxbytelength-undefined.js | 24 ++++++++++ .../SharedArrayBuffer/options-non-object.js | 27 +++++++++++ 7 files changed, 200 insertions(+) create mode 100644 test/built-ins/SharedArrayBuffer/options-maxbytelength-diminuitive.js create mode 100644 test/built-ins/SharedArrayBuffer/options-maxbytelength-excessive.js create mode 100644 test/built-ins/SharedArrayBuffer/options-maxbytelength-negative.js create mode 100644 test/built-ins/SharedArrayBuffer/options-maxbytelength-object.js create mode 100644 test/built-ins/SharedArrayBuffer/options-maxbytelength-poisoned.js create mode 100644 test/built-ins/SharedArrayBuffer/options-maxbytelength-undefined.js create mode 100644 test/built-ins/SharedArrayBuffer/options-non-object.js diff --git a/test/built-ins/SharedArrayBuffer/options-maxbytelength-diminuitive.js b/test/built-ins/SharedArrayBuffer/options-maxbytelength-diminuitive.js new file mode 100644 index 0000000000..fa7a95e87b --- /dev/null +++ b/test/built-ins/SharedArrayBuffer/options-maxbytelength-diminuitive.js @@ -0,0 +1,22 @@ +// 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-sharedarraybuffer-constructor +description: | + Invoked with an options object whose `maxByteLength` property is less than + the length. +info: + SharedArrayBuffer( length [ , options ] ) + + 1. If NewTarget is undefined, throw a TypeError exception. + 2. Let byteLength be ? ToIndex(length). + 3. Let requestedMaxByteLength be ? GetArrayBufferMaxByteLengthOption(options). + 4. If requestedMaxByteLength is empty, then + a. [...] + 5. If byteLength > requestedMaxByteLength, throw a RangeError exception. +features: [resizable-arraybuffer] +---*/ + +assert.throws(RangeError, function() { + new SharedArrayBuffer(1, {maxByteLength: 0}); +}); diff --git a/test/built-ins/SharedArrayBuffer/options-maxbytelength-excessive.js b/test/built-ins/SharedArrayBuffer/options-maxbytelength-excessive.js new file mode 100644 index 0000000000..39f12d150d --- /dev/null +++ b/test/built-ins/SharedArrayBuffer/options-maxbytelength-excessive.js @@ -0,0 +1,28 @@ +// 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-sharedarraybuffer-constructor +description: | + Invoked with an options object whose `maxByteLength` property exceeds the + maximum length value +info: + SharedArrayBuffer( length [ , options ] ) + + 1. If NewTarget is undefined, throw a TypeError exception. + 2. Let byteLength be ? ToIndex(length). + 3. Let requestedMaxByteLength be ? GetArrayBufferMaxByteLengthOption(options). + [...] + + 1.1.5 GetArrayBufferMaxByteLengthOption ( options ) + + 1. If Type(options) is not Object, return empty. + 2. Let maxByteLength be ? Get(options, "maxByteLength"). + 3. If maxByteLength is undefined, return empty. + 4. Return ? ToIndex(maxByteLength). +features: [resizable-arraybuffer] +---*/ + +assert.throws(RangeError, function() { + // Math.pow(2, 53) = 9007199254740992 + new SharedArrayBuffer(0, { maxByteLength: 9007199254740992 }); +}); diff --git a/test/built-ins/SharedArrayBuffer/options-maxbytelength-negative.js b/test/built-ins/SharedArrayBuffer/options-maxbytelength-negative.js new file mode 100644 index 0000000000..717f218963 --- /dev/null +++ b/test/built-ins/SharedArrayBuffer/options-maxbytelength-negative.js @@ -0,0 +1,25 @@ +// 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-sharedarraybuffer-constructor +description: Invoked with an options object whose `maxByteLength` property is negative +info: + SharedArrayBuffer( length [ , options ] ) + + 1. If NewTarget is undefined, throw a TypeError exception. + 2. Let byteLength be ? ToIndex(length). + 3. Let requestedMaxByteLength be ? GetArrayBufferMaxByteLengthOption(options). + [...] + + 1.1.5 GetArrayBufferMaxByteLengthOption ( options ) + + 1. If Type(options) is not Object, return empty. + 2. Let maxByteLength be ? Get(options, "maxByteLength"). + 3. If maxByteLength is undefined, return empty. + 4. Return ? ToIndex(maxByteLength). +features: [resizable-arraybuffer] +---*/ + +assert.throws(RangeError, function() { + new SharedArrayBuffer(0, { maxByteLength: -1 }); +}); diff --git a/test/built-ins/SharedArrayBuffer/options-maxbytelength-object.js b/test/built-ins/SharedArrayBuffer/options-maxbytelength-object.js new file mode 100644 index 0000000000..304ec3ce99 --- /dev/null +++ b/test/built-ins/SharedArrayBuffer/options-maxbytelength-object.js @@ -0,0 +1,45 @@ +// 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-sharedarraybuffer-constructor +description: | + Invoked with an options object whose `maxByteLength` property cannot be + coerced to a primitive value +info: + SharedArrayBuffer( length [ , options ] ) + + 1. If NewTarget is undefined, throw a TypeError exception. + 2. Let byteLength be ? ToIndex(length). + 3. Let requestedMaxByteLength be ? GetArrayBufferMaxByteLengthOption(options). + [...] + + 1.1.5 GetArrayBufferMaxByteLengthOption ( options ) + + 1. If Type(options) is not Object, return empty. + 2. Let maxByteLength be ? Get(options, "maxByteLength"). + 3. If maxByteLength is undefined, return empty. + 4. Return ? ToIndex(maxByteLength). +features: [resizable-arraybuffer] +---*/ + +var log = []; +var options = { + maxByteLength: { + toString: function() { + log.push('toString'); + return {}; + }, + valueOf: function() { + log.push('valueOf'); + return {}; + } + } +}; + +assert.throws(TypeError, function() { + new SharedArrayBuffer(0, options); +}); + +assert.sameValue(log.length, 2); +assert.sameValue(log[0], 'valueOf'); +assert.sameValue(log[1], 'toString'); diff --git a/test/built-ins/SharedArrayBuffer/options-maxbytelength-poisoned.js b/test/built-ins/SharedArrayBuffer/options-maxbytelength-poisoned.js new file mode 100644 index 0000000000..2ae5aac72b --- /dev/null +++ b/test/built-ins/SharedArrayBuffer/options-maxbytelength-poisoned.js @@ -0,0 +1,29 @@ +// 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-sharedarraybuffer-constructor +description: Invoked with an options object whose `maxByteLength` property throws +info: | + SharedArrayBuffer( length [ , options ] ) + + 1. If NewTarget is undefined, throw a TypeError exception. + 2. Let byteLength be ? ToIndex(length). + 3. Let requestedMaxByteLength be ? GetArrayBufferMaxByteLengthOption(options). + [...] + + 1.1.5 GetArrayBufferMaxByteLengthOption ( options ) + + 1. If Type(options) is not Object, return empty. + 2. Let maxByteLength be ? Get(options, "maxByteLength"). +features: [resizable-arraybuffer] +---*/ + +var options = { + get maxByteLength() { + throw new Test262Error(); + } +}; + +assert.throws(Test262Error, function() { + new SharedArrayBuffer(0, options); +}); diff --git a/test/built-ins/SharedArrayBuffer/options-maxbytelength-undefined.js b/test/built-ins/SharedArrayBuffer/options-maxbytelength-undefined.js new file mode 100644 index 0000000000..9a539c8a1d --- /dev/null +++ b/test/built-ins/SharedArrayBuffer/options-maxbytelength-undefined.js @@ -0,0 +1,24 @@ +// 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-sharedarraybuffer-constructor +description: Invoked with an options object whose `maxByteLength` property is undefined +info: | + SharedArrayBuffer( length [ , options ] ) + + 1. If NewTarget is undefined, throw a TypeError exception. + 2. Let byteLength be ? ToIndex(length). + 3. Let requestedMaxByteLength be ? GetArrayBufferMaxByteLengthOption(options). + 4. If requestedMaxByteLength is empty, then + a. Return ? AllocateSharedArrayBuffer(NewTarget, byteLength). + + 1.1.5 GetArrayBufferMaxByteLengthOption ( options ) + + 1. If Type(options) is not Object, return empty. + 2. Let maxByteLength be ? Get(options, "maxByteLength"). + 3. If maxByteLength is undefined, return empty. +features: [resizable-arraybuffer] +---*/ + +assert.sameValue(new SharedArrayBuffer(0, {}).resizable, false); +assert.sameValue(new SharedArrayBuffer(0, {maxByteLength: undefined}).resizable, false); diff --git a/test/built-ins/SharedArrayBuffer/options-non-object.js b/test/built-ins/SharedArrayBuffer/options-non-object.js new file mode 100644 index 0000000000..3dd9c90d88 --- /dev/null +++ b/test/built-ins/SharedArrayBuffer/options-non-object.js @@ -0,0 +1,27 @@ +// 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-sharedarraybuffer-constructor +description: Invoked with a non-object value for options +info: | + SharedArrayBuffer( length [ , options ] ) + + 1. If NewTarget is undefined, throw a TypeError exception. + 2. Let byteLength be ? ToIndex(length). + 3. Let requestedMaxByteLength be ? GetArrayBufferMaxByteLengthOption(options). + 4. If requestedMaxByteLength is empty, then + a. Return ? AllocateArrayBuffer(NewTarget, byteLength). + + 1.1.5 GetArrayBufferMaxByteLengthOption ( options ) + + 1. If Type(options) is not Object, return empty. +features: [resizable-arraybuffer] +---*/ + +assert.sameValue(new SharedArrayBuffer(0, null).resizable, false, 'null'); +assert.sameValue(new SharedArrayBuffer(0, true).resizable, false, 'boolean'); +assert.sameValue(new SharedArrayBuffer(0, Symbol(3)).resizable, false, 'symbol'); +assert.sameValue(new SharedArrayBuffer(0, 1n).resizable, false, 'bigint'); +assert.sameValue(new SharedArrayBuffer(0, 'string').resizable, false, 'string'); +assert.sameValue(new SharedArrayBuffer(0, 9).resizable, false, 'number'); +assert.sameValue(new SharedArrayBuffer(0, undefined).resizable, false, 'undefined');