1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:17:35 +00:00

LibJS: Add %TypedArray%.prototype.indexOf

This commit is contained in:
Idan Horowitz 2021-07-08 04:30:52 +03:00 committed by Linus Groh
parent da49a7a9f8
commit 6343bfa9d7
3 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,44 @@
const TYPED_ARRAYS = [
Uint8Array,
Uint8ClampedArray,
Uint16Array,
Uint32Array,
Int8Array,
Int16Array,
Int32Array,
Float32Array,
Float64Array,
];
const BIGINT_TYPED_ARRAYS = [BigUint64Array, BigInt64Array];
test("basic functionality", () => {
TYPED_ARRAYS.forEach(T => {
expect(T.prototype.indexOf).toHaveLength(1);
const typedArray = new T(3);
typedArray[0] = 1;
typedArray[1] = 2;
typedArray[2] = 3;
expect(typedArray.indexOf(2)).toBe(1);
expect(typedArray.indexOf(-1)).toBe(-1);
expect(typedArray.indexOf(Infinity)).toBe(-1);
expect(typedArray.indexOf(2, 2)).toBe(-1);
expect(typedArray.indexOf(2, -2)).toBe(1);
});
BIGINT_TYPED_ARRAYS.forEach(T => {
expect(T.prototype.indexOf).toHaveLength(1);
const typedArray = new T(3);
typedArray[0] = 1n;
typedArray[1] = 2n;
typedArray[2] = 3n;
expect(typedArray.indexOf(2n)).toBe(1);
expect(typedArray.indexOf(-1n)).toBe(-1);
expect(typedArray.indexOf(2n, 2)).toBe(-1);
expect(typedArray.indexOf(2n, -2)).toBe(1);
});
});