|
1 |
| -import { describe, expect, it, vi } from 'vitest' |
| 1 | +import { afterEach, describe, expect, it, vi } from 'vitest' |
2 | 2 | import type { UpdateUrlFunction } from '../../adapters/lib/defs'
|
3 | 3 | import { defaultRateLimit } from './rate-limiting'
|
4 | 4 | import { ThrottledQueue, type UpdateQueueAdapterContext } from './throttle'
|
5 | 5 |
|
| 6 | +const mockAdapter = { |
| 7 | + updateUrl: vi.fn<UpdateUrlFunction>(), |
| 8 | + getSearchParamsSnapshot() { |
| 9 | + return new URLSearchParams() |
| 10 | + } |
| 11 | +} satisfies UpdateQueueAdapterContext |
| 12 | + |
| 13 | +afterEach(() => { |
| 14 | + mockAdapter.updateUrl.mockReset() |
| 15 | +}) |
| 16 | + |
6 | 17 | describe('throttle: ThrottleQueue value queueing', () => {
|
7 | 18 | it('should enqueue key & values', () => {
|
8 | 19 | const queue = new ThrottledQueue()
|
@@ -70,12 +81,6 @@ describe('throttle: ThrottleQueue option combination logic', () => {
|
70 | 81 | }
|
71 | 82 | const startTransitionA = vi.fn().mockImplementation(mockStartTransition)
|
72 | 83 | const startTransitionB = vi.fn().mockImplementation(mockStartTransition)
|
73 |
| - const mockAdapter: UpdateQueueAdapterContext = { |
74 |
| - updateUrl: vi.fn<UpdateUrlFunction>(), |
75 |
| - getSearchParamsSnapshot() { |
76 |
| - return new URLSearchParams() |
77 |
| - } |
78 |
| - } |
79 | 84 | const queue = new ThrottledQueue()
|
80 | 85 | queue.push({
|
81 | 86 | key: 'a',
|
@@ -113,3 +118,87 @@ describe('throttle: ThrottleQueue option combination logic', () => {
|
113 | 118 | expect(queue.timeMs).toBe(100)
|
114 | 119 | })
|
115 | 120 | })
|
| 121 | + |
| 122 | +describe('throttle: flush', () => { |
| 123 | + it('returns a Promise of updated URL search params', async () => { |
| 124 | + const throttle = new ThrottledQueue() |
| 125 | + throttle.push({ key: 'a', query: 'a', options: {} }) |
| 126 | + const promise = throttle.flush(mockAdapter) |
| 127 | + await expect(promise).resolves.toEqual(new URLSearchParams('?a=a')) |
| 128 | + expect(mockAdapter.updateUrl).toHaveBeenCalledExactlyOnceWith( |
| 129 | + new URLSearchParams('?a=a'), |
| 130 | + { |
| 131 | + history: 'replace', |
| 132 | + scroll: false, |
| 133 | + shallow: true |
| 134 | + } |
| 135 | + ) |
| 136 | + }) |
| 137 | + it('combines updates in order of push', async () => { |
| 138 | + const throttle = new ThrottledQueue() |
| 139 | + throttle.push({ key: 'b', query: 'b', options: {} }) |
| 140 | + throttle.push({ key: 'a', query: 'a', options: {} }) |
| 141 | + const promise = throttle.flush(mockAdapter) |
| 142 | + await expect(promise).resolves.toEqual(new URLSearchParams('?b=b&a=a')) |
| 143 | + expect(mockAdapter.updateUrl).toHaveBeenCalledExactlyOnceWith( |
| 144 | + new URLSearchParams('?b=b&a=a'), |
| 145 | + { |
| 146 | + history: 'replace', |
| 147 | + scroll: false, |
| 148 | + shallow: true |
| 149 | + } |
| 150 | + ) |
| 151 | + }) |
| 152 | + it('returns the same Promise for multiple flushes in the same tick', () => { |
| 153 | + vi.useFakeTimers() |
| 154 | + const throttle = new ThrottledQueue() |
| 155 | + throttle.push({ key: 'b', query: 'b', options: {} }) |
| 156 | + const p1 = throttle.flush(mockAdapter) |
| 157 | + throttle.push({ key: 'a', query: 'a', options: {} }) |
| 158 | + const p2 = throttle.flush(mockAdapter) |
| 159 | + expect(p1).toBe(p2) |
| 160 | + vi.runAllTimers() |
| 161 | + expect(mockAdapter.updateUrl).toHaveBeenCalledExactlyOnceWith( |
| 162 | + new URLSearchParams('?b=b&a=a'), |
| 163 | + { |
| 164 | + history: 'replace', |
| 165 | + scroll: false, |
| 166 | + shallow: true |
| 167 | + } |
| 168 | + ) |
| 169 | + }) |
| 170 | + it('returns the same Promise if the initial flush has no updates', () => { |
| 171 | + vi.useFakeTimers() |
| 172 | + const throttle = new ThrottledQueue() |
| 173 | + const p1 = throttle.flush(mockAdapter) |
| 174 | + throttle.push({ key: 'a', query: 'a', options: {} }) |
| 175 | + const p2 = throttle.flush(mockAdapter) |
| 176 | + expect(p1).toBe(p2) |
| 177 | + vi.runAllTimers() |
| 178 | + expect(mockAdapter.updateUrl).toHaveBeenCalledExactlyOnceWith( |
| 179 | + new URLSearchParams('?a=a'), |
| 180 | + { |
| 181 | + history: 'replace', |
| 182 | + scroll: false, |
| 183 | + shallow: true |
| 184 | + } |
| 185 | + ) |
| 186 | + }) |
| 187 | + it('returns the same Promise if the second flush has no updates', () => { |
| 188 | + vi.useFakeTimers() |
| 189 | + const throttle = new ThrottledQueue() |
| 190 | + throttle.push({ key: 'a', query: 'a', options: {} }) |
| 191 | + const p1 = throttle.flush(mockAdapter) |
| 192 | + const p2 = throttle.flush(mockAdapter) |
| 193 | + expect(p1).toBe(p2) |
| 194 | + vi.runAllTimers() |
| 195 | + expect(mockAdapter.updateUrl).toHaveBeenCalledExactlyOnceWith( |
| 196 | + new URLSearchParams('?a=a'), |
| 197 | + { |
| 198 | + history: 'replace', |
| 199 | + scroll: false, |
| 200 | + shallow: true |
| 201 | + } |
| 202 | + ) |
| 203 | + }) |
| 204 | +}) |
0 commit comments