From 5f726ace536cf5e4d71d5d5b1852da0c6aa92ffa Mon Sep 17 00:00:00 2001 From: Obinna Ikeh Date: Thu, 30 Jun 2022 20:46:38 +0100 Subject: LibJS: Add tests for %TypedArray%.prototype.toReversed --- .../TypedArray/TypedArray.prototype.toReversed.js | 68 ++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.toReversed.js (limited to 'Userland/Libraries') diff --git a/Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.toReversed.js b/Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.toReversed.js new file mode 100644 index 0000000000..89db5ee653 --- /dev/null +++ b/Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.toReversed.js @@ -0,0 +1,68 @@ +const TYPED_ARRAYS = [ + Uint8Array, + Uint8ClampedArray, + Uint16Array, + Uint32Array, + Int8Array, + Int16Array, + Int32Array, + Float32Array, + Float64Array, +]; + +const BIGINT_TYPED_ARRAYS = [BigUint64Array, BigInt64Array]; + +test("length is 0", () => { + TYPED_ARRAYS.forEach(T => { + expect(T.prototype.toReversed).toHaveLength(0); + }); + + BIGINT_TYPED_ARRAYS.forEach(T => { + expect(T.prototype.toReversed).toHaveLength(0); + }); +}); + +describe("basic functionality", () => { + test("Odd length array", () => { + TYPED_ARRAYS.forEach(T => { + const array = new T([1, 2, 3]); + + expect(array.toReversed()).toEqual([3, 2, 1]); + expect(array).toEqual([1, 2, 3]); + }); + + BIGINT_TYPED_ARRAYS.forEach(T => { + const array = new T([1n, 2n, 3n]); + expect(array.toReversed()).toEqual([3n, 2n, 1n]); + expect(array).toEqual([1n, 2n, 3n]); + }); + }); + + test("Even length array", () => { + TYPED_ARRAYS.forEach(T => { + const array = new T([1, 2]); + expect(array.toReversed()).toEqual([2, 1]); + expect(array).toEqual([1, 2]); + }); + + BIGINT_TYPED_ARRAYS.forEach(T => { + const array = new T([1n, 2n]); + expect(array.toReversed()).toEqual([2n, 1n]); + expect(array).toEqual([1n, 2n]); + }); + }); + + test("Empty array", () => { + TYPED_ARRAYS.forEach(T => { + const array = new T([]); + expect(array.toReversed()).toEqual([]); + expect(array).toEqual([]); + }); + + BIGINT_TYPED_ARRAYS.forEach(T => { + const array = new T([]); + expect(array.toReversed()).toEqual([]); + expect(array).toEqual([]); + }); + }); +}); -- cgit v1.2.3