diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/test262/built-ins/BigInt/asIntN/bits-toindex-toprimitive.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/BigInt/asIntN/bits-toindex-toprimitive.js')
-rw-r--r-- | js/src/tests/test262/built-ins/BigInt/asIntN/bits-toindex-toprimitive.js | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/BigInt/asIntN/bits-toindex-toprimitive.js b/js/src/tests/test262/built-ins/BigInt/asIntN/bits-toindex-toprimitive.js new file mode 100644 index 0000000000..0e7ae76341 --- /dev/null +++ b/js/src/tests/test262/built-ins/BigInt/asIntN/bits-toindex-toprimitive.js @@ -0,0 +1,169 @@ +// Copyright (C) 2017 Josh Wolfe. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: BigInt.asIntN type coercion for bits parameter +esid: sec-bigint.asintn +info: | + BigInt.asIntN ( bits, bigint ) + + 1. Let bits be ? ToIndex(bits). +features: [BigInt, computed-property-names, Symbol, Symbol.toPrimitive] +---*/ +assert.sameValue(typeof BigInt, 'function'); +assert.sameValue(typeof BigInt.asIntN, 'function'); + +function err() { + throw new Test262Error(); +} + +function MyError() {} + +assert.sameValue(BigInt.asIntN({ + [Symbol.toPrimitive]: function() { + return 1; + }, + valueOf: err, + toString: err +}, 1n), -1n, "ToPrimitive: @@toPrimitive takes precedence"); +assert.sameValue(BigInt.asIntN({ + valueOf: function() { + return 1; + }, + toString: err +}, 1n), -1n, "ToPrimitive: valueOf takes precedence over toString"); +assert.sameValue(BigInt.asIntN({ + toString: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: toString with no valueOf"); +assert.sameValue(BigInt.asIntN({ + [Symbol.toPrimitive]: undefined, + valueOf: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: skip @@toPrimitive when it's undefined"); +assert.sameValue(BigInt.asIntN({ + [Symbol.toPrimitive]: null, + valueOf: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: skip @@toPrimitive when it's null"); +assert.sameValue(BigInt.asIntN({ + valueOf: null, + toString: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: skip valueOf when it's not callable"); +assert.sameValue(BigInt.asIntN({ + valueOf: 1, + toString: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: skip valueOf when it's not callable"); +assert.sameValue(BigInt.asIntN({ + valueOf: {}, + toString: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: skip valueOf when it's not callable"); +assert.sameValue(BigInt.asIntN({ + valueOf: function() { + return {}; + }, + toString: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: skip valueOf when it returns an object"); +assert.sameValue(BigInt.asIntN({ + valueOf: function() { + return Object(12345); + }, + toString: function() { + return 1; + } +}, 1n), -1n, "ToPrimitive: skip valueOf when it returns an object"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + [Symbol.toPrimitive]: 1 + }, 0n); +}, "ToPrimitive: throw when @@toPrimitive is not callable"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + [Symbol.toPrimitive]: {} + }, 0n); +}, "ToPrimitive: throw when @@toPrimitive is not callable"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + [Symbol.toPrimitive]: function() { + return Object(1); + } + }, 0n); +}, "ToPrimitive: throw when @@toPrimitive returns an object"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + [Symbol.toPrimitive]: function() { + return {}; + } + }, 0n); +}, "ToPrimitive: throw when @@toPrimitive returns an object"); +assert.throws(MyError, function() { + BigInt.asIntN({ + [Symbol.toPrimitive]: function() { + throw new MyError(); + } + }, 0n); +}, "ToPrimitive: propagate errors from @@toPrimitive"); +assert.throws(MyError, function() { + BigInt.asIntN({ + valueOf: function() { + throw new MyError(); + } + }, 0n); +}, "ToPrimitive: propagate errors from valueOf"); +assert.throws(MyError, function() { + BigInt.asIntN({ + toString: function() { + throw new MyError(); + } + }, 0n); +}, "ToPrimitive: propagate errors from toString"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + valueOf: null, + toString: null + }, 0n); +}, "ToPrimitive: throw when skipping both valueOf and toString"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + valueOf: 1, + toString: 1 + }, 0n); +}, "ToPrimitive: throw when skipping both valueOf and toString"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + valueOf: {}, + toString: {} + }, 0n); +}, "ToPrimitive: throw when skipping both valueOf and toString"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + valueOf: function() { + return Object(1); + }, + toString: function() { + return Object(1); + } + }, 0n); +}, "ToPrimitive: throw when skipping both valueOf and toString"); +assert.throws(TypeError, function() { + BigInt.asIntN({ + valueOf: function() { + return {}; + }, + toString: function() { + return {}; + } + }, 0n); +}, "ToPrimitive: throw when skipping both valueOf and toString"); + +reportCompare(0, 0); |