-
Notifications
You must be signed in to change notification settings - Fork 0
/
QueryBin.test.ts
282 lines (248 loc) · 8.59 KB
/
QueryBin.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
import { describe, expect, it } from "vitest";
import { QueryBin, QueryDefinition } from "./QueryBin";
import { createThreadsRpcOptions } from "vitest/workers";
function dividableBy(modulo: number): QueryDefinition<number> {
return {
test: (n) => n % modulo === 0,
serializeForErrorMessage: (item) => String(item),
noneFoundMessage: `No number is dividable by ${modulo}.`,
multipleFoundMessage: `Multiple numbers are dividable by ${modulo}.`,
};
}
describe("QueryBin", () => {
it("is initially empty", () => {
expect(new QueryBin({}).all()).toEqual([]);
});
it("can add values", () => {
const numbers = new QueryBin({});
numbers.add(1);
expect(numbers.all()).toEqual([1]);
numbers.add(2);
expect(numbers.all()).toEqual([1, 2]);
});
it("can bulk add values", () => {
const numbers = new QueryBin({});
numbers.addAll([1, 2, 3]);
expect(numbers.all()).toEqual([1, 2, 3]);
numbers.addAll([1, 2]);
expect(numbers.all()).toEqual([1, 2, 3, 1, 2]);
});
it("can clear all values", () => {
const numbers = new QueryBin({});
numbers.addAll([1, 2, 3]);
expect(numbers.all()).toEqual([1, 2, 3]);
numbers.clear();
expect(numbers.all()).toEqual([]);
});
it("queryAll returns all results matching a query", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(bin.queryAll.dividableBy(3)).toEqual([3, 6, 9]);
});
it("queryAll returns an empty array if no results match", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(bin.queryAll.dividableBy(25)).toEqual([]);
});
it("'query' throws an error if multiple results match", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(() => bin.query.dividableBy(3)).toThrow(
"Multiple numbers are dividable by 3.\n" +
"Found: \n" +
"3\n" +
"6\n" +
"9",
);
});
it("'query' returns null if no results match", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(bin.query.dividableBy(25)).toEqual(null);
});
it("'query' returns the found single value", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(bin.query.dividableBy(7)).toEqual(7);
});
it("'get' throws an error if multiple results match", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(() => bin.get.dividableBy(3)).toThrow(
"Multiple numbers are dividable by 3.\n" +
"Found: \n" +
"3\n" +
"6\n" +
"9",
);
});
it("'get' throws an error if no results match", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(() => bin.get.dividableBy(25)).toThrow(
"No number is dividable by 25.\n" +
"All values: \n" +
"1\n" +
"2\n" +
"3\n" +
"4\n" +
"5\n" +
"6\n" +
"7\n" +
"8\n" +
"9\n" +
"10",
);
});
it("'get' shows special message if there are no values at all", () => {
const bin = new QueryBin({ dividableBy });
expect(() => bin.get.dividableBy(25)).toThrow(
"No number is dividable by 25.\nList is completely empty!",
);
});
it("'get' returns the found single value", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(bin.get.dividableBy(7)).toEqual(7);
});
it("'getAll' return multiple results", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(bin.getAll.dividableBy(3)).toEqual([3, 6, 9]);
});
it("'getAll' throws an error if no results match", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(() => bin.getAll.dividableBy(25)).toThrow(
"No number is dividable by 25.\n" +
"All values: \n" +
"1\n" +
"2\n" +
"3\n" +
"4\n" +
"5\n" +
"6\n" +
"7\n" +
"8\n" +
"9\n" +
"10",
);
});
it("'getAll' returns the found single value", () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(bin.getAll.dividableBy(7)).toEqual([7]);
});
it("'fin dAll' return multiple results", async () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(await bin.findAll.dividableBy(3)).toEqual([3, 6, 9]);
});
it("'findAll' throws an error if no results match", async () => {
const bin = new QueryBin({ dividableBy }, { timeoutMillis: 100 });
bin.addAll([1, 2]);
await expect(bin.findAll.dividableBy(3)).rejects.toThrow(
"No number is dividable by 3.\nAll values: \n1\n2",
);
});
it("'findAll' returns the found single value", async () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(await bin.findAll.dividableBy(7)).toEqual([7]);
});
it("'findAll' return multiple results if they come in later", async () => {
const bin = new QueryBin({ dividableBy });
const result = bin.findAll.dividableBy(3);
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(await result).toEqual([3, 6, 9]);
});
it("'find' throws an error on multiple results", async () => {
const bin = new QueryBin({ dividableBy }, { timeoutMillis: 100 });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
await expect(bin.find.dividableBy(3)).rejects.toThrow(
"Multiple numbers are dividable by 3.\n" +
"Found: \n" +
"3\n" +
"6\n" +
"9",
);
});
it("'find' throws an error if no results match", async () => {
const bin = new QueryBin({ dividableBy }, { timeoutMillis: 100 });
bin.addAll([1, 2]);
await expect(bin.findAll.dividableBy(3)).rejects.toThrow(
"No number is dividable by 3.\nAll values: \n1\n2",
);
});
it("'find' returns the found single value", async () => {
const bin = new QueryBin({ dividableBy });
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
expect(await bin.find.dividableBy(7)).toEqual(7);
});
it("'find' return multiple results if they come in later", async () => {
const bin = new QueryBin({ dividableBy });
setTimeout(() => {
bin.addAll([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
}, 100);
expect(await bin.find.dividableBy(7)).toEqual(7);
});
it("'find' only waits 'timeoutMillis' milliseconds for items to appear", async () => {
const bin = new QueryBin({ dividableBy }, { timeoutMillis: 200 });
setTimeout(() => {
bin.addAll([1, 2, 3]);
}, 1000);
await expect(bin.find.dividableBy(3)).rejects.toThrow(
"No number is dividable by 3.\nList is completely empty!",
);
});
it("'find' waits about 1000 milliseconds by default", async () => {
const bin = new QueryBin({ dividableBy });
setTimeout(() => {
bin.addAll([1, 2, 3]);
}, 900);
expect(await bin.find.dividableBy(3)).toEqual(3);
});
it("'find' does not wait much longer than about 1000 milliseconds by default", async () => {
const bin = new QueryBin({ dividableBy });
setTimeout(() => {
bin.addAll([1, 2, 3]);
}, 1100);
await expect(bin.find.dividableBy(3)).rejects.toThrow(
"No number is dividable by 3.\nList is completely empty!",
);
});
describe("custom serializer", () => {
function createBinWithIds() {
return new QueryBin({
byIdPrefix(expected: string): QueryDefinition<{ id: string }> {
return {
test: (item) => item.id.startsWith(expected),
multipleFoundMessage: "Multiple found.",
noneFoundMessage: "None found.",
};
},
});
}
it("uses default serialize in 'none found'", () => {
const bin = createBinWithIds();
bin.addAll([{ id: "a" }, { id: "b" }]);
expect(() => {
bin.get.byIdPrefix("c");
}).toThrow(
`None found.\nAll values: \n${json({ id: "a" })}\n${json({ id: "b" })}`,
);
});
it("uses serializer in 'multiple found'", () => {
const bin = createBinWithIds();
bin.addAll([{ id: "ab" }, { id: "ac" }]);
expect(() => {
bin.get.byIdPrefix("a");
}).toThrow(
`Multiple found.\nFound: \n${json({ id: "ab" })}\n${json({ id: "ac" })}`,
);
});
});
});
function json(obj: unknown) {
return JSON.stringify(obj, null, 2);
}