@@ -31,6 +31,7 @@ const routes: RouteRecordRaw[] = [
31
31
{ path : '/to-foo' , redirect : '/foo' } ,
32
32
{ path : '/to-foo-named' , redirect : { name : 'Foo' } } ,
33
33
{ path : '/to-foo2' , redirect : '/to-foo' } ,
34
+ { path : '/to-foo-query' , redirect : '/foo?a=2#b' } ,
34
35
{ path : '/to-p/:p' , redirect : { name : 'Param' } } ,
35
36
{ path : '/p/:p' , name : 'Param' , component : components . Bar } ,
36
37
{ path : '/repeat/:r+' , name : 'repeat' , component : components . Bar } ,
@@ -115,6 +116,18 @@ describe('Router', () => {
115
116
expect ( history . replace ) . toHaveBeenCalledWith ( '/foo' , expect . anything ( ) )
116
117
} )
117
118
119
+ it ( 'parses query and hash with router.replace' , async ( ) => {
120
+ const history = createMemoryHistory ( )
121
+ const { router } = await newRouter ( { history } )
122
+ jest . spyOn ( history , 'replace' )
123
+ await router . replace ( '/foo?q=2#a' )
124
+ expect ( history . replace ) . toHaveBeenCalledTimes ( 1 )
125
+ expect ( history . replace ) . toHaveBeenCalledWith (
126
+ '/foo?q=2#a' ,
127
+ expect . anything ( )
128
+ )
129
+ } )
130
+
118
131
it ( 'replaces if a guard redirects' , async ( ) => {
119
132
const history = createMemoryHistory ( )
120
133
const { router } = await newRouter ( { history } )
@@ -537,6 +550,22 @@ describe('Router', () => {
537
550
} )
538
551
} )
539
552
553
+ it ( 'handles query and hash passed in redirect string' , async ( ) => {
554
+ const history = createMemoryHistory ( )
555
+ const router = createRouter ( { history, routes } )
556
+ await expect ( router . push ( '/to-foo-query' ) ) . resolves . toEqual ( undefined )
557
+ expect ( router . currentRoute . value ) . toMatchObject ( {
558
+ name : 'Foo' ,
559
+ path : '/foo' ,
560
+ params : { } ,
561
+ query : { a : '2' } ,
562
+ hash : '#b' ,
563
+ redirectedFrom : expect . objectContaining ( {
564
+ fullPath : '/to-foo-query' ,
565
+ } ) ,
566
+ } )
567
+ } )
568
+
540
569
it ( 'keeps query and hash when redirect is a string' , async ( ) => {
541
570
const history = createMemoryHistory ( )
542
571
const router = createRouter ( { history, routes } )
0 commit comments