summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorObinna Ikeh <hikenike6@gmail.com>2022-06-30 20:46:38 +0100
committerLinus Groh <mail@linusgroh.de>2022-07-03 01:12:32 +0200
commit5f726ace536cf5e4d71d5d5b1852da0c6aa92ffa (patch)
tree2309d0bdf53adee7a5b0087d31942f2660c2acdc
parentf78ef60be65e7f9b8bb5561c270380853d6ab126 (diff)
downloadserenity-5f726ace536cf5e4d71d5d5b1852da0c6aa92ffa.zip
LibJS: Add tests for %TypedArray%.prototype.toReversed
-rw-r--r--Userland/Libraries/LibJS/Tests/builtins/TypedArray/TypedArray.prototype.toReversed.js68
1 files changed, 68 insertions, 0 deletions
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([]);
+ });
+ });
+});