-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
useLoadOnStale.test.mjs
265 lines (223 loc) · 6.36 KB
/
useLoadOnStale.test.mjs
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
// @ts-check
/**
* @import { ReactHookResult } from "./test/ReactHookTest.mjs"
* @import { Loader } from "./types.mjs"
*/
import "./test/polyfillCustomEvent.mjs";
import { deepStrictEqual, ok, strictEqual, throws } from "node:assert";
import { describe, it } from "node:test";
import React from "react";
import ReactTestRenderer from "react-test-renderer";
import Cache from "./Cache.mjs";
import CacheContext from "./CacheContext.mjs";
import cacheEntryStale from "./cacheEntryStale.mjs";
import Loading from "./Loading.mjs";
import LoadingCacheValue from "./LoadingCacheValue.mjs";
import assertBundleSize from "./test/assertBundleSize.mjs";
import createReactTestRenderer from "./test/createReactTestRenderer.mjs";
import ReactHookTest from "./test/ReactHookTest.mjs";
import useLoadOnStale from "./useLoadOnStale.mjs";
describe("React hook `useLoadOnStale`.", { concurrency: true }, () => {
/**
* Dummy loader for testing.
* @type {Loader}
*/
const dummyLoader = () =>
new LoadingCacheValue(
new Loading(),
new Cache(),
"a",
Promise.resolve(),
new AbortController(),
);
it("Bundle size.", async () => {
await assertBundleSize(
new URL("./useLoadOnStale.mjs", import.meta.url),
500,
);
});
it("Argument 1 `cacheKey` not a string.", () => {
throws(() => {
useLoadOnStale(
// @ts-expect-error Testing invalid.
true,
dummyLoader,
);
}, new TypeError("Argument 1 `cacheKey` must be a string."));
});
it("Argument 2 `load` not a function.", () => {
throws(() => {
useLoadOnStale(
"a",
// @ts-expect-error Testing invalid.
true,
);
}, new TypeError("Argument 2 `load` must be a function."));
});
it("Cache context missing.", () => {
/** @type {Array<ReactHookResult>} */
const results = [];
createReactTestRenderer(
React.createElement(ReactHookTest, {
useHook: () => useLoadOnStale("a", dummyLoader),
results,
}),
);
strictEqual(results.length, 1);
ok("threw" in results[0]);
deepStrictEqual(results[0].threw, new TypeError("Cache context missing."));
});
it("Cache context value not a `Cache` instance.", () => {
/** @type {Array<ReactHookResult>} */
const results = [];
createReactTestRenderer(
React.createElement(
CacheContext.Provider,
{
// @ts-expect-error Testing invalid.
value: true,
},
React.createElement(ReactHookTest, {
useHook: () => useLoadOnStale("a", dummyLoader),
results,
}),
),
);
strictEqual(results.length, 1);
ok("threw" in results[0]);
deepStrictEqual(
results[0].threw,
new TypeError("Cache context value must be a `Cache` instance."),
);
});
it("Functionality.", async () => {
const cacheKeyA = "a";
const cacheKeyB = "b";
const cacheA = new Cache({
// Populate the cache entry so it can be staled.
[cacheKeyA]: 0,
});
const cacheB = new Cache({
// Populate the cache entries so they can be staled.
[cacheKeyA]: 0,
[cacheKeyB]: 0,
});
/** @type {Array<{ loader: Function, hadArgs: boolean }>} */
let loadCalls = [];
/** @type {Loader} */
function loadA() {
loadCalls.push({
loader: loadA,
hadArgs: !!arguments.length,
});
return dummyLoader();
}
/** @type {Loader} */
function loadB() {
loadCalls.push({
loader: loadB,
hadArgs: !!arguments.length,
});
return dummyLoader();
}
/** @type {Array<ReactHookResult>} */
const results = [];
const testRenderer = createReactTestRenderer(
React.createElement(
CacheContext.Provider,
{ value: cacheA },
React.createElement(ReactHookTest, {
useHook: () => useLoadOnStale(cacheKeyA, loadA),
results,
}),
),
);
strictEqual(results.length, 1);
ok("returned" in results[0]);
strictEqual(results[0].returned, undefined);
cacheEntryStale(cacheA, cacheKeyA);
deepStrictEqual(loadCalls, [
{
loader: loadA,
hadArgs: false,
},
]);
loadCalls = [];
// Test that re-rendering with the a different cache causes the listener
// to be moved to the new cache.
ReactTestRenderer.act(() => {
testRenderer.update(
React.createElement(
CacheContext.Provider,
{ value: cacheB },
React.createElement(ReactHookTest, {
useHook: () => useLoadOnStale(cacheKeyA, loadA),
results,
}),
),
);
});
strictEqual(results.length, 2);
ok("returned" in results[1]);
strictEqual(results[1].returned, undefined);
cacheEntryStale(cacheB, cacheKeyA);
deepStrictEqual(loadCalls, [
{
loader: loadA,
hadArgs: false,
},
]);
loadCalls = [];
// Test that re-rendering with a different cache key causes the listener
// to be updated.
ReactTestRenderer.act(() => {
testRenderer.update(
React.createElement(
CacheContext.Provider,
{ value: cacheB },
React.createElement(ReactHookTest, {
useHook: () => useLoadOnStale(cacheKeyB, loadA),
results,
}),
),
);
});
strictEqual(results.length, 3);
ok("returned" in results[2]);
strictEqual(results[2].returned, undefined);
cacheEntryStale(cacheB, cacheKeyB);
deepStrictEqual(loadCalls, [
{
loader: loadA,
hadArgs: false,
},
]);
loadCalls = [];
// Test that re-rendering with a different loader causes the listener
// to be updated.
ReactTestRenderer.act(() => {
testRenderer.update(
React.createElement(
CacheContext.Provider,
{ value: cacheB },
React.createElement(ReactHookTest, {
useHook: () => useLoadOnStale(cacheKeyB, loadB),
results,
}),
),
);
});
strictEqual(results.length, 4);
ok("returned" in results[3]);
strictEqual(results[3].returned, undefined);
cacheEntryStale(cacheB, cacheKeyB);
deepStrictEqual(loadCalls, [
{
loader: loadB,
hadArgs: false,
},
]);
// Nothing should have caused a re-render.
strictEqual(results.length, 4);
});
});