-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathdefu.test.ts
224 lines (200 loc) Β· 6.06 KB
/
defu.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import { expectTypeOf } from "expect-type";
import { it, describe, expect } from "vitest";
import { defu, createDefu, defuFn, defuArrayFn } from "../src/defu";
// Part of tests brought from jonschlinkert/defaults-deep (MIT)
const nonObject = [null, undefined, [], false, true, 123];
describe("defu", () => {
it("should copy only missing properties defaults", () => {
const result = defu({ a: "c" }, { a: "bbb", d: "c" });
expect(result).toEqual({ a: "c", d: "c" });
expectTypeOf(result).toEqualTypeOf<{ a: string; d: string }>();
});
it("should fill in values that are null", () => {
const result1 = defu({ a: null as null }, { a: "c", d: "c" });
expect(result1).toEqual({ a: "c", d: "c" });
expectTypeOf(result1).toEqualTypeOf<{ a: string; d: string }>();
const result2 = defu({ a: "c" }, { a: null as null, d: "c" });
expect(result2).toEqual({ a: "c", d: "c" });
expectTypeOf(result2).toEqualTypeOf<{ a: string; d: string }>();
});
it("should copy nested values", () => {
const result = defu({ a: { b: "c" } }, { a: { d: "e" } });
expect(result).toEqual({
a: { b: "c", d: "e" },
});
expectTypeOf(result).toEqualTypeOf<{ a: { b: string; d: string } }>();
});
it("should concat array values by default", () => {
const result = defu({ array: ["a", "b"] }, { array: ["c", "d"] });
expect(result).toEqual({
array: ["a", "b", "c", "d"],
});
expectTypeOf(result).toEqualTypeOf<{ array: string[] }>();
});
it("should correctly type differing array values", () => {
const item1 = { name: "Name", age: 21 };
const item2 = { name: "Name", age: "42" };
const result = defu({ items: [item1] }, { items: [item2] });
expect(result).toEqual({ items: [item1, item2] });
expectTypeOf(result).toEqualTypeOf<{
items: Array<
{ name: string; age: number } | { name: string; age: string }
>;
}>();
});
it("should correctly merge different object types", () => {
const fn = () => 42;
const re = /test/i;
const result = defu({ a: fn }, { a: re });
expect(result).toEqual({ a: fn });
expectTypeOf(result).toEqualTypeOf<{ a: (() => number) | RegExp }>();
});
it("should handle non object first param", () => {
for (const val of nonObject) {
expect(defu(val, { d: true })).toEqual({ d: true });
}
});
it("should handle non object second param", () => {
for (const val of nonObject) {
expect(defu({ d: true }, val)).toEqual({ d: true });
}
});
it("multi defaults", () => {
const result = defu({ a: 1 }, { b: 2, a: "x" }, { c: 3, a: "x", b: "x" });
expect(result).toEqual({
a: 1,
b: 2,
c: 3,
});
expectTypeOf(result).toEqualTypeOf<{
a: string | number;
b: string | number;
c: number;
}>();
});
it("should not override Object prototype", () => {
const payload = JSON.parse(
'{"constructor": {"prototype": {"isAdmin": true}}}'
);
defu({}, payload);
defu(payload, {});
defu(payload, payload);
// @ts-ignore
expect({}.isAdmin).toBe(undefined);
});
it("should ignore non-object arguments", () => {
expect(defu(null, { foo: 1 }, false, 123, { bar: 2 })).toEqual({
foo: 1,
bar: 2,
});
});
it("should merge types of more than two objects", () => {
interface SomeConfig {
foo: string;
}
interface SomeOtherConfig {
bar: string[];
}
interface ThirdConfig {
baz: number[];
}
interface ExpectedMergedType {
foo: string;
bar: string[];
baz: number[];
}
expectTypeOf(
defu({} as SomeConfig, {} as SomeOtherConfig, {} as ThirdConfig)
).toEqualTypeOf<ExpectedMergedType>();
});
it("should allow partials within merge chain", () => {
interface SomeConfig {
foo: string[];
}
interface SomeOtherConfig {
bar: string[];
}
interface ExpectedMergedType {
foo: string[];
bar: string[];
}
let options: (SomeConfig & SomeOtherConfig) | undefined;
expectTypeOf(
defu(options ?? {}, { foo: ["test"] }, { bar: ["test2"] }, {})
).toEqualTypeOf<ExpectedMergedType>();
expectTypeOf(
defu({ foo: ["test"] }, {}, { bar: ["test2"] }, {})
).toEqualTypeOf<ExpectedMergedType>();
});
it("custom merger", () => {
const ext = createDefu((obj, key, val) => {
if (typeof val === "number") {
(obj as any)[key] += val;
return true;
}
});
expect(ext({ cost: 15 }, { cost: 10 })).toEqual({ cost: 25 });
});
it("defuFn()", () => {
const num = () => 20;
expect(
defuFn(
{
ignore: (val) => val.filter((i) => i !== "dist"),
num,
ignored: num,
},
{
ignore: ["node_modules", "dist"],
num: 10,
}
)
).toEqual({
ignore: ["node_modules"],
num: 20,
ignored: num,
});
});
it("defuArrayFn()", () => {
const num = () => 20;
expect(
defuArrayFn(
{
arr: () => ["c"],
num,
},
{
arr: ["a", "b"],
num: 10,
}
)
).toEqual({
arr: ["c"],
num,
});
});
it("custom merger with namespace", () => {
const ext = createDefu((obj, key, val, namespace) => {
// console.log({ obj, key, val, namespace })
if (key === "modules") {
// TODO: It is not possible to override types with extend()
// @ts-ignore
obj[key] = namespace + ":" + [...val, ...obj[key]].sort().join(",");
return true;
}
});
const obj1 = { modules: ["A"], foo: { bar: { modules: ["X"] } } };
const obj2 = { modules: ["B"], foo: { bar: { modules: ["Y"] } } };
expect(ext(obj1, obj2)).toEqual({
modules: ":A,B",
foo: { bar: { modules: "foo.bar:X,Y" } },
});
});
it("should clone the defaults object's values", () => {
const ext = createDefu(undefined, { clone: true });
const source = { a: [1, 2] };
const defaults = { a: { b: 1 } };
const result = ext(source, defaults);
expect(result.a).not.toBe(source.a);
});
});