forked from astoilkov/use-local-storage-state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.ts
487 lines (393 loc) · 16.3 KB
/
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
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
import { createElement, useMemo } from 'react'
import { renderToString } from 'react-dom/server'
import { renderHook, act } from '@testing-library/react-hooks'
import useLocalStorageState, { createLocalStorageStateHook } from '.'
beforeEach(() => {
localStorage.clear()
})
describe('useLocalStorageState()', () => {
it('initial state is written into the state', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
const [todos] = result.current
expect(todos).toEqual(['first', 'second'])
})
it(`initial state isn't written into localStorage`, () => {
renderHook(() => useLocalStorageState('todos', ['first', 'second']))
expect(localStorage.getItem('todos')).toEqual(JSON.stringify(['first', 'second']))
})
it('updates state', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
act(() => {
const setTodos = result.current[1]
setTodos(['third', 'forth'])
})
const [todos] = result.current
expect(todos).toEqual(['third', 'forth'])
expect(localStorage.getItem('todos')).toEqual(JSON.stringify(['third', 'forth']))
})
it('updates state with callback function', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
act(() => {
const setTodos = result.current[1]
setTodos((value) => [...value, 'third', 'forth'])
})
const [todos] = result.current
expect(todos).toEqual(['first', 'second', 'third', 'forth'])
expect(localStorage.getItem('todos')).toEqual(
JSON.stringify(['first', 'second', 'third', 'forth']),
)
})
it('accepts a callback as a default value', () => {
const { result } = renderHook(() =>
useLocalStorageState('todos', () => ['first', 'second']),
)
const [todos] = result.current
expect(todos).toEqual(['first', 'second'])
})
it('does not fail when having an invalid data in localStorage', () => {
localStorage.setItem('todos', 'some random string')
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
const [todos] = result.current
expect(todos).toEqual(['first', 'second'])
})
it('updating writes into localStorage', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
act(() => {
const setTodos = result.current[1]
setTodos(['third', 'forth'])
})
expect(localStorage.getItem('todos')).toEqual(JSON.stringify(['third', 'forth']))
})
it('storage event updates state', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
// #WET 2020-03-19T8:55:25+02:00
act(() => {
localStorage.setItem('todos', JSON.stringify(['third', 'forth']))
window.dispatchEvent(
new StorageEvent('storage', {
storageArea: localStorage,
key: 'todos',
oldValue: JSON.stringify(['first', 'second']),
newValue: JSON.stringify(['third', 'forth']),
}),
)
})
const [todosA] = result.current
expect(todosA).toEqual(['third', 'forth'])
})
it('storage event updates state to default value', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
act(() => {
const setTodos = result.current[1]
setTodos(['third', 'forth'])
localStorage.removeItem('todos')
window.dispatchEvent(
new StorageEvent('storage', {
storageArea: localStorage,
key: 'todos',
oldValue: JSON.stringify(['first', 'second']),
newValue: null,
}),
)
})
const [todosB] = result.current
expect(todosB).toEqual(['first', 'second'])
})
it(`unrelated storage update doesn't do anything`, () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
act(() => {
// trying with sessionStorage
sessionStorage.setItem('todos', JSON.stringify(['third', 'forth']))
window.dispatchEvent(
new StorageEvent('storage', {
storageArea: sessionStorage,
key: 'todos',
oldValue: JSON.stringify(['first', 'second']),
newValue: JSON.stringify(['third', 'forth']),
}),
)
// trying with a non relevant key
localStorage.setItem('not-todos', JSON.stringify(['third', 'forth']))
window.dispatchEvent(
new StorageEvent('storage', {
storageArea: localStorage,
key: 'not-todos',
oldValue: JSON.stringify(['first', 'second']),
newValue: JSON.stringify(['third', 'forth']),
}),
)
})
const [todosA] = result.current
expect(todosA).toEqual(['first', 'second'])
})
it('initially gets value from local storage if there is a value', () => {
localStorage.setItem('todos', JSON.stringify(['third', 'forth']))
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
const [todos] = result.current
expect(todos).toEqual(['third', 'forth'])
})
it('throws an error on two instances with the same key', () => {
const consoleError = console.error
console.error = () => {}
expect(() => {
renderHook(() => {
useLocalStorageState('todos', ['first', 'second'])
useLocalStorageState('todos', ['second', 'third'])
})
}).toThrow()
console.error = consoleError
})
it('does not throw an error on two instances with different keys', () => {
expect(() => {
renderHook(() => {
useLocalStorageState('todosA', ['first', 'second'])
useLocalStorageState('todosB', ['second', 'third'])
})
}).not.toThrow()
})
it('handles errors thrown by localStorage', () => {
const setItem = Storage.prototype.setItem
Storage.prototype.setItem = () => {
throw new Error()
}
const { result } = renderHook(() => useLocalStorageState('set-item-will-throw', ''))
act(() => {
const setValue = result.current[1]
setValue('will-throw')
})
expect(result.current[0]).toBe('will-throw')
Storage.prototype.setItem = setItem
})
it('can retrieve data from in memory storage', () => {
const setItem = Storage.prototype.setItem
Storage.prototype.setItem = () => {
throw new Error()
}
const useTodos = createLocalStorageStateHook('todos', ['first'])
const { result: resultA } = renderHook(() => useTodos())
act(() => {
const setValue = resultA.current[1]
setValue(['first', 'second'])
})
const { result: resultB } = renderHook(() => useTodos())
const [value] = resultB.current
expect(value).toEqual(['first', 'second'])
Storage.prototype.setItem = setItem
})
it('isPersistent returns true by default', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
const [, , { isPersistent }] = result.current
expect(isPersistent).toBe(true)
})
it('isPersistent returns false when localStorage.setItem() throws an error', () => {
const setItem = Storage.prototype.setItem
Storage.prototype.setItem = () => {
throw new Error()
}
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
const [, , { isPersistent }] = result.current
expect(isPersistent).toBe(false)
Storage.prototype.setItem = setItem
})
it('isPersistent becomes false when localStorage.setItem() throws an error on consecutive updates', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
const setItem = Storage.prototype.setItem
Storage.prototype.setItem = () => {
throw new Error()
}
act(() => {
const setTodos = result.current[1]
setTodos(['second', 'third'])
})
const [todos, , { isPersistent }] = result.current
expect(todos).toEqual(['second', 'third'])
expect(isPersistent).toBe(false)
Storage.prototype.setItem = setItem
})
it('isPersistent returns true on the server', () => {
const windowSpy = jest.spyOn(global, 'window' as any, 'get')
windowSpy.mockImplementation(() => {
return undefined
})
function Component() {
const [, , { isPersistent }] = useLocalStorageState('todos', ['first', 'second'])
expect(isPersistent).toBe(true)
return null
}
renderToString(createElement(Component))
windowSpy.mockRestore()
})
it('isPersistent returns true after "storage" event', () => {
const { result } = renderHook(() => useLocalStorageState('todos', ['first', 'second']))
// #WET 2020-03-19T8:55:25+02:00
act(() => {
localStorage.setItem('todos', JSON.stringify(['third', 'forth']))
window.dispatchEvent(
new StorageEvent('storage', {
storageArea: localStorage,
key: 'todos',
oldValue: JSON.stringify(['first', 'second']),
newValue: JSON.stringify(['third', 'forth']),
}),
)
})
const [, , { isPersistent }] = result.current
expect(isPersistent).toBe(true)
})
it('can set value to `undefined`', () => {
const { result: resultA, unmount } = renderHook(() =>
useLocalStorageState<string[] | undefined>('todos', ['first', 'second']),
)
act(() => {
const [, setValue] = resultA.current
setValue(undefined)
})
unmount()
const { result: resultB } = renderHook(() =>
useLocalStorageState<string[] | undefined>('todos', ['first', 'second']),
)
const [value] = resultB.current
expect(value).toBe(undefined)
})
it('can set value to `null`', () => {
const { result: resultA, unmount } = renderHook(() =>
useLocalStorageState<string[] | null>('todos', ['first', 'second']),
)
act(() => {
const [, setValue] = resultA.current
setValue(null)
})
unmount()
const { result: resultB } = renderHook(() =>
useLocalStorageState<string[] | null>('todos', ['first', 'second']),
)
const [value] = resultB.current
expect(value).toBe(null)
})
it('can reset value to default', () => {
const { result: resultA, unmount: unmountA } = renderHook(() =>
useLocalStorageState<string[]>('todos', ['first', 'second']),
)
act(() => {
const [, setValue] = resultA.current
setValue(['third', 'forth'])
})
unmountA()
const { result: resultB, unmount: unmountB } = renderHook(() =>
useLocalStorageState<string[]>('todos', ['first', 'second']),
)
act(() => {
const [, , { removeItem }] = resultB.current
removeItem()
})
unmountB()
const { result: resultC } = renderHook(() =>
useLocalStorageState<string[]>('todos', ['first', 'second']),
)
const [value] = resultC.current
expect(value).toEqual(['first', 'second'])
})
it('can reset value to default (default with callback function)', () => {
const { result: resultA, unmount: unmountA } = renderHook(() =>
useLocalStorageState<string[]>('todos', () => ['first', 'second']),
)
act(() => {
const [, setValue] = resultA.current
setValue(['third', 'forth'])
})
unmountA()
const { result: resultB, unmount: unmountB } = renderHook(() =>
useLocalStorageState<string[]>('todos', () => ['first', 'second']),
)
act(() => {
const [, , { removeItem }] = resultB.current
removeItem()
})
unmountB()
const { result: resultC } = renderHook(() =>
useLocalStorageState<string[]>('todos', ['first', 'second']),
)
const [value] = resultC.current
expect(value).toEqual(['first', 'second'])
})
it('returns the same update function when the value is saved', () => {
const functionMock = jest.fn()
const { rerender } = renderHook(() => {
const [, setTodos] = useLocalStorageState('todos', ['first', 'second'])
useMemo(functionMock, [setTodos])
})
rerender()
expect(functionMock.mock.calls.length).toEqual(1)
})
it('changing the "key" property updates the value from local storage', () => {
localStorage.setItem('valueA', JSON.stringify('A'))
localStorage.setItem('valueB', JSON.stringify('B'))
const { result, rerender } = renderHook(
(props) => useLocalStorageState(props.key, undefined),
{
initialProps: {
key: 'valueA',
},
},
)
rerender({ key: 'valueB' })
const [value] = result.current
expect(value).toEqual('B')
})
it(`when defaultValue isn't provided — don't write to localStorage on initial render`, () => {
renderHook(() => useLocalStorageState('todos'))
expect(localStorage.getItem('todos')).toEqual(null)
})
})
describe('createLocalStorageStateHook()', () => {
it('storage event updates state', () => {
const useTodos = createLocalStorageStateHook('todos', ['first', 'second'])
const { result: resultA } = renderHook(() => useTodos())
const { result: resultB } = renderHook(() => useTodos())
// #WET 2020-03-19T8:55:25+02:00
act(() => {
localStorage.setItem('todos', JSON.stringify(['third', 'forth']))
window.dispatchEvent(
new StorageEvent('storage', {
storageArea: localStorage,
key: 'todos',
oldValue: JSON.stringify(['first', 'second']),
newValue: JSON.stringify(['third', 'forth']),
}),
)
})
const [todosA] = resultA.current
expect(todosA).toEqual(['third', 'forth'])
const [todosB] = resultB.current
expect(todosB).toEqual(['third', 'forth'])
})
it('calling update from one hook updates the other', () => {
const useTodos = createLocalStorageStateHook('todos', ['first', 'second'])
const { result: resultA } = renderHook(() => useTodos())
const { result: resultB } = renderHook(() => useTodos())
act(() => {
const setTodos = resultA.current[1]
setTodos(['third', 'forth'])
})
const [todos] = resultB.current
expect(todos).toEqual(['third', 'forth'])
})
it('can reset value to default', () => {
const useTodos = createLocalStorageStateHook('todos', ['first', 'second'])
const { result: resultA } = renderHook(() => useTodos())
const { result: resultB } = renderHook(() => useTodos())
act(() => {
const setTodosA = resultA.current[1]
const removeTodosB = resultB.current[2].removeItem
setTodosA(['third', 'forth'])
removeTodosB()
})
const [todos] = resultB.current
expect(todos).toEqual(['first', 'second'])
})
it("when defaultValue isn't provided — don't write to localStorage on initial render", () => {
const useTodos = createLocalStorageStateHook('todos')
renderHook(() => useTodos())
expect(localStorage.getItem('todos')).toEqual(null)
})
})