From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/tests/non262/Map/record-tuple.js | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 js/src/tests/non262/Map/record-tuple.js (limited to 'js/src/tests/non262/Map/record-tuple.js') diff --git a/js/src/tests/non262/Map/record-tuple.js b/js/src/tests/non262/Map/record-tuple.js new file mode 100644 index 0000000000..92c9d68414 --- /dev/null +++ b/js/src/tests/non262/Map/record-tuple.js @@ -0,0 +1,42 @@ +// |reftest| skip-if(!this.hasOwnProperty("Record")) + +function test(input, query, same) { + assertEq(set(input).has(query), same); + assertEq(new Map([[input, 1]]).has(query), same); + if (same) assertEq(new Map([[input, 1]]).get(query), 1); +} +function first(it) { + for (const v of it) return v; +} +function set(v) { + return new Set([v]); +} + + +test(#[0, 1], #[0, 1], true); +test(#[0, 1], #[1, 0], false); + +test(#{x: 1}, #{x: 1}, true); +test(#{x: 1}, #{y: 1}, false); +test(#{x: 1}, #{x: 0}, false); +test(#{x: 0, y: 1}, #{x: 0, y: 1}, true); +test(#{x: 0, y: 1}, #{y: 1, x: 0}, true); +test(#{x: 0, y: 1}, #{x: 1, y: 0}, false); +test(#{x: 0, y: 1}, #{x: 0, y: 0}, false); + +test(#[NaN], #[NaN], true); +test(#{x: NaN}, #{x: NaN}, true); +test(#[+0], #[-0], true); +test(#{x: +0}, #{x: -0}, true); +assertEq(Object.is(first(set(#[+0]))[0], +0), true); +assertEq(Object.is(first(set(#[-0]))[0], -0), true); +assertEq(Object.is(first(set(#{x: +0})).x, +0), true); +assertEq(Object.is(first(set(#{x: -0})).x, -0), true); + +// Test ropes. +test(#["ab" + String.fromCodePoint(67)], #["ab" + String.fromCodePoint(67)], true); +test(#{ x: "ab" + String.fromCodePoint(67) }, #{ x: "ab" + String.fromCodePoint(67) }, true); +test(#["ab" + String.fromCodePoint(67)], #["ab" + String.fromCodePoint(68)], false); +test(#{ x: "ab" + String.fromCodePoint(67) }, #{ x: "ab" + String.fromCodePoint(68) }, false); + +if (typeof reportCompare === "function") reportCompare(0, 0); -- cgit v1.2.3