@@ -19,6 +19,10 @@ const routes: RouteRecordRaw[] = [
19
19
{ path : 'home' , name : 'nested-home' , component : Home } ,
20
20
] ,
21
21
} ,
22
+ {
23
+ path : '/redirect' ,
24
+ redirect : { path : '/other' , state : { fromRecord : true } } ,
25
+ } ,
22
26
]
23
27
24
28
describe ( 'router.beforeEach' , ( ) => {
@@ -106,6 +110,50 @@ describe('router.beforeEach', () => {
106
110
expect ( router . currentRoute . value . fullPath ) . toBe ( '/other' )
107
111
} )
108
112
113
+ it ( 'can add state when redirecting' , async ( ) => {
114
+ const router = createRouter ( { routes } )
115
+ await router . push ( '/foo' )
116
+ router . beforeEach ( ( to , from ) => {
117
+ // only allow going to /other
118
+ if ( to . fullPath !== '/other' ) {
119
+ return {
120
+ path : '/other' ,
121
+ state : { added : 'state' } ,
122
+ }
123
+ }
124
+ return
125
+ } )
126
+
127
+ const spy = jest . spyOn ( history , 'pushState' )
128
+ await router . push ( { path : '/' , state : { a : 'a' } } )
129
+ expect ( spy ) . toHaveBeenCalledTimes ( 1 )
130
+ // called before redirect
131
+ expect ( spy ) . toHaveBeenNthCalledWith (
132
+ 1 ,
133
+ expect . objectContaining ( { added : 'state' , a : 'a' } ) ,
134
+ '' ,
135
+ expect . stringMatching ( / \/ o t h e r $ / )
136
+ )
137
+ spy . mockClear ( )
138
+ } )
139
+
140
+ it ( 'can add state to a redirect route' , async ( ) => {
141
+ const router = createRouter ( { routes } )
142
+ await router . push ( '/foo' )
143
+
144
+ const spy = jest . spyOn ( history , 'pushState' )
145
+ await router . push ( { path : '/redirect' , state : { a : 'a' } } )
146
+ expect ( spy ) . toHaveBeenCalledTimes ( 1 )
147
+ // called before redirect
148
+ expect ( spy ) . toHaveBeenNthCalledWith (
149
+ 1 ,
150
+ expect . objectContaining ( { fromRecord : true , a : 'a' } ) ,
151
+ '' ,
152
+ expect . stringMatching ( / \/ o t h e r $ / )
153
+ )
154
+ spy . mockClear ( )
155
+ } )
156
+
109
157
async function assertRedirect ( redirectFn : ( i : string ) => RouteLocationRaw ) {
110
158
const spy = jest . fn ( )
111
159
const router = createRouter ( { routes } )
0 commit comments