-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_test.ts
353 lines (300 loc) · 9.01 KB
/
mod_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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
import { create } from "./mod.ts";
// Load the default match
const match = create();
Deno.test("'=' (EQUAL) operator", async (t) => {
await t.step("'=' operator should match an exact value", () => {
// Setup the match
const [ct] = match(["=", "John Doe"], "John Doe");
// Match result should be true
assertEquals(ct, true);
});
await t.step(
"'=' operator should not match an other value",
() => {
// Setup the match
const [ct] = match(["=", "Jane Doe"], "John Doe");
// Match result should be false
assertEquals(ct, false);
},
);
});
Deno.test("'>' (GREATER_THAN) operator", async (t) => {
await t.step("'>' should match a greater value", () => {
// Setup the match
const [ct] = match([">", 20], 25);
// Match result should be true
assertEquals(ct, true);
});
await t.step(
"'>' should not match a lesser value",
() => {
// Setup the match
const [ct] = match([">", 40], 25);
// Match result should be false
assertEquals(ct, false);
},
);
await t.step(
"'>' should not match an equal value",
() => {
// Setup the match
const [ct] = match([">", 25], 25);
// Match result should be false
assertEquals(ct, false);
},
);
});
Deno.test("'<' (LESS_THAN) operator", async (t) => {
await t.step("'<' should match a lesser value", () => {
// Setup the match
const [ct] = match(["<", 40], 25);
// Match result should be true
assertEquals(ct, true);
});
await t.step(
"'<' should not match a greater value",
() => {
// Setup the match
const [ct] = match(["<", 20], 25);
// Match result should be false
assertEquals(ct, false);
},
);
await t.step(
"'<' should not match an equal value",
() => {
// Setup the match
const [ct] = match(["<", 25], 25);
// Match result should be false
assertEquals(ct, false);
},
);
});
Deno.test("'~' (REGEX) operator", async (t) => {
await t.step("'~' should match a regex value", () => {
// Setup the match
const [ct] = match(["~", "(.*) Doe"], "John Doe");
// Match result should be true
assertEquals(ct, true);
});
await t.step(
"'~' should match a non matching regex value",
() => {
// Setup the match
const [ct] = match(["~", "[0-9]+"], "John Doe");
// Match result should be false
assertEquals(ct, false);
},
);
});
Deno.test("'!' (NOT) operator", async (t) => {
await t.step("'!' should negate a positive match", () => {
// Setup the match
const [ct] = match(["!", ["=", "Jane Doe"]], "John Doe");
// Match result should be true
assertEquals(ct, true);
});
await t.step(
"'!' should negate a negative match",
() => {
// Setup the match
const [ct] = match(["!", ["=", "John Doe"]], "John Doe");
// Match result should be false
assertEquals(ct, false);
},
);
});
Deno.test("'.' (KEY_ACCESSOR) operator", async (t) => {
await t.step("'.' should match nested properties", () => {
// Setup the match
const [ct] = match([".", "uid", [
"=",
"01234567-abcd-4abc-8def-0123456789ab",
]], {
uid: "01234567-abcd-4abc-8def-0123456789ab",
});
// Match result should be true
assertEquals(ct, true);
});
await t.step(
"'.' should not match nested properties when condition is false",
() => {
// Setup the match
const [ct] = match([".", "aid", [
"=",
"01234567-abcd-4abc-8def-0123456789ab",
]], {
uid: "01234567-abcd-4abc-8def-0123456789ab",
});
// Match result should be false
assertEquals(ct, false);
},
);
});
Deno.test("'%' (PERCENT) operator", async (t) => {
await t.step("'%' should match 100%", () => {
// Setup the match
const [ct] = match(["%", "namespace", 0, 1], "John Doe");
// Match result should be true
assertEquals(ct, true);
});
await t.step(
"'%' should match 100%",
() => {
// Setup the match
const [ct] = match(["%", "namespace", 0, 0], "John Doe");
// Match result should be false
assertEquals(ct, false);
},
);
await t.step(
"'%' should match should match if in bucket",
() => {
// Setup the match
const [ct] = match(["%", "namespace", 0, 0.8], "John Doe");
// Match result should be false
assertEquals(ct, true);
},
);
await t.step(
"'%' should match should not match if not in bucket",
() => {
// Setup the match
const [ct] = match(["%", "namespace", 0, 0.7], "John Doe");
// Match result should be false
assertEquals(ct, false);
},
);
});
Deno.test("'@' (REFERENCE) operator", async (t) => {
await t.step("'@' should retrieve the value, no condition", () => {
// Setup the match
const [ct, v] = match(["@", "Jane Doe"], "John Doe");
// Match result should be true
assertEquals(ct, true);
assertEquals(v, "Jane Doe");
});
});
Deno.test("'&' (EVERY) operator", async (t) => {
await t.step("'&' should match if all values match", () => {
// Setup the match
const [ct] = match(["&", [">", 20], ["<", 40]], 25);
// Match result should be true
assertEquals(ct, true);
});
await t.step("'&' should not match if any values don't match", () => {
// Setup the match
const [ct] = match(["&", [">", 20], ["<", 20]], 25);
// Match result should be true
assertEquals(ct, false);
});
await t.step("'&' should not match if none of the values match", () => {
// Setup the match
const [ct] = match(["&", [">", 40], ["<", 20]], 25);
// Match result should be true
assertEquals(ct, false);
});
await t.step(
"'&' should not retrieve value if not all conditions match",
() => {
// Setup the match
const [ct, v] = match(["&", ["=", "Jane Doe"], ["=", "John Doe"], [
"@",
"No one",
]], "John Doe");
// Match result should be true
assertEquals(ct, false);
assertEquals(v, undefined);
},
);
await t.step(
"'&' should retrieve last value if all conditions match and there is a default",
() => {
// Setup the match
const [ct, v] = match(
["&", ["=", "Jane Doe"], ["@", "Everyone"]],
"Jane Doe",
);
// Match result should be true
assertEquals(ct, true);
assertEquals(v, "Everyone");
},
);
});
Deno.test("'|' (SOME) operator", async (t) => {
await t.step("'|' should match if all values match", () => {
const [ct] = match(["|", [">", 20], ["<", 40]], 25);
// Match result should be true
assertEquals(ct, true);
});
await t.step("'|' should match if any values match", () => {
const [ct] = match(["|", [">", 20], ["<", 20]], 25);
// Match result should be true
assertEquals(ct, true);
});
await t.step("'|' should not match if none of the values match", () => {
const [ct] = match(["|", [">", 40], ["<", 20]], 25);
// Match result should be false
assertEquals(ct, false);
});
await t.step(
"'|' should not retrieve any value if no condition matches",
() => {
const [ct, v] = match(
["|", ["=", "Jane Doe"], ["=", "Mark Doe"]],
"John Doe",
);
// Match result should be false and value should be undefined
assertEquals(ct, false);
assertEquals(v, undefined);
},
);
await t.step("'|' should retrieve the first when condition matches", () => {
const [ct, v] = match([
"|",
["&", ["=", "Jane Doe"], ["@", "Jane Doe"]],
["&", ["=", "John Doe"], ["@", "John Doe"]],
["@", "No one"],
], "John Doe");
// Match result should be true and value should be "John Doe"
assertEquals(ct, true);
assertEquals(v, "John Doe");
});
await t.step(
"'|' should retrieve default value if no condition matches and there is a default",
() => {
const [ct, v] = match([
"|",
["&", ["=", "Jane Doe"], ["@", "Jane Doe"]],
["@", "No one"],
], "John Doe");
// Match result should be true and the value should be the default "No one"
assertEquals(ct, true);
assertEquals(v, "No one");
},
);
});
Deno.test("Not supported operator", async (t) => {
await t.step("Not supported / undefined types should not match", () => {
const [ct] = match(["?", "John Doe"], "John Doe");
// Match result should be false
assertEquals(ct, false);
});
});
Deno.test("Custom matchers", async (t) => {
// Create custom matcher
const customMatch = create({
EQUAL: ([value], context) => [context === value],
});
await t.step("Custom matcher should match the custom conditions", () => {
const [ct] = customMatch(["EQUAL", "John Doe"], "John Doe");
// Match result should be true
assertEquals(ct, true);
});
await t.step("Custom matcher should not match default conditions", () => {
const [ct] = customMatch(["=", "John Doe"], "John Doe");
// Match result should be false
assertEquals(ct, false);
});
});