1
1
import { act , renderHook } from "@testing-library/react" ;
2
- import { useCookie } from "../hooks/useCookie" ;
2
+ import { revalidateCookies , useCookie } from "../hooks/useCookie" ;
3
3
4
4
function setValue (
5
5
value : string | ( ( prevValue ?: string ) => string | undefined ) | undefined ,
@@ -14,8 +14,15 @@ function getValue(hook: { current: ReturnType<typeof useCookie> }) {
14
14
return hook . current [ 0 ] ;
15
15
}
16
16
17
+ afterEach ( ( ) => {
18
+ // Clear all cookies after each test
19
+ document . cookie . split ( ";" ) . forEach ( ( c ) => {
20
+ document . cookie = `${ c . trim ( ) . split ( "=" ) [ 0 ] } =;expires=Thu, 01 Jan 1970 00:00:00 UTC;` ;
21
+ } ) ;
22
+ } ) ;
23
+
17
24
test ( "should manage cookies" , ( ) => {
18
- const { result : hook } = renderHook ( ( ) => useCookie ( "test" ) ) ;
25
+ const { result : hook } = renderHook ( ( ) => useCookie ( "manage- test" ) ) ;
19
26
20
27
setValue ( "custom value" , hook ) ;
21
28
@@ -30,7 +37,7 @@ test("should manage cookies", () => {
30
37
31
38
test ( "should manage cookies with default value" , ( ) => {
32
39
const { result : hook } = renderHook ( ( ) =>
33
- useCookie ( "test " , { defaultValue : "default value" } ) ,
40
+ useCookie ( "default-value " , { defaultValue : "default value" } ) ,
34
41
) ;
35
42
36
43
expect ( getValue ( hook ) ) . toBe ( "default value" ) ;
@@ -43,11 +50,24 @@ test("should manage cookies with default value", () => {
43
50
} ) ;
44
51
45
52
test ( "should sync values across hooks" , ( ) => {
46
- const { result : hook } = renderHook ( ( ) => useCookie ( "test " ) ) ;
47
- const { result : hook2 } = renderHook ( ( ) => useCookie ( "test " ) ) ;
53
+ const { result : hook } = renderHook ( ( ) => useCookie ( "sync " ) ) ;
54
+ const { result : hook2 } = renderHook ( ( ) => useCookie ( "sync " ) ) ;
48
55
49
56
setValue ( "new value" , hook ) ;
50
57
51
58
expect ( getValue ( hook ) ) . toBe ( "new value" ) ;
52
59
expect ( getValue ( hook2 ) ) . toBe ( "new value" ) ;
53
60
} ) ;
61
+
62
+ test ( "should be able to revalidate cookies externally" , ( ) => {
63
+ const { result : hook } = renderHook ( ( ) => useCookie ( "external" ) ) ;
64
+ document . cookie = "external=new value" ;
65
+ expect ( hook . current [ 0 ] ) . toBe ( undefined ) ;
66
+
67
+ act ( ( ) => {
68
+ // Revalidate the cookies, trigger the external sync
69
+ revalidateCookies ( ) ;
70
+ } ) ;
71
+
72
+ expect ( hook . current [ 0 ] ) . toBe ( "new value" ) ;
73
+ } ) ;
0 commit comments