ts-data-forge 6.0.0 → 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/array/impl/array-utils-reducing-value.d.mts +28 -0
- package/dist/array/impl/array-utils-reducing-value.d.mts.map +1 -1
- package/dist/array/impl/array-utils-reducing-value.mjs +4 -1
- package/dist/array/impl/array-utils-reducing-value.mjs.map +1 -1
- package/dist/array/impl/index.mjs +1 -1
- package/dist/collections/imap.d.mts +1 -1
- package/dist/collections/iset-mapped.d.mts +1 -1
- package/dist/collections/iset.d.mts +1 -1
- package/package.json +52 -48
- package/src/array/impl/array-utils-overload-type-error.test.mts +4 -2
- package/src/array/impl/array-utils-reducing-value.mts +48 -0
- package/src/collections/imap.mts +1 -1
- package/src/collections/iset-mapped.mts +1 -1
- package/src/collections/iset.mts +1 -1
- package/src/functional/optional.test.mts +7 -5
- package/src/functional/result.test.mts +10 -8
- package/src/functional/ternary-result.test.mts +4 -4
- package/src/guard/has-key.test.mts +89 -186
- package/src/json/json.test.mts +5 -5
- package/src/number/branded-types/finite-number.test.mts +15 -11
- package/src/number/branded-types/int.test.mts +13 -13
- package/src/number/branded-types/int16.test.mts +15 -15
- package/src/number/branded-types/int32.test.mts +15 -15
- package/src/number/branded-types/non-negative-finite-number.test.mts +19 -15
- package/src/number/branded-types/non-negative-int16.test.mts +15 -15
- package/src/number/branded-types/non-negative-int32.test.mts +15 -15
- package/src/number/branded-types/non-zero-finite-number.test.mts +18 -18
- package/src/number/branded-types/non-zero-int.test.mts +18 -14
- package/src/number/branded-types/non-zero-int16.test.mts +19 -15
- package/src/number/branded-types/non-zero-int32.test.mts +19 -15
- package/src/number/branded-types/non-zero-safe-int.test.mts +22 -18
- package/src/number/branded-types/non-zero-uint16.test.mts +15 -15
- package/src/number/branded-types/non-zero-uint32.test.mts +15 -15
- package/src/number/branded-types/positive-finite-number.test.mts +18 -18
- package/src/number/branded-types/positive-int.test.mts +22 -16
- package/src/number/branded-types/positive-int16.test.mts +14 -14
- package/src/number/branded-types/positive-int32.test.mts +14 -14
- package/src/number/branded-types/positive-safe-int.test.mts +20 -18
- package/src/number/branded-types/positive-uint16.test.mts +15 -15
- package/src/number/branded-types/positive-uint32.test.mts +15 -15
- package/src/number/branded-types/safe-int.test.mts +21 -17
- package/src/number/branded-types/safe-uint.test.mts +22 -16
- package/src/number/branded-types/uint.test.mts +14 -14
- package/src/number/branded-types/uint16.test.mts +14 -14
- package/src/number/branded-types/uint32.test.mts +14 -14
- package/src/number/enum/int8.test.mts +1 -1
- package/src/number/enum/uint8.test.mts +1 -1
- package/src/others/memoize-function.test.mts +1 -0
|
@@ -9,43 +9,43 @@ import {
|
|
|
9
9
|
describe('PositiveFiniteNumber test', () => {
|
|
10
10
|
describe(asPositiveFiniteNumber, () => {
|
|
11
11
|
test('accepts valid positive finite numbers', () => {
|
|
12
|
-
expect(() => asPositiveFiniteNumber(1)).not.
|
|
12
|
+
expect(() => asPositiveFiniteNumber(1)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asPositiveFiniteNumber(3.14)).not.
|
|
14
|
+
expect(() => asPositiveFiniteNumber(3.14)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asPositiveFiniteNumber(0.5)).not.
|
|
16
|
+
expect(() => asPositiveFiniteNumber(0.5)).not.toThrowError();
|
|
17
17
|
|
|
18
|
-
expect(() => asPositiveFiniteNumber(Number.MIN_VALUE)).not.
|
|
18
|
+
expect(() => asPositiveFiniteNumber(Number.MIN_VALUE)).not.toThrowError();
|
|
19
19
|
|
|
20
|
-
expect(() => asPositiveFiniteNumber(Number.MAX_VALUE)).not.
|
|
20
|
+
expect(() => asPositiveFiniteNumber(Number.MAX_VALUE)).not.toThrowError();
|
|
21
21
|
});
|
|
22
22
|
|
|
23
23
|
test('rejects zero', () => {
|
|
24
|
-
expect(() => asPositiveFiniteNumber(0)).
|
|
24
|
+
expect(() => asPositiveFiniteNumber(0)).toThrowError(TypeError);
|
|
25
25
|
|
|
26
|
-
expect(() => asPositiveFiniteNumber(-0)).
|
|
26
|
+
expect(() => asPositiveFiniteNumber(-0)).toThrowError(TypeError);
|
|
27
27
|
});
|
|
28
28
|
|
|
29
29
|
test('rejects negative numbers', () => {
|
|
30
|
-
expect(() => asPositiveFiniteNumber(-1)).
|
|
30
|
+
expect(() => asPositiveFiniteNumber(-1)).toThrowError(TypeError);
|
|
31
31
|
|
|
32
|
-
expect(() => asPositiveFiniteNumber(-0.1)).
|
|
32
|
+
expect(() => asPositiveFiniteNumber(-0.1)).toThrowError(TypeError);
|
|
33
33
|
|
|
34
|
-
expect(() => asPositiveFiniteNumber(-Number.MAX_VALUE)).
|
|
34
|
+
expect(() => asPositiveFiniteNumber(-Number.MAX_VALUE)).toThrowError(
|
|
35
35
|
TypeError,
|
|
36
36
|
);
|
|
37
37
|
});
|
|
38
38
|
|
|
39
39
|
test('rejects non-finite numbers', () => {
|
|
40
|
-
expect(() => asPositiveFiniteNumber(Number.NaN)).
|
|
40
|
+
expect(() => asPositiveFiniteNumber(Number.NaN)).toThrowError(TypeError);
|
|
41
41
|
|
|
42
|
-
expect(() =>
|
|
43
|
-
|
|
44
|
-
);
|
|
42
|
+
expect(() =>
|
|
43
|
+
asPositiveFiniteNumber(Number.POSITIVE_INFINITY),
|
|
44
|
+
).toThrowError(TypeError);
|
|
45
45
|
|
|
46
|
-
expect(() =>
|
|
47
|
-
|
|
48
|
-
);
|
|
46
|
+
expect(() =>
|
|
47
|
+
asPositiveFiniteNumber(Number.NEGATIVE_INFINITY),
|
|
48
|
+
).toThrowError(TypeError);
|
|
49
49
|
});
|
|
50
50
|
|
|
51
51
|
test('returns the same value for valid inputs', () => {
|
|
@@ -64,7 +64,7 @@ describe('PositiveFiniteNumber test', () => {
|
|
|
64
64
|
] as const)(
|
|
65
65
|
`asPositiveFiniteNumber($name) should throw a TypeError`,
|
|
66
66
|
({ value }) => {
|
|
67
|
-
expect(() => asPositiveFiniteNumber(value)).
|
|
67
|
+
expect(() => asPositiveFiniteNumber(value)).toThrowError(
|
|
68
68
|
new TypeError(`Expected a positive finite number, got: ${value}`),
|
|
69
69
|
);
|
|
70
70
|
},
|
|
@@ -5,41 +5,47 @@ import { asPositiveInt, isPositiveInt, PositiveInt } from './positive-int.mjs';
|
|
|
5
5
|
describe('PositiveInt test', () => {
|
|
6
6
|
describe(asPositiveInt, () => {
|
|
7
7
|
test('accepts valid positive integers', () => {
|
|
8
|
-
expect(() => asPositiveInt(1)).not.
|
|
8
|
+
expect(() => asPositiveInt(1)).not.toThrowError();
|
|
9
9
|
|
|
10
|
-
expect(() => asPositiveInt(2)).not.
|
|
10
|
+
expect(() => asPositiveInt(2)).not.toThrowError();
|
|
11
11
|
|
|
12
|
-
expect(() => asPositiveInt(42)).not.
|
|
12
|
+
expect(() => asPositiveInt(42)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asPositiveInt(100)).not.
|
|
14
|
+
expect(() => asPositiveInt(100)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asPositiveInt(Number.MAX_SAFE_INTEGER)).not.
|
|
16
|
+
expect(() => asPositiveInt(Number.MAX_SAFE_INTEGER)).not.toThrowError();
|
|
17
17
|
});
|
|
18
18
|
|
|
19
19
|
test('rejects zero', () => {
|
|
20
|
-
expect(() => asPositiveInt(0)).
|
|
20
|
+
expect(() => asPositiveInt(0)).toThrowError(TypeError);
|
|
21
21
|
|
|
22
|
-
expect(() => asPositiveInt(-0)).
|
|
22
|
+
expect(() => asPositiveInt(-0)).toThrowError(TypeError);
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
test('rejects negative integers', () => {
|
|
26
|
-
expect(() => asPositiveInt(-1)).
|
|
26
|
+
expect(() => asPositiveInt(-1)).toThrowError(TypeError);
|
|
27
27
|
|
|
28
|
-
expect(() => asPositiveInt(-42)).
|
|
28
|
+
expect(() => asPositiveInt(-42)).toThrowError(TypeError);
|
|
29
29
|
|
|
30
|
-
expect(() => asPositiveInt(Number.MIN_SAFE_INTEGER)).
|
|
30
|
+
expect(() => asPositiveInt(Number.MIN_SAFE_INTEGER)).toThrowError(
|
|
31
|
+
TypeError,
|
|
32
|
+
);
|
|
31
33
|
});
|
|
32
34
|
|
|
33
35
|
test('rejects non-integers', () => {
|
|
34
|
-
expect(() => asPositiveInt(Number.NaN)).
|
|
36
|
+
expect(() => asPositiveInt(Number.NaN)).toThrowError(TypeError);
|
|
35
37
|
|
|
36
|
-
expect(() => asPositiveInt(Number.POSITIVE_INFINITY)).
|
|
38
|
+
expect(() => asPositiveInt(Number.POSITIVE_INFINITY)).toThrowError(
|
|
39
|
+
TypeError,
|
|
40
|
+
);
|
|
37
41
|
|
|
38
|
-
expect(() => asPositiveInt(Number.NEGATIVE_INFINITY)).
|
|
42
|
+
expect(() => asPositiveInt(Number.NEGATIVE_INFINITY)).toThrowError(
|
|
43
|
+
TypeError,
|
|
44
|
+
);
|
|
39
45
|
|
|
40
|
-
expect(() => asPositiveInt(1.2)).
|
|
46
|
+
expect(() => asPositiveInt(1.2)).toThrowError(TypeError);
|
|
41
47
|
|
|
42
|
-
expect(() => asPositiveInt(-3.4)).
|
|
48
|
+
expect(() => asPositiveInt(-3.4)).toThrowError(TypeError);
|
|
43
49
|
});
|
|
44
50
|
|
|
45
51
|
test('returns the same value for valid inputs', () => {
|
|
@@ -61,7 +67,7 @@ describe('PositiveInt test', () => {
|
|
|
61
67
|
] as const)(
|
|
62
68
|
`asPositiveInt($name) should throw a TypeError`,
|
|
63
69
|
({ value }) => {
|
|
64
|
-
expect(() => asPositiveInt(value)).
|
|
70
|
+
expect(() => asPositiveInt(value)).toThrowError(
|
|
65
71
|
new TypeError(`Expected a positive integer, got: ${value}`),
|
|
66
72
|
);
|
|
67
73
|
},
|
|
@@ -9,43 +9,43 @@ import {
|
|
|
9
9
|
describe('PositiveInt16 test', () => {
|
|
10
10
|
describe(asPositiveInt16, () => {
|
|
11
11
|
test('accepts valid positive int16 values', () => {
|
|
12
|
-
expect(() => asPositiveInt16(1)).not.
|
|
12
|
+
expect(() => asPositiveInt16(1)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asPositiveInt16(1000)).not.
|
|
14
|
+
expect(() => asPositiveInt16(1000)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asPositiveInt16(32_767)).not.
|
|
16
|
+
expect(() => asPositiveInt16(32_767)).not.toThrowError(); // 2^15 - 1
|
|
17
17
|
});
|
|
18
18
|
|
|
19
19
|
test('rejects zero', () => {
|
|
20
|
-
expect(() => asPositiveInt16(0)).
|
|
20
|
+
expect(() => asPositiveInt16(0)).toThrowError(TypeError);
|
|
21
21
|
});
|
|
22
22
|
|
|
23
23
|
test('rejects values outside int16 range', () => {
|
|
24
|
-
expect(() => asPositiveInt16(32_768)).
|
|
24
|
+
expect(() => asPositiveInt16(32_768)).toThrowError(TypeError); // 2^15
|
|
25
25
|
|
|
26
|
-
expect(() => asPositiveInt16(65_536)).
|
|
26
|
+
expect(() => asPositiveInt16(65_536)).toThrowError(TypeError);
|
|
27
27
|
});
|
|
28
28
|
|
|
29
29
|
test('rejects negative integers', () => {
|
|
30
|
-
expect(() => asPositiveInt16(-1)).
|
|
30
|
+
expect(() => asPositiveInt16(-1)).toThrowError(TypeError);
|
|
31
31
|
|
|
32
|
-
expect(() => asPositiveInt16(-42)).
|
|
32
|
+
expect(() => asPositiveInt16(-42)).toThrowError(TypeError);
|
|
33
33
|
});
|
|
34
34
|
|
|
35
35
|
test('rejects non-integers', () => {
|
|
36
|
-
expect(() => asPositiveInt16(Number.NaN)).
|
|
36
|
+
expect(() => asPositiveInt16(Number.NaN)).toThrowError(TypeError);
|
|
37
37
|
|
|
38
|
-
expect(() => asPositiveInt16(Number.POSITIVE_INFINITY)).
|
|
38
|
+
expect(() => asPositiveInt16(Number.POSITIVE_INFINITY)).toThrowError(
|
|
39
39
|
TypeError,
|
|
40
40
|
);
|
|
41
41
|
|
|
42
|
-
expect(() => asPositiveInt16(Number.NEGATIVE_INFINITY)).
|
|
42
|
+
expect(() => asPositiveInt16(Number.NEGATIVE_INFINITY)).toThrowError(
|
|
43
43
|
TypeError,
|
|
44
44
|
);
|
|
45
45
|
|
|
46
|
-
expect(() => asPositiveInt16(1.2)).
|
|
46
|
+
expect(() => asPositiveInt16(1.2)).toThrowError(TypeError);
|
|
47
47
|
|
|
48
|
-
expect(() => asPositiveInt16(-3.4)).
|
|
48
|
+
expect(() => asPositiveInt16(-3.4)).toThrowError(TypeError);
|
|
49
49
|
});
|
|
50
50
|
|
|
51
51
|
test('returns the same value for valid inputs', () => {
|
|
@@ -68,7 +68,7 @@ describe('PositiveInt16 test', () => {
|
|
|
68
68
|
] as const)(
|
|
69
69
|
`asPositiveInt16($name) should throw a TypeError`,
|
|
70
70
|
({ value }) => {
|
|
71
|
-
expect(() => asPositiveInt16(value)).
|
|
71
|
+
expect(() => asPositiveInt16(value)).toThrowError(
|
|
72
72
|
new TypeError(
|
|
73
73
|
`Expected a positive integer in [1, 2^15), got: ${value}`,
|
|
74
74
|
),
|
|
@@ -9,43 +9,43 @@ import {
|
|
|
9
9
|
describe('PositiveInt32 test', () => {
|
|
10
10
|
describe(asPositiveInt32, () => {
|
|
11
11
|
test('accepts valid positive int32 values', () => {
|
|
12
|
-
expect(() => asPositiveInt32(1)).not.
|
|
12
|
+
expect(() => asPositiveInt32(1)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asPositiveInt32(1000)).not.
|
|
14
|
+
expect(() => asPositiveInt32(1000)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asPositiveInt32(2_147_483_647)).not.
|
|
16
|
+
expect(() => asPositiveInt32(2_147_483_647)).not.toThrowError(); // 2^31 - 1
|
|
17
17
|
});
|
|
18
18
|
|
|
19
19
|
test('rejects zero', () => {
|
|
20
|
-
expect(() => asPositiveInt32(0)).
|
|
20
|
+
expect(() => asPositiveInt32(0)).toThrowError(TypeError);
|
|
21
21
|
});
|
|
22
22
|
|
|
23
23
|
test('rejects values outside int32 range', () => {
|
|
24
|
-
expect(() => asPositiveInt32(2_147_483_648)).
|
|
24
|
+
expect(() => asPositiveInt32(2_147_483_648)).toThrowError(TypeError); // 2^31
|
|
25
25
|
|
|
26
|
-
expect(() => asPositiveInt32(4_294_967_296)).
|
|
26
|
+
expect(() => asPositiveInt32(4_294_967_296)).toThrowError(TypeError);
|
|
27
27
|
});
|
|
28
28
|
|
|
29
29
|
test('rejects negative integers', () => {
|
|
30
|
-
expect(() => asPositiveInt32(-1)).
|
|
30
|
+
expect(() => asPositiveInt32(-1)).toThrowError(TypeError);
|
|
31
31
|
|
|
32
|
-
expect(() => asPositiveInt32(-42)).
|
|
32
|
+
expect(() => asPositiveInt32(-42)).toThrowError(TypeError);
|
|
33
33
|
});
|
|
34
34
|
|
|
35
35
|
test('rejects non-integers', () => {
|
|
36
|
-
expect(() => asPositiveInt32(Number.NaN)).
|
|
36
|
+
expect(() => asPositiveInt32(Number.NaN)).toThrowError(TypeError);
|
|
37
37
|
|
|
38
|
-
expect(() => asPositiveInt32(Number.POSITIVE_INFINITY)).
|
|
38
|
+
expect(() => asPositiveInt32(Number.POSITIVE_INFINITY)).toThrowError(
|
|
39
39
|
TypeError,
|
|
40
40
|
);
|
|
41
41
|
|
|
42
|
-
expect(() => asPositiveInt32(Number.NEGATIVE_INFINITY)).
|
|
42
|
+
expect(() => asPositiveInt32(Number.NEGATIVE_INFINITY)).toThrowError(
|
|
43
43
|
TypeError,
|
|
44
44
|
);
|
|
45
45
|
|
|
46
|
-
expect(() => asPositiveInt32(1.2)).
|
|
46
|
+
expect(() => asPositiveInt32(1.2)).toThrowError(TypeError);
|
|
47
47
|
|
|
48
|
-
expect(() => asPositiveInt32(-3.4)).
|
|
48
|
+
expect(() => asPositiveInt32(-3.4)).toThrowError(TypeError);
|
|
49
49
|
});
|
|
50
50
|
|
|
51
51
|
test('returns the same value for valid inputs', () => {
|
|
@@ -68,7 +68,7 @@ describe('PositiveInt32 test', () => {
|
|
|
68
68
|
] as const)(
|
|
69
69
|
`asPositiveInt32($name) should throw a TypeError`,
|
|
70
70
|
({ value }) => {
|
|
71
|
-
expect(() => asPositiveInt32(value)).
|
|
71
|
+
expect(() => asPositiveInt32(value)).toThrowError(
|
|
72
72
|
new TypeError(
|
|
73
73
|
`Expected a positive integer in [1, 2^31), got: ${value}`,
|
|
74
74
|
),
|
|
@@ -9,55 +9,57 @@ import {
|
|
|
9
9
|
describe('PositiveSafeInt test', () => {
|
|
10
10
|
describe(asPositiveSafeInt, () => {
|
|
11
11
|
test('accepts valid positive safe integers', () => {
|
|
12
|
-
expect(() => asPositiveSafeInt(1)).not.
|
|
12
|
+
expect(() => asPositiveSafeInt(1)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asPositiveSafeInt(2)).not.
|
|
14
|
+
expect(() => asPositiveSafeInt(2)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asPositiveSafeInt(42)).not.
|
|
16
|
+
expect(() => asPositiveSafeInt(42)).not.toThrowError();
|
|
17
17
|
|
|
18
|
-
expect(() => asPositiveSafeInt(100)).not.
|
|
18
|
+
expect(() => asPositiveSafeInt(100)).not.toThrowError();
|
|
19
19
|
|
|
20
|
-
expect(() =>
|
|
20
|
+
expect(() =>
|
|
21
|
+
asPositiveSafeInt(Number.MAX_SAFE_INTEGER),
|
|
22
|
+
).not.toThrowError();
|
|
21
23
|
});
|
|
22
24
|
|
|
23
25
|
test('rejects zero', () => {
|
|
24
|
-
expect(() => asPositiveSafeInt(0)).
|
|
26
|
+
expect(() => asPositiveSafeInt(0)).toThrowError(TypeError);
|
|
25
27
|
|
|
26
|
-
expect(() => asPositiveSafeInt(-0)).
|
|
28
|
+
expect(() => asPositiveSafeInt(-0)).toThrowError(TypeError);
|
|
27
29
|
});
|
|
28
30
|
|
|
29
31
|
test('rejects negative integers', () => {
|
|
30
|
-
expect(() => asPositiveSafeInt(-1)).
|
|
32
|
+
expect(() => asPositiveSafeInt(-1)).toThrowError(TypeError);
|
|
31
33
|
|
|
32
|
-
expect(() => asPositiveSafeInt(-42)).
|
|
34
|
+
expect(() => asPositiveSafeInt(-42)).toThrowError(TypeError);
|
|
33
35
|
|
|
34
|
-
expect(() => asPositiveSafeInt(Number.MIN_SAFE_INTEGER)).
|
|
36
|
+
expect(() => asPositiveSafeInt(Number.MIN_SAFE_INTEGER)).toThrowError(
|
|
35
37
|
TypeError,
|
|
36
38
|
);
|
|
37
39
|
});
|
|
38
40
|
|
|
39
41
|
test('rejects values outside safe integer range', () => {
|
|
40
|
-
expect(() => asPositiveSafeInt(Number.MAX_SAFE_INTEGER + 1)).
|
|
42
|
+
expect(() => asPositiveSafeInt(Number.MAX_SAFE_INTEGER + 1)).toThrowError(
|
|
41
43
|
TypeError,
|
|
42
44
|
);
|
|
43
45
|
|
|
44
|
-
expect(() => asPositiveSafeInt(Number.MAX_VALUE)).
|
|
46
|
+
expect(() => asPositiveSafeInt(Number.MAX_VALUE)).toThrowError(TypeError);
|
|
45
47
|
});
|
|
46
48
|
|
|
47
49
|
test('rejects non-integers', () => {
|
|
48
|
-
expect(() => asPositiveSafeInt(Number.NaN)).
|
|
50
|
+
expect(() => asPositiveSafeInt(Number.NaN)).toThrowError(TypeError);
|
|
49
51
|
|
|
50
|
-
expect(() => asPositiveSafeInt(Number.POSITIVE_INFINITY)).
|
|
52
|
+
expect(() => asPositiveSafeInt(Number.POSITIVE_INFINITY)).toThrowError(
|
|
51
53
|
TypeError,
|
|
52
54
|
);
|
|
53
55
|
|
|
54
|
-
expect(() => asPositiveSafeInt(Number.NEGATIVE_INFINITY)).
|
|
56
|
+
expect(() => asPositiveSafeInt(Number.NEGATIVE_INFINITY)).toThrowError(
|
|
55
57
|
TypeError,
|
|
56
58
|
);
|
|
57
59
|
|
|
58
|
-
expect(() => asPositiveSafeInt(1.2)).
|
|
60
|
+
expect(() => asPositiveSafeInt(1.2)).toThrowError(TypeError);
|
|
59
61
|
|
|
60
|
-
expect(() => asPositiveSafeInt(-3.4)).
|
|
62
|
+
expect(() => asPositiveSafeInt(-3.4)).toThrowError(TypeError);
|
|
61
63
|
});
|
|
62
64
|
|
|
63
65
|
test('returns the same value for valid inputs', () => {
|
|
@@ -79,7 +81,7 @@ describe('PositiveSafeInt test', () => {
|
|
|
79
81
|
] as const)(
|
|
80
82
|
`asPositiveSafeInt($name) should throw a TypeError`,
|
|
81
83
|
({ value }) => {
|
|
82
|
-
expect(() => asPositiveSafeInt(value)).
|
|
84
|
+
expect(() => asPositiveSafeInt(value)).toThrowError(
|
|
83
85
|
new TypeError(`Expected a positive safe integer, got: ${value}`),
|
|
84
86
|
);
|
|
85
87
|
},
|
|
@@ -9,45 +9,45 @@ import {
|
|
|
9
9
|
describe('PositiveUint16 test', () => {
|
|
10
10
|
describe(asPositiveUint16, () => {
|
|
11
11
|
test('accepts valid positive uint16 values', () => {
|
|
12
|
-
expect(() => asPositiveUint16(1)).not.
|
|
12
|
+
expect(() => asPositiveUint16(1)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asPositiveUint16(1000)).not.
|
|
14
|
+
expect(() => asPositiveUint16(1000)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asPositiveUint16(65_535)).not.
|
|
16
|
+
expect(() => asPositiveUint16(65_535)).not.toThrowError(); // 2^16 - 1
|
|
17
17
|
|
|
18
|
-
expect(() => asPositiveUint16(32_768)).not.
|
|
18
|
+
expect(() => asPositiveUint16(32_768)).not.toThrowError(); // 2^15
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
test('rejects zero', () => {
|
|
22
|
-
expect(() => asPositiveUint16(0)).
|
|
22
|
+
expect(() => asPositiveUint16(0)).toThrowError(TypeError);
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
test('rejects values outside uint16 range', () => {
|
|
26
|
-
expect(() => asPositiveUint16(65_536)).
|
|
26
|
+
expect(() => asPositiveUint16(65_536)).toThrowError(TypeError); // 2^16
|
|
27
27
|
|
|
28
|
-
expect(() => asPositiveUint16(100_000)).
|
|
28
|
+
expect(() => asPositiveUint16(100_000)).toThrowError(TypeError);
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
test('rejects negative integers', () => {
|
|
32
|
-
expect(() => asPositiveUint16(-1)).
|
|
32
|
+
expect(() => asPositiveUint16(-1)).toThrowError(TypeError);
|
|
33
33
|
|
|
34
|
-
expect(() => asPositiveUint16(-42)).
|
|
34
|
+
expect(() => asPositiveUint16(-42)).toThrowError(TypeError);
|
|
35
35
|
});
|
|
36
36
|
|
|
37
37
|
test('rejects non-integers', () => {
|
|
38
|
-
expect(() => asPositiveUint16(Number.NaN)).
|
|
38
|
+
expect(() => asPositiveUint16(Number.NaN)).toThrowError(TypeError);
|
|
39
39
|
|
|
40
|
-
expect(() => asPositiveUint16(Number.POSITIVE_INFINITY)).
|
|
40
|
+
expect(() => asPositiveUint16(Number.POSITIVE_INFINITY)).toThrowError(
|
|
41
41
|
TypeError,
|
|
42
42
|
);
|
|
43
43
|
|
|
44
|
-
expect(() => asPositiveUint16(Number.NEGATIVE_INFINITY)).
|
|
44
|
+
expect(() => asPositiveUint16(Number.NEGATIVE_INFINITY)).toThrowError(
|
|
45
45
|
TypeError,
|
|
46
46
|
);
|
|
47
47
|
|
|
48
|
-
expect(() => asPositiveUint16(1.2)).
|
|
48
|
+
expect(() => asPositiveUint16(1.2)).toThrowError(TypeError);
|
|
49
49
|
|
|
50
|
-
expect(() => asPositiveUint16(-3.4)).
|
|
50
|
+
expect(() => asPositiveUint16(-3.4)).toThrowError(TypeError);
|
|
51
51
|
});
|
|
52
52
|
|
|
53
53
|
test('returns the same value for valid inputs', () => {
|
|
@@ -70,7 +70,7 @@ describe('PositiveUint16 test', () => {
|
|
|
70
70
|
] as const)(
|
|
71
71
|
`asPositiveUint16($name) should throw a TypeError`,
|
|
72
72
|
({ value }) => {
|
|
73
|
-
expect(() => asPositiveUint16(value)).
|
|
73
|
+
expect(() => asPositiveUint16(value)).toThrowError(
|
|
74
74
|
new TypeError(
|
|
75
75
|
`Expected a positive integer in [1, 2^16), got: ${value}`,
|
|
76
76
|
),
|
|
@@ -9,45 +9,45 @@ import {
|
|
|
9
9
|
describe('PositiveUint32 test', () => {
|
|
10
10
|
describe(asPositiveUint32, () => {
|
|
11
11
|
test('accepts valid positive uint32 values', () => {
|
|
12
|
-
expect(() => asPositiveUint32(1)).not.
|
|
12
|
+
expect(() => asPositiveUint32(1)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asPositiveUint32(1000)).not.
|
|
14
|
+
expect(() => asPositiveUint32(1000)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asPositiveUint32(4_294_967_295)).not.
|
|
16
|
+
expect(() => asPositiveUint32(4_294_967_295)).not.toThrowError(); // 2^32 - 1
|
|
17
17
|
|
|
18
|
-
expect(() => asPositiveUint32(2_147_483_648)).not.
|
|
18
|
+
expect(() => asPositiveUint32(2_147_483_648)).not.toThrowError(); // 2^31
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
test('rejects zero', () => {
|
|
22
|
-
expect(() => asPositiveUint32(0)).
|
|
22
|
+
expect(() => asPositiveUint32(0)).toThrowError(TypeError);
|
|
23
23
|
});
|
|
24
24
|
|
|
25
25
|
test('rejects values outside uint32 range', () => {
|
|
26
|
-
expect(() => asPositiveUint32(4_294_967_296)).
|
|
26
|
+
expect(() => asPositiveUint32(4_294_967_296)).toThrowError(TypeError); // 2^32
|
|
27
27
|
|
|
28
|
-
expect(() => asPositiveUint32(10_000_000_000)).
|
|
28
|
+
expect(() => asPositiveUint32(10_000_000_000)).toThrowError(TypeError);
|
|
29
29
|
});
|
|
30
30
|
|
|
31
31
|
test('rejects negative integers', () => {
|
|
32
|
-
expect(() => asPositiveUint32(-1)).
|
|
32
|
+
expect(() => asPositiveUint32(-1)).toThrowError(TypeError);
|
|
33
33
|
|
|
34
|
-
expect(() => asPositiveUint32(-42)).
|
|
34
|
+
expect(() => asPositiveUint32(-42)).toThrowError(TypeError);
|
|
35
35
|
});
|
|
36
36
|
|
|
37
37
|
test('rejects non-integers', () => {
|
|
38
|
-
expect(() => asPositiveUint32(Number.NaN)).
|
|
38
|
+
expect(() => asPositiveUint32(Number.NaN)).toThrowError(TypeError);
|
|
39
39
|
|
|
40
|
-
expect(() => asPositiveUint32(Number.POSITIVE_INFINITY)).
|
|
40
|
+
expect(() => asPositiveUint32(Number.POSITIVE_INFINITY)).toThrowError(
|
|
41
41
|
TypeError,
|
|
42
42
|
);
|
|
43
43
|
|
|
44
|
-
expect(() => asPositiveUint32(Number.NEGATIVE_INFINITY)).
|
|
44
|
+
expect(() => asPositiveUint32(Number.NEGATIVE_INFINITY)).toThrowError(
|
|
45
45
|
TypeError,
|
|
46
46
|
);
|
|
47
47
|
|
|
48
|
-
expect(() => asPositiveUint32(1.2)).
|
|
48
|
+
expect(() => asPositiveUint32(1.2)).toThrowError(TypeError);
|
|
49
49
|
|
|
50
|
-
expect(() => asPositiveUint32(-3.4)).
|
|
50
|
+
expect(() => asPositiveUint32(-3.4)).toThrowError(TypeError);
|
|
51
51
|
});
|
|
52
52
|
|
|
53
53
|
test('returns the same value for valid inputs', () => {
|
|
@@ -70,7 +70,7 @@ describe('PositiveUint32 test', () => {
|
|
|
70
70
|
] as const)(
|
|
71
71
|
`asPositiveUint32($name) should throw a TypeError`,
|
|
72
72
|
({ value }) => {
|
|
73
|
-
expect(() => asPositiveUint32(value)).
|
|
73
|
+
expect(() => asPositiveUint32(value)).toThrowError(
|
|
74
74
|
new TypeError(
|
|
75
75
|
`Expected a positive integer in [1, 2^32), got: ${value}`,
|
|
76
76
|
),
|
|
@@ -5,41 +5,45 @@ import { asSafeInt, SafeInt } from './safe-int.mjs';
|
|
|
5
5
|
describe('SafeInt test', () => {
|
|
6
6
|
describe(asSafeInt, () => {
|
|
7
7
|
test('accepts valid safe integers', () => {
|
|
8
|
-
expect(() => asSafeInt(0)).not.
|
|
8
|
+
expect(() => asSafeInt(0)).not.toThrowError();
|
|
9
9
|
|
|
10
|
-
expect(() => asSafeInt(1)).not.
|
|
10
|
+
expect(() => asSafeInt(1)).not.toThrowError();
|
|
11
11
|
|
|
12
|
-
expect(() => asSafeInt(-1)).not.
|
|
12
|
+
expect(() => asSafeInt(-1)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asSafeInt(42)).not.
|
|
14
|
+
expect(() => asSafeInt(42)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asSafeInt(-42)).not.
|
|
16
|
+
expect(() => asSafeInt(-42)).not.toThrowError();
|
|
17
17
|
|
|
18
|
-
expect(() => asSafeInt(Number.MAX_SAFE_INTEGER)).not.
|
|
18
|
+
expect(() => asSafeInt(Number.MAX_SAFE_INTEGER)).not.toThrowError();
|
|
19
19
|
|
|
20
|
-
expect(() => asSafeInt(Number.MIN_SAFE_INTEGER)).not.
|
|
20
|
+
expect(() => asSafeInt(Number.MIN_SAFE_INTEGER)).not.toThrowError();
|
|
21
21
|
});
|
|
22
22
|
|
|
23
23
|
test('rejects values outside safe integer range', () => {
|
|
24
|
-
expect(() => asSafeInt(Number.MAX_SAFE_INTEGER + 1)).
|
|
24
|
+
expect(() => asSafeInt(Number.MAX_SAFE_INTEGER + 1)).toThrowError(
|
|
25
|
+
TypeError,
|
|
26
|
+
);
|
|
25
27
|
|
|
26
|
-
expect(() => asSafeInt(Number.MIN_SAFE_INTEGER - 1)).
|
|
28
|
+
expect(() => asSafeInt(Number.MIN_SAFE_INTEGER - 1)).toThrowError(
|
|
29
|
+
TypeError,
|
|
30
|
+
);
|
|
27
31
|
|
|
28
|
-
expect(() => asSafeInt(Number.MAX_VALUE)).
|
|
32
|
+
expect(() => asSafeInt(Number.MAX_VALUE)).toThrowError(TypeError);
|
|
29
33
|
|
|
30
|
-
expect(() => asSafeInt(-Number.MAX_VALUE)).
|
|
34
|
+
expect(() => asSafeInt(-Number.MAX_VALUE)).toThrowError(TypeError);
|
|
31
35
|
});
|
|
32
36
|
|
|
33
37
|
test('rejects non-integers', () => {
|
|
34
|
-
expect(() => asSafeInt(Number.NaN)).
|
|
38
|
+
expect(() => asSafeInt(Number.NaN)).toThrowError(TypeError);
|
|
35
39
|
|
|
36
|
-
expect(() => asSafeInt(Number.POSITIVE_INFINITY)).
|
|
40
|
+
expect(() => asSafeInt(Number.POSITIVE_INFINITY)).toThrowError(TypeError);
|
|
37
41
|
|
|
38
|
-
expect(() => asSafeInt(Number.NEGATIVE_INFINITY)).
|
|
42
|
+
expect(() => asSafeInt(Number.NEGATIVE_INFINITY)).toThrowError(TypeError);
|
|
39
43
|
|
|
40
|
-
expect(() => asSafeInt(1.2)).
|
|
44
|
+
expect(() => asSafeInt(1.2)).toThrowError(TypeError);
|
|
41
45
|
|
|
42
|
-
expect(() => asSafeInt(-3.4)).
|
|
46
|
+
expect(() => asSafeInt(-3.4)).toThrowError(TypeError);
|
|
43
47
|
});
|
|
44
48
|
|
|
45
49
|
test('returns the same value for valid inputs', () => {
|
|
@@ -61,7 +65,7 @@ describe('SafeInt test', () => {
|
|
|
61
65
|
{ name: '1.2', value: 1.2 },
|
|
62
66
|
{ name: '-3.4', value: -3.4 },
|
|
63
67
|
] as const)(`asSafeInt($name) should throw a TypeError`, ({ value }) => {
|
|
64
|
-
expect(() => asSafeInt(value)).
|
|
68
|
+
expect(() => asSafeInt(value)).toThrowError(
|
|
65
69
|
new TypeError(`Expected a safe integer, got: ${value}`),
|
|
66
70
|
);
|
|
67
71
|
});
|
|
@@ -5,41 +5,47 @@ import { asSafeUint, isSafeUint, SafeUint } from './safe-uint.mjs';
|
|
|
5
5
|
describe('SafeUint test', () => {
|
|
6
6
|
describe(asSafeUint, () => {
|
|
7
7
|
test('accepts valid safe unsigned integers', () => {
|
|
8
|
-
expect(() => asSafeUint(0)).not.
|
|
8
|
+
expect(() => asSafeUint(0)).not.toThrowError();
|
|
9
9
|
|
|
10
|
-
expect(() => asSafeUint(1)).not.
|
|
10
|
+
expect(() => asSafeUint(1)).not.toThrowError();
|
|
11
11
|
|
|
12
|
-
expect(() => asSafeUint(42)).not.
|
|
12
|
+
expect(() => asSafeUint(42)).not.toThrowError();
|
|
13
13
|
|
|
14
|
-
expect(() => asSafeUint(100)).not.
|
|
14
|
+
expect(() => asSafeUint(100)).not.toThrowError();
|
|
15
15
|
|
|
16
|
-
expect(() => asSafeUint(Number.MAX_SAFE_INTEGER)).not.
|
|
16
|
+
expect(() => asSafeUint(Number.MAX_SAFE_INTEGER)).not.toThrowError();
|
|
17
17
|
});
|
|
18
18
|
|
|
19
19
|
test('rejects negative numbers', () => {
|
|
20
|
-
expect(() => asSafeUint(-1)).
|
|
20
|
+
expect(() => asSafeUint(-1)).toThrowError(TypeError);
|
|
21
21
|
|
|
22
|
-
expect(() => asSafeUint(-42)).
|
|
22
|
+
expect(() => asSafeUint(-42)).toThrowError(TypeError);
|
|
23
23
|
|
|
24
|
-
expect(() => asSafeUint(Number.MIN_SAFE_INTEGER)).
|
|
24
|
+
expect(() => asSafeUint(Number.MIN_SAFE_INTEGER)).toThrowError(TypeError);
|
|
25
25
|
});
|
|
26
26
|
|
|
27
27
|
test('rejects values outside safe integer range', () => {
|
|
28
|
-
expect(() => asSafeUint(Number.MAX_SAFE_INTEGER + 1)).
|
|
28
|
+
expect(() => asSafeUint(Number.MAX_SAFE_INTEGER + 1)).toThrowError(
|
|
29
|
+
TypeError,
|
|
30
|
+
);
|
|
29
31
|
|
|
30
|
-
expect(() => asSafeUint(Number.MAX_VALUE)).
|
|
32
|
+
expect(() => asSafeUint(Number.MAX_VALUE)).toThrowError(TypeError);
|
|
31
33
|
});
|
|
32
34
|
|
|
33
35
|
test('rejects non-integers', () => {
|
|
34
|
-
expect(() => asSafeUint(Number.NaN)).
|
|
36
|
+
expect(() => asSafeUint(Number.NaN)).toThrowError(TypeError);
|
|
35
37
|
|
|
36
|
-
expect(() => asSafeUint(Number.POSITIVE_INFINITY)).
|
|
38
|
+
expect(() => asSafeUint(Number.POSITIVE_INFINITY)).toThrowError(
|
|
39
|
+
TypeError,
|
|
40
|
+
);
|
|
37
41
|
|
|
38
|
-
expect(() => asSafeUint(Number.NEGATIVE_INFINITY)).
|
|
42
|
+
expect(() => asSafeUint(Number.NEGATIVE_INFINITY)).toThrowError(
|
|
43
|
+
TypeError,
|
|
44
|
+
);
|
|
39
45
|
|
|
40
|
-
expect(() => asSafeUint(1.2)).
|
|
46
|
+
expect(() => asSafeUint(1.2)).toThrowError(TypeError);
|
|
41
47
|
|
|
42
|
-
expect(() => asSafeUint(-3.4)).
|
|
48
|
+
expect(() => asSafeUint(-3.4)).toThrowError(TypeError);
|
|
43
49
|
});
|
|
44
50
|
|
|
45
51
|
test('returns the same value for valid inputs', () => {
|
|
@@ -60,7 +66,7 @@ describe('SafeUint test', () => {
|
|
|
60
66
|
{ name: '-3.4', value: -3.4 },
|
|
61
67
|
{ name: '-1', value: -1 },
|
|
62
68
|
] as const)(`asSafeUint($name) should throw a TypeError`, ({ value }) => {
|
|
63
|
-
expect(() => asSafeUint(value)).
|
|
69
|
+
expect(() => asSafeUint(value)).toThrowError(
|
|
64
70
|
new TypeError(`Expected a non-negative safe integer, got: ${value}`),
|
|
65
71
|
);
|
|
66
72
|
});
|