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

LibJS: Add %TypedArray%.prototype.entries

This commit is contained in:
Luke 2021-06-26 01:01:39 +01:00 committed by Linus Groh
parent a6324481e1
commit a1f3e711c0
3 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,46 @@
const TYPED_ARRAYS = [
Uint8Array,
Uint16Array,
Uint32Array,
Int8Array,
Int16Array,
Int32Array,
Float32Array,
Float64Array,
];
const BIGINT_TYPED_ARRAYS = [BigUint64Array, BigInt64Array];
test("length is 0", () => {
TYPED_ARRAYS.forEach(T => {
expect(T.prototype.entries).toHaveLength(0);
});
BIGINT_TYPED_ARRAYS.forEach(T => {
expect(T.prototype.entries).toHaveLength(0);
});
});
test("basic functionality", () => {
TYPED_ARRAYS.forEach(T => {
const a = new T([30, 40, 50]);
const it = a.entries();
expect(it.next()).toEqual({ value: [0, 30], done: false });
expect(it.next()).toEqual({ value: [1, 40], done: false });
expect(it.next()).toEqual({ value: [2, 50], done: false });
expect(it.next()).toEqual({ value: undefined, done: true });
expect(it.next()).toEqual({ value: undefined, done: true });
expect(it.next()).toEqual({ value: undefined, done: true });
});
BIGINT_TYPED_ARRAYS.forEach(T => {
const a = new T([30n, 40n, 50n]);
const it = a.entries();
expect(it.next()).toEqual({ value: [0, 30n], done: false });
expect(it.next()).toEqual({ value: [1, 40n], done: false });
expect(it.next()).toEqual({ value: [2, 50n], done: false });
expect(it.next()).toEqual({ value: undefined, done: true });
expect(it.next()).toEqual({ value: undefined, done: true });
expect(it.next()).toEqual({ value: undefined, done: true });
});
});