diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /js/src/tests/test262/language/expressions/strict-equals/bigint-and-string.js | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/language/expressions/strict-equals/bigint-and-string.js')
-rw-r--r-- | js/src/tests/test262/language/expressions/strict-equals/bigint-and-string.js | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/expressions/strict-equals/bigint-and-string.js b/js/src/tests/test262/language/expressions/strict-equals/bigint-and-string.js new file mode 100644 index 0000000000..826da77466 --- /dev/null +++ b/js/src/tests/test262/language/expressions/strict-equals/bigint-and-string.js @@ -0,0 +1,68 @@ +// Copyright (C) 2017 Josh Wolfe. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: Strict equality comparison of BigInt and String values +esid: sec-strict-equality-comparison +info: | + 1. If Type(x) is different from Type(y), return false. + +features: [BigInt] +---*/ +assert.sameValue(0n === '', false, 'The result of (0n === "") is false'); +assert.sameValue('' === 0n, false, 'The result of ("" === 0n) is false'); +assert.sameValue(0n === '-0', false, 'The result of (0n === "-0") is false'); +assert.sameValue('-0' === 0n, false, 'The result of ("-0" === 0n) is false'); +assert.sameValue(0n === '0', false, 'The result of (0n === "0") is false'); +assert.sameValue('0' === 0n, false, 'The result of ("0" === 0n) is false'); +assert.sameValue(0n === '-1', false, 'The result of (0n === "-1") is false'); +assert.sameValue('-1' === 0n, false, 'The result of ("-1" === 0n) is false'); +assert.sameValue(0n === '1', false, 'The result of (0n === "1") is false'); +assert.sameValue('1' === 0n, false, 'The result of ("1" === 0n) is false'); +assert.sameValue(0n === 'foo', false, 'The result of (0n === "foo") is false'); +assert.sameValue('foo' === 0n, false, 'The result of ("foo" === 0n) is false'); +assert.sameValue(1n === '', false, 'The result of (1n === "") is false'); +assert.sameValue('' === 1n, false, 'The result of ("" === 1n) is false'); +assert.sameValue(1n === '-0', false, 'The result of (1n === "-0") is false'); +assert.sameValue('-0' === 1n, false, 'The result of ("-0" === 1n) is false'); +assert.sameValue(1n === '0', false, 'The result of (1n === "0") is false'); +assert.sameValue('0' === 1n, false, 'The result of ("0" === 1n) is false'); +assert.sameValue(1n === '-1', false, 'The result of (1n === "-1") is false'); +assert.sameValue('-1' === 1n, false, 'The result of ("-1" === 1n) is false'); +assert.sameValue(1n === '1', false, 'The result of (1n === "1") is false'); +assert.sameValue('1' === 1n, false, 'The result of ("1" === 1n) is false'); +assert.sameValue(1n === 'foo', false, 'The result of (1n === "foo") is false'); +assert.sameValue('foo' === 1n, false, 'The result of ("foo" === 1n) is false'); +assert.sameValue(-1n === '-', false, 'The result of (-1n === "-") is false'); +assert.sameValue('-' === -1n, false, 'The result of ("-" === -1n) is false'); +assert.sameValue(-1n === '-0', false, 'The result of (-1n === "-0") is false'); +assert.sameValue('-0' === -1n, false, 'The result of ("-0" === -1n) is false'); +assert.sameValue(-1n === '-1', false, 'The result of (-1n === "-1") is false'); +assert.sameValue('-1' === -1n, false, 'The result of ("-1" === -1n) is false'); +assert.sameValue(-1n === '-foo', false, 'The result of (-1n === "-foo") is false'); +assert.sameValue('-foo' === -1n, false, 'The result of ("-foo" === -1n) is false'); + +assert.sameValue( + 900719925474099101n === '900719925474099101', + false, + 'The result of (900719925474099101n === "900719925474099101") is false' +); + +assert.sameValue( + '900719925474099101' === 900719925474099101n, + false, + 'The result of ("900719925474099101" === 900719925474099101n) is false' +); + +assert.sameValue( + 900719925474099102n === '900719925474099101', + false, + 'The result of (900719925474099102n === "900719925474099101") is false' +); + +assert.sameValue( + '900719925474099101' === 900719925474099102n, + false, + 'The result of ("900719925474099101" === 900719925474099102n) is false' +); + +reportCompare(0, 0); |