forked from rocicorp/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuse-query.test.ts
More file actions
338 lines (264 loc) · 9.35 KB
/
use-query.test.ts
File metadata and controls
338 lines (264 loc) · 9.35 KB
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
import {beforeEach, describe, expect, test, vi} from 'vitest';
import type {Schema} from '../../zero-schema/src/builder/schema-builder.ts';
import {type AbstractQuery} from '../../zql/src/query/query-impl.ts';
import type {ResultType} from '../../zql/src/query/typed-view.ts';
import {getAllViewsSizeForTesting, ViewStore} from './use-query.tsx';
function newMockQuery(
query: string,
singular = false,
): AbstractQuery<Schema, string> {
const view = newView();
return {
hash() {
return query;
},
materialize: vi.fn().mockImplementation(() => view),
format: {singular},
} as unknown as AbstractQuery<Schema, string>;
}
function newView() {
return {
listeners: new Set<() => void>(),
addListener(cb: () => void) {
this.listeners.add(cb);
},
destroy() {
this.listeners.clear();
},
updateTTL() {},
};
}
describe('ViewStore', () => {
beforeEach(() => {
vi.useFakeTimers();
});
describe('duplicate queries', () => {
test('duplicate queries do not create duplicate views', () => {
const viewStore = new ViewStore();
const view1 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const view2 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
expect(view1).toBe(view2);
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
});
test('removing a duplicate query does not destroy the shared view', () => {
const viewStore = new ViewStore();
const view1 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const view2 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const cleanup1 = view1.subscribeReactInternals(() => {});
view2.subscribeReactInternals(() => {});
cleanup1();
vi.advanceTimersByTime(100);
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
});
test('Using the same query with different TTL should reuse views', () => {
const viewStore = new ViewStore();
const q1 = newMockQuery('query1');
const view1 = viewStore.getView('client1', q1, true, '1s');
const updateTTLSpy = vi.spyOn(view1, 'updateTTL');
expect(q1.materialize).toHaveBeenCalledExactlyOnceWith('1s');
const q2 = newMockQuery('query1');
const view2 = viewStore.getView('client1', q2, true, '1m');
expect(view1).toBe(view2);
// Same query hash so only one view. Should have called updateTTL on the existing one.
expect(q2.materialize).not.toHaveBeenCalled();
expect(updateTTLSpy).toHaveBeenCalledExactlyOnceWith('1m');
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
});
test('Using the same query with same TTL but different representation', () => {
const viewStore = new ViewStore();
const q1 = newMockQuery('query1');
const view1 = viewStore.getView('client1', q1, true, '60s');
const updateTTLSpy = vi.spyOn(view1, 'updateTTL');
expect(q1.materialize).toHaveBeenCalledTimes(1);
const q2 = newMockQuery('query1');
const view2 = viewStore.getView('client1', q2, true, '1m');
expect(view1).toBe(view2);
expect(updateTTLSpy).toHaveBeenCalledExactlyOnceWith('1m');
const q3 = newMockQuery('query1');
const view3 = viewStore.getView('client1', q3, true, 60_000);
expect(view1).toBe(view3);
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
});
});
describe('destruction', () => {
test('removing all duplicate queries destroys the shared view', () => {
const viewStore = new ViewStore();
const view1 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const view2 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const cleanup1 = view1.subscribeReactInternals(() => {});
const cleanup2 = view2.subscribeReactInternals(() => {});
cleanup1();
cleanup2();
vi.advanceTimersByTime(100);
expect(getAllViewsSizeForTesting(viewStore)).toBe(0);
});
test('removing a unique query destroys the view', () => {
const viewStore = new ViewStore();
const view = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const cleanup = view.subscribeReactInternals(() => {});
cleanup();
vi.advanceTimersByTime(100);
expect(getAllViewsSizeForTesting(viewStore)).toBe(0);
});
test('view destruction is delayed via setTimeout', () => {
const viewStore = new ViewStore();
const view = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const cleanup = view.subscribeReactInternals(() => {});
cleanup();
vi.advanceTimersByTime(5);
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
vi.advanceTimersByTime(10);
expect(getAllViewsSizeForTesting(viewStore)).toBe(0);
});
test('subscribing to a view scheduled for cleanup prevents the cleanup', () => {
const viewStore = new ViewStore();
const view = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const cleanup = view.subscribeReactInternals(() => {});
cleanup();
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
vi.advanceTimersByTime(5);
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
const view2 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const cleanup2 = view.subscribeReactInternals(() => {});
vi.advanceTimersByTime(100);
expect(getAllViewsSizeForTesting(viewStore)).toBe(1);
expect(view2).toBe(view);
cleanup2();
vi.advanceTimersByTime(100);
expect(getAllViewsSizeForTesting(viewStore)).toBe(0);
});
test('destroying the same underlying view twice is a no-op', () => {
const viewStore = new ViewStore();
const view = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const cleanup = view.subscribeReactInternals(() => {});
cleanup();
cleanup();
vi.advanceTimersByTime(100);
expect(getAllViewsSizeForTesting(viewStore)).toBe(0);
});
});
describe('clients', () => {
test('the same query for different clients results in different views', () => {
const viewStore = new ViewStore();
const view1 = viewStore.getView(
'client1',
newMockQuery('query1'),
true,
'forever',
);
const view2 = viewStore.getView(
'client2',
newMockQuery('query1'),
true,
'forever',
);
expect(view1).not.toBe(view2);
});
});
describe('collapse multiple empty on data', () => {
test('plural', () => {
const viewStore = new ViewStore();
const q = newMockQuery('query1');
const {listeners} = q.materialize() as unknown as {
listeners: Set<(data: unknown, resultType: ResultType) => void>;
};
const view = viewStore.getView('client1', q, true, 'forever');
const cleanup = view.subscribeReactInternals(() => {});
listeners.forEach(cb => cb([], 'unknown'));
const snapshot1 = view.getSnapshot();
listeners.forEach(cb => cb([], 'unknown'));
const snapshot2 = view.getSnapshot();
expect(snapshot1).toBe(snapshot2);
listeners.forEach(cb => cb([{a: 1}], 'unknown'));
// TODO: Assert that data[0] is the same object as passed into the listener.
expect(view.getSnapshot()).toEqual([[{a: 1}], {type: 'unknown'}]);
listeners.forEach(cb => cb([], 'complete'));
const snapshot3 = view.getSnapshot();
expect(snapshot3).toEqual([[], {type: 'complete'}]);
listeners.forEach(cb => cb([], 'complete'));
const snapshot4 = view.getSnapshot();
expect(snapshot3).toBe(snapshot4);
cleanup();
});
test('singular', () => {
const viewStore = new ViewStore();
const q = newMockQuery('query1', true);
const {listeners} = q.materialize() as unknown as {
listeners: Set<(...args: unknown[]) => void>;
};
const view = viewStore.getView('client1', q, true, 'forever');
const cleanup = view.subscribeReactInternals(() => {});
listeners.forEach(cb => cb(undefined, 'unknown'));
const snapshot1 = view.getSnapshot();
expect(snapshot1).toEqual([undefined, {type: 'unknown'}]);
listeners.forEach(cb => cb(undefined, 'unknown'));
const snapshot2 = view.getSnapshot();
expect(snapshot1).toBe(snapshot2);
listeners.forEach(cb => cb({a: 1}, 'unknown'));
// TODO: Assert that data is the same object as passed into the listener.
expect(view.getSnapshot()).toEqual([{a: 1}, {type: 'unknown'}]);
listeners.forEach(cb => cb(undefined, 'complete'));
const snapshot3 = view.getSnapshot();
expect(snapshot3).toEqual([undefined, {type: 'complete'}]);
listeners.forEach(cb => cb(undefined, 'complete'));
const snapshot4 = view.getSnapshot();
expect(snapshot3).toBe(snapshot4);
cleanup();
});
});
});