1
1
import { describe , expect , it , vi } from 'vitest'
2
- import { createSearchParamsCache } from './cache'
2
+ import { compareSearchParams , createSearchParamsCache } from './cache'
3
3
import { parseAsString } from './parsers'
4
4
5
5
// provide a simple mock for React cache
@@ -22,7 +22,7 @@ describe('cache', () => {
22
22
string : "I'm a string"
23
23
}
24
24
25
- it ( 'allows parsing same object multiple times in a request' , ( ) => {
25
+ it ( 'allows parsing the same object multiple times in a request' , ( ) => {
26
26
const cache = createSearchParamsCache ( {
27
27
string : parseAsString
28
28
} )
@@ -37,6 +37,15 @@ describe('cache', () => {
37
37
expect ( cache . all ( ) ) . toBe ( all )
38
38
} )
39
39
40
+ it ( 'allows parsing the same content with different references' , ( ) => {
41
+ const cache = createSearchParamsCache ( {
42
+ string : parseAsString
43
+ } )
44
+ const copy = { ...input }
45
+ expect ( cache . parse ( input ) . string ) . toBe ( input . string )
46
+ expect ( cache . parse ( copy ) . string ) . toBe ( input . string )
47
+ } )
48
+
40
49
it ( 'disallows parsing different objects in a request' , ( ) => {
41
50
const cache = createSearchParamsCache ( {
42
51
string : parseAsString
@@ -51,4 +60,30 @@ describe('cache', () => {
51
60
expect ( cache . all ( ) ) . toBe ( all )
52
61
} )
53
62
} )
63
+
64
+ describe ( 'compareSearchParams' , ( ) => {
65
+ it ( 'works on empty search params' , ( ) => {
66
+ expect ( compareSearchParams ( { } , { } ) ) . toBe ( true )
67
+ } )
68
+ it ( 'rejects different lengths' , ( ) => {
69
+ expect ( compareSearchParams ( { a : 'a' } , { a : 'a' , b : 'b' } ) ) . toBe ( false )
70
+ } )
71
+ it ( 'rejects different values' , ( ) => {
72
+ expect ( compareSearchParams ( { x : 'a' } , { x : 'b' } ) ) . toBe ( false )
73
+ } )
74
+ it ( 'does not care about order' , ( ) => {
75
+ expect ( compareSearchParams ( { x : 'a' , y : 'b' } , { y : 'b' , x : 'a' } ) ) . toBe (
76
+ true
77
+ )
78
+ } )
79
+ it ( 'supports array values (referentially stable)' , ( ) => {
80
+ const array = [ 'a' , 'b' ]
81
+ expect ( compareSearchParams ( { x : array } , { x : array } ) ) . toBe ( true )
82
+ } )
83
+ it ( 'does not do deep comparison' , ( ) => {
84
+ expect ( compareSearchParams ( { x : [ 'a' , 'b' ] } , { x : [ 'a' , 'b' ] } ) ) . toBe (
85
+ false
86
+ )
87
+ } )
88
+ } )
54
89
} )
0 commit comments