-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_test.ts
170 lines (151 loc) · 4.09 KB
/
utils_test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// Copyright 2023-latest Tomoki Miyauchi. All rights reserved. MIT license.
import {
createInst,
entriesAll,
Expectable,
fromMessage,
fromPath,
joinDot,
print,
printProps,
} from "./utils.ts";
import { assertEquals, describe, it } from "./_dev_deps.ts";
describe("fromMessage", () => {
it("should return new message failure", () => {
assertEquals(
fromMessage({ message: "", instancePath: [] }, "test"),
{ message: "test", instancePath: [] },
);
});
it("should return old message", () => {
assertEquals(
fromMessage({ message: "test", instancePath: [] }, ""),
{ message: "test", instancePath: [] },
);
});
});
describe("fromPath", () => {
it("should return new instance path", () => {
assertEquals(
fromPath({ message: "", instancePath: [1, 2, 3] }, 0),
{ message: "", instancePath: [0, 1, 2, 3] },
);
});
});
describe("print", () => {
it("should display as", () => {
const table: [unknown, string][] = [
["", `""`],
["abc", `"abc"`],
[0, "0"],
[0n, "0n"],
[true, "true"],
[false, "false"],
[null, "null"],
[undefined, "undefined"],
[Symbol("a"), "Symbol(a)"],
[{}, "[object Object]"],
];
table.forEach(([input, expected]) => {
assertEquals(print(input), expected);
});
});
});
describe("printProps", () => {
it("should display as", () => {
const table: [Record<PropertyKey, unknown>, string][] = [
[{ a: "" }, `{a: ""}`],
[{ a: "", b: " ", c: " " }, `{a: "", b: " ", c: " "}`],
[{ c: " ", a: "", b: " " }, `{c: " ", a: "", b: " "}`],
[
{ [Symbol.iterator]: "", a: 0n },
`{a: 0n, Symbol(Symbol.iterator): ""}`,
],
[
{ [Symbol.iterator]: "", a: 0n, [Symbol.hasInstance]: "a" },
`{a: 0n, Symbol(Symbol.iterator): "", Symbol(Symbol.hasInstance): "a"}`,
],
];
table.forEach(([input, expected]) => {
assertEquals(printProps(input), expected);
});
});
});
describe("entriesAll", () => {
it("should return entries includes symbol entry", () => {
const table: [
Record<PropertyKey, unknown>,
[string | symbol, unknown][],
][] = [
[{}, []],
[{ a: "" }, [["a", ""]]],
[{ a: "", b: "" }, [["a", ""], ["b", ""]]],
[{ b: "", a: "" }, [["b", ""], ["a", ""]]],
[{ [Symbol.asyncIterator]: "", a: "", [Symbol.iterator]: "" }, [
["a", ""],
[Symbol.asyncIterator, ""],
[Symbol.iterator, ""],
]],
];
table.forEach(([obj, expected]) => {
assertEquals(entriesAll(obj), expected);
});
});
});
describe("createInst", () => {
it("should pass args to constructor", () => {
class A {
constructor(...args: unknown[]) {
assertEquals(args, []);
}
}
createInst(A)();
});
});
describe("Expectable", () => {
it("should override failure message", () => {
class V {
validate() {
return [{ message: "", instancePath: [] }];
}
}
const $V = Expectable(V);
assertEquals([...new $V().expect(`test`).validate("")], [
{ message: "test", instancePath: [] },
]);
assertEquals([...new $V().expect(`test`).expect(`test2`).validate("")], [
{ message: "test2", instancePath: [] },
]);
assertEquals([
...new $V().expect(`test`).expect(`test2`).expect(() => "test3")
.validate(""),
], [{ message: "test3", instancePath: [] }]);
});
it("should return default message if not set", () => {
class V {
validate() {
return [{ message: "test", instancePath: [] }];
}
}
const $V = Expectable(V);
assertEquals([...new $V().validate("")], [{
message: "test",
instancePath: [],
}]);
});
});
describe("joinDot", () => {
it("should return string", () => {
const table: [[unknown, ...unknown[]], string][] = [
[[""], ""],
[["a"], "a"],
[["a", "b"], "a.b"],
[["", ""], "."],
[["", "a"], ".a"],
[["a", ""], "a."],
];
table.forEach(([input, expected]) => {
assertEquals(joinDot(...input), expected);
});
});
});