node/deps/v8/test/mjsunit/harmony/set-is-disjoint-from.js
Michaël Zasso 9d7cd9b864
deps: update V8 to 12.8.374.13
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
2024-08-16 16:03:01 +02:00

253 lines
5.2 KiB
JavaScript

// Copyright 2023 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Flags: --harmony-set-methods
(function TestIsDisjointFromSetFirstShorter() {
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
const otherSet = new Set();
otherSet.add(42);
otherSet.add(46);
otherSet.add(47);
assertEquals(firstSet.isDisjointFrom(otherSet), false);
})();
(function TestIsDisjointFromSetSecondShorter() {
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
firstSet.add(44);
const otherSet = new Set();
otherSet.add(45);
otherSet.add(46);
assertEquals(firstSet.isDisjointFrom(otherSet), true);
})();
(function TestIsDisjointFromMapFirstShorter() {
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
const other = new Map();
other.set(45);
other.set(46);
other.set(47);
assertEquals(firstSet.isDisjointFrom(other), true);
})();
(function TestIsDisjointFromMapSecondShorter() {
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
firstSet.add(44);
const other = new Map();
other.set(42);
assertEquals(firstSet.isDisjointFrom(other), false);
})();
(function TestIsDisjointFromSetLikeObjectFirstShorter() {
const SetLike = {
arr: [42, 43, 45],
size: 3,
keys() {
return this.arr[Symbol.iterator]();
},
has(key) {
return this.arr.indexOf(key) != -1;
}
};
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
assertEquals(firstSet.isDisjointFrom(SetLike), false);
})();
(function TestIsDisjointFromSetLikeObjectSecondShorter() {
const SetLike = {
arr: [42, 43],
size: 3,
keys() {
return this.arr[Symbol.iterator]();
},
has(key) {
return this.arr.indexOf(key) != -1;
}
};
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
firstSet.add(44);
assertEquals(firstSet.isDisjointFrom(SetLike), false);
})();
(function TestIsDisjointFromSetEqualLength() {
let arrIndex = [];
const SetLike = {
arr: [42, 43, 45],
size: 3,
keys() {
return this.arr[Symbol.iterator]();
},
has(key) {
arrIndex.push(this.arr.indexOf(key));
return this.arr.indexOf(key) != -1;
}
};
const firstSet = new Set();
firstSet.add(46);
firstSet.add(47);
firstSet.add(48);
assertEquals(firstSet.isDisjointFrom(SetLike), true);
assertEquals(arrIndex, [-1, -1, -1]);
})();
(function TestIsDisjointFromAfterClearingTheReceiver() {
const firstSet = new Set();
const otherSet = new Set();
Object.defineProperty(otherSet, 'size', {
get: function() {
firstSet.clear();
return 1;
},
});
assertEquals(firstSet.isDisjointFrom(otherSet), true);
})();
(function TestTableTransition() {
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
firstSet.add(44);
const setLike = {
size: 5,
keys() {
return [1, 2, 3, 4, 5].keys();
},
has(key) {
if (key == 42) {
// Cause a table transition in the receiver.
firstSet.clear();
}
// Return false so we keep iterating the transitioned receiver.
return false;
}
};
assertTrue(firstSet.isDisjointFrom(setLike));
assertEquals(0, firstSet.size);
})();
(function TestIsDisjointFromAfterRewritingKeys() {
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
const otherSet = new Set();
otherSet.add(42);
otherSet.add(46);
otherSet.add(47);
otherSet.keys =
() => {
firstSet.clear();
return otherSet[Symbol.iterator]();
}
assertEquals(firstSet.isDisjointFrom(otherSet), false);
})();
(function TestIsDisjointFromAfterRewritingKeys() {
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
const setLike = {
arr: [42, 46, 47],
size: 3,
keys() {
return this.arr[Symbol.iterator]();
},
has(key) {
return this.arr.indexOf(key) != -1;
}
};
setLike.keys =
() => {
firstSet.clear();
return setLike.arr[Symbol.iterator]();
}
assertEquals(firstSet.isDisjointFrom(setLike), false);
})();
(function TestEvilBiggerOther() {
const firstSet = new Set([1,2,3,4]);
const secondSet = new Set([43]);
const evil = {
has(v) { return secondSet.has(v); },
keys() {
firstSet.clear();
firstSet.add(43);
return secondSet.keys();
},
get size() { return secondSet.size; }
};
assertFalse(firstSet.isDisjointFrom(evil));
})();
(function TestIsDisjointFromSetLikeWithInfiniteSize() {
let setLike = {
size: Infinity,
has(v) {
return true;
},
keys() {
throw new Error('Unexpected call to |keys| method');
},
};
const firstSet = new Set();
firstSet.add(42);
firstSet.add(43);
assertEquals(firstSet.isDisjointFrom(setLike), false);
})();
(function TestIsDisjointFromSetLikeWithNegativeInfiniteSize() {
let setLike = {
size: -Infinity,
has(v) {
return true;
},
keys() {
throw new Error('Unexpected call to |keys| method');
},
};
assertThrows(() => {
new Set().isDisjointFrom(setLike);
}, RangeError, '\'-Infinity\' is an invalid size');
})();