forked from TanStack/db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
424 lines (385 loc) · 11.8 KB
/
utils.ts
File metadata and controls
424 lines (385 loc) · 11.8 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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
import { expect } from "vitest"
import type {
CollectionConfig,
MutationFnParams,
SyncConfig,
} from "../src/index.js"
// Index usage tracking utilities
export interface IndexUsageStats {
rangeQueryCalls: number
fullScanCalls: number
indexesUsed: Array<string>
queriesExecuted: Array<{
type: `index` | `fullScan`
operation?: string
field?: string
value?: any
}>
}
export function createIndexUsageTracker(collection: any): {
stats: IndexUsageStats
restore: () => void
} {
const stats: IndexUsageStats = {
rangeQueryCalls: 0,
fullScanCalls: 0,
indexesUsed: [],
queriesExecuted: [],
}
// Track index method calls by patching all existing indexes
const originalMethods = new Map()
for (const [indexId, index] of collection.indexes) {
// Track lookup calls (new unified method)
const originalLookup = index.lookup.bind(index)
index.lookup = function (operation: any, value: any) {
// Only track non-range operations to avoid double counting
// Range operations (gt, gte, lt, lte) are handled by rangeQuery tracking
if (![`gt`, `gte`, `lt`, `lte`].includes(operation)) {
stats.rangeQueryCalls++
stats.indexesUsed.push(String(indexId))
stats.queriesExecuted.push({
type: `index`,
operation,
field: index.expression?.path?.join(`.`),
value,
})
}
return originalLookup(operation, value)
}
// Track rangeQuery calls (for compound range queries)
if (index.rangeQuery) {
const originalRangeQuery = index.rangeQuery.bind(index)
index.rangeQuery = function (options: any) {
stats.rangeQueryCalls++
stats.indexesUsed.push(String(indexId))
// Determine the actual operations from the options
const operations: Array<string> = []
if (options.from !== undefined) {
operations.push(options.fromInclusive ? `gte` : `gt`)
}
if (options.to !== undefined) {
operations.push(options.toInclusive ? `lte` : `lt`)
}
stats.queriesExecuted.push({
type: `index`,
operation: operations.join(` AND `),
field: index.expression?.path?.join(`.`),
value: options,
})
return originalRangeQuery(options)
}
}
originalMethods.set(indexId, {
lookup: originalLookup,
rangeQuery: index.rangeQuery ? index.rangeQuery.bind(index) : undefined,
})
}
// Track full scan calls (entries() iteration)
const originalEntries = collection.entries
collection.entries = function* () {
// Only count as full scan if we're in a filtering context
// Check the call stack to see if we're inside createFilterFunction
const stack = new Error().stack || ``
if (
stack.includes(`createFilterFunction`) ||
stack.includes(`currentStateAsChanges`)
) {
stats.fullScanCalls++
stats.queriesExecuted.push({
type: `fullScan`,
})
}
yield* originalEntries.call(this)
}
const restore = () => {
// Restore original index methods
for (const [indexId, index] of collection.indexes) {
const original = originalMethods.get(indexId)
if (original) {
index.lookup = original.lookup
if (original.rangeQuery) {
index.rangeQuery = original.rangeQuery
}
}
}
collection.entries = originalEntries
}
return { stats, restore }
}
// Helper to assert index usage
export function expectIndexUsage(
stats: IndexUsageStats,
expectations: {
shouldUseIndex: boolean
shouldUseFullScan?: boolean
indexCallCount?: number
fullScanCallCount?: number
}
) {
if (expectations.shouldUseIndex) {
expect(stats.rangeQueryCalls).toBeGreaterThan(0)
expect(stats.indexesUsed.length).toBeGreaterThan(0)
if (expectations.indexCallCount !== undefined) {
expect(stats.rangeQueryCalls).toBe(expectations.indexCallCount)
}
} else {
expect(stats.rangeQueryCalls).toBe(0)
expect(stats.indexesUsed.length).toBe(0)
}
if (expectations.shouldUseFullScan !== undefined) {
if (expectations.shouldUseFullScan) {
expect(stats.fullScanCalls).toBeGreaterThan(0)
if (expectations.fullScanCallCount !== undefined) {
expect(stats.fullScanCalls).toBe(expectations.fullScanCallCount)
}
} else {
expect(stats.fullScanCalls).toBe(0)
}
}
}
// Helper to run a test with index usage tracking (automatically handles setup/cleanup)
export function withIndexTracking(
collection: any,
testFn: (tracker: { stats: IndexUsageStats }) => void | Promise<void>
): void | Promise<void> {
const tracker = createIndexUsageTracker(collection)
try {
const result = testFn(tracker)
if (result instanceof Promise) {
return result.finally(() => tracker.restore())
}
tracker.restore()
} catch (error) {
tracker.restore()
throw error
}
}
type MockSyncCollectionConfig<T> = {
id: string
initialData: Array<T>
getKey: (item: T) => string | number
autoIndex?: `off` | `eager`
}
export function mockSyncCollectionOptions<
T extends object = Record<string, unknown>,
>(config: MockSyncCollectionConfig<T>) {
let begin: () => void
let write: Parameters<SyncConfig<T>[`sync`]>[0][`write`]
let commit: () => void
let syncPendingPromise: Promise<void> | undefined
let syncPendingResolve: (() => void) | undefined
let syncPendingReject: ((error: Error) => void) | undefined
const awaitSync = async () => {
if (syncPendingPromise) {
return syncPendingPromise
}
syncPendingPromise = new Promise((resolve, reject) => {
syncPendingResolve = resolve
syncPendingReject = reject
})
syncPendingPromise.then(() => {
syncPendingPromise = undefined
syncPendingResolve = undefined
syncPendingReject = undefined
})
return syncPendingPromise
}
const utils = {
begin: () => begin!(),
write: ((value) => write!(value)) as typeof write,
commit: () => commit!(),
resolveSync: () => {
syncPendingResolve!()
},
rejectSync: (error: Error) => {
syncPendingReject!(error)
},
}
const options: CollectionConfig<T> & { utils: typeof utils } = {
sync: {
sync: (params: Parameters<SyncConfig<T>[`sync`]>[0]) => {
begin = params.begin
write = params.write
commit = params.commit
const markReady = params.markReady
begin()
config.initialData.forEach((item) => {
write({
type: `insert`,
value: item,
})
})
commit()
markReady()
},
},
startSync: true,
onInsert: async (_params: MutationFnParams<T>) => {
// TODO
await awaitSync()
},
onUpdate: async (_params: MutationFnParams<T>) => {
// TODO
await awaitSync()
},
onDelete: async (_params: MutationFnParams<T>) => {
// TODO
await awaitSync()
},
utils,
...config,
autoIndex: config.autoIndex,
}
return options
}
type MockSyncCollectionConfigNoInitialState<T> = {
id: string
getKey: (item: T) => string | number
autoIndex?: `off` | `eager`
}
export function mockSyncCollectionOptionsNoInitialState<
T extends object = Record<string, unknown>,
>(config: MockSyncCollectionConfigNoInitialState<T>) {
let begin: () => void
let write: Parameters<SyncConfig<T>[`sync`]>[0][`write`]
let commit: () => void
let markReady: () => void
let truncate: () => void
let syncPendingPromise: Promise<void> | undefined
let syncPendingResolve: (() => void) | undefined
let syncPendingReject: ((error: Error) => void) | undefined
const awaitSync = async () => {
if (syncPendingPromise) {
return syncPendingPromise
}
syncPendingPromise = new Promise((resolve, reject) => {
syncPendingResolve = resolve
syncPendingReject = reject
})
syncPendingPromise.then(() => {
syncPendingPromise = undefined
syncPendingResolve = undefined
syncPendingReject = undefined
})
return syncPendingPromise
}
const utils = {
begin: () => begin!(),
write: ((value) => write!(value)) as typeof write,
commit: () => commit!(),
markReady: () => markReady!(),
truncate: () => truncate!(),
resolveSync: () => {
syncPendingResolve!()
},
rejectSync: (error: Error) => {
syncPendingReject!(error)
},
}
const options: CollectionConfig<T> & { utils: typeof utils } = {
sync: {
sync: (params: Parameters<SyncConfig<T>[`sync`]>[0]) => {
begin = params.begin
write = params.write
commit = params.commit
markReady = params.markReady
truncate = params.truncate
},
},
startSync: false,
onInsert: async (_params: MutationFnParams<T>) => {
// TODO
await awaitSync()
},
onUpdate: async (_params: MutationFnParams<T>) => {
// TODO
await awaitSync()
},
onDelete: async (_params: MutationFnParams<T>) => {
// TODO
await awaitSync()
},
utils,
...config,
autoIndex: config.autoIndex,
}
return options
}
// Utility to flush microtasks and promises
export const flushPromises = () =>
new Promise((resolve) => setTimeout(resolve, 0))
/**
* Utility to suppress expected unhandled rejections in tests.
*
* This function temporarily removes the vitest unhandled rejection handler and
* sets up a custom handler that catches rejections with the expected message.
* It's useful for testing scenarios where you expect a rejection to happen
* asynchronously (e.g., in microtasks) that would otherwise cause vitest to
* report an unhandled error.
*
* In tanstack db we rethrow errors in optimistic mutations inside a microtask, and so
* this bubbles up as an unhandled rejection. This utility can be used to suppress
* these rejections within a test.
*
* @param expectedMessage - The error message to expect and suppress
* @param testFn - The test function that will trigger the expected rejection
* @returns A promise that resolves when the test completes and the rejection is caught
*
* @example
* ```typescript
* await withExpectedRejection('expected error message', () => {
* // Your test code that triggers the rejection
* someAsyncOperation()
* return flushPromises()
* })
* ```
*/
export function withExpectedRejection<T>(
expectedMessage: string,
testFn: () => T | Promise<T>
): Promise<T> {
return new Promise((resolve, reject) => {
// Find and temporarily remove the vitest unhandled rejection handler
const originalUnhandledRejection = process
.listeners(`unhandledRejection`)
.find((listener) => listener.name === `vitestUnhandledRejectionHandler`)
let expectedRejectionCaught = false
const handleRejection = (reason: any) => {
if (reason?.message === expectedMessage) {
expectedRejectionCaught = true
return // Don't re-throw, this is expected
}
// Re-throw other rejections
reject(reason)
}
if (originalUnhandledRejection) {
process.removeListener(`unhandledRejection`, originalUnhandledRejection)
}
process.on(`unhandledRejection`, handleRejection)
// Execute the test function and handle the result
Promise.resolve(testFn())
.then(async (value) => {
// Wait for microtasks and then check if the rejection was caught
await flushPromises()
if (!expectedRejectionCaught) {
reject(
new Error(
`Expected rejection with message "${expectedMessage}" was not caught`
)
)
return
}
resolve(value)
})
.catch((error) => {
reject(error)
})
.finally(() => {
// Clean up the error handler
process.removeListener(`unhandledRejection`, handleRejection)
if (originalUnhandledRejection) {
process.addListener(`unhandledRejection`, originalUnhandledRejection)
}
})
})
}