|
| 1 | +import { createMemoryHistory, createRouter, RouterHistory } from '../src' |
| 2 | +import { tick } from './utils' |
| 3 | + |
| 4 | +const component = {} |
| 5 | + |
| 6 | +interface RouterHistory_Test extends RouterHistory { |
| 7 | + changeURL(url: string): void |
| 8 | +} |
| 9 | + |
| 10 | +describe('hash history edge cases', () => { |
| 11 | + it('correctly sets the url when it is manually changed but aborted with a redirect in guard', async () => { |
| 12 | + const history = createMemoryHistory() as RouterHistory_Test |
| 13 | + const router = createRouter({ |
| 14 | + history, |
| 15 | + routes: [ |
| 16 | + { path: '/', component }, |
| 17 | + { path: '/foo', component }, |
| 18 | + ], |
| 19 | + }) |
| 20 | + |
| 21 | + await router.push('/foo?step=1') |
| 22 | + await router.push('/foo?step=2') |
| 23 | + await router.push('/foo?step=3') |
| 24 | + router.back() |
| 25 | + await tick() // wait for router listener on history |
| 26 | + expect(router.currentRoute.value.fullPath).toBe('/foo?step=2') |
| 27 | + |
| 28 | + // force a redirect next time |
| 29 | + const removeListener = router.beforeEach(to => { |
| 30 | + if (to.path === '/') { |
| 31 | + removeListener() |
| 32 | + return '/foo?step=2' |
| 33 | + } |
| 34 | + return |
| 35 | + }) |
| 36 | + |
| 37 | + // const spy = jest.spyOn(history, 'go') |
| 38 | + |
| 39 | + history.changeURL('/') |
| 40 | + await tick() |
| 41 | + expect(router.currentRoute.value.fullPath).toBe('/foo?step=2') |
| 42 | + expect(history.location).toBe('/foo?step=2') |
| 43 | + // expect(spy).toHaveBeenCalledTimes(1) |
| 44 | + // expect(spy).toHaveBeenCalledWith(-1) |
| 45 | + }) |
| 46 | + |
| 47 | + it('correctly sets the url when it is manually changed but aborted with guard', async () => { |
| 48 | + const history = createMemoryHistory() as RouterHistory_Test |
| 49 | + const router = createRouter({ |
| 50 | + history, |
| 51 | + routes: [ |
| 52 | + { path: '/', component }, |
| 53 | + { path: '/foo', component }, |
| 54 | + ], |
| 55 | + }) |
| 56 | + |
| 57 | + await router.push('/foo?step=1') |
| 58 | + await router.push('/foo?step=2') |
| 59 | + await router.push('/foo?step=3') |
| 60 | + router.back() |
| 61 | + await tick() // wait for router listener on history |
| 62 | + expect(router.currentRoute.value.fullPath).toBe('/foo?step=2') |
| 63 | + |
| 64 | + // force a redirect next time |
| 65 | + const removeListener = router.beforeEach(to => { |
| 66 | + if (to.path === '/') { |
| 67 | + removeListener() |
| 68 | + return false |
| 69 | + } |
| 70 | + |
| 71 | + return |
| 72 | + }) |
| 73 | + |
| 74 | + // const spy = jest.spyOn(history, 'go') |
| 75 | + |
| 76 | + history.changeURL('/') |
| 77 | + await tick() |
| 78 | + expect(router.currentRoute.value.fullPath).toBe('/foo?step=2') |
| 79 | + expect(history.location).toBe('/foo?step=2') |
| 80 | + // expect(spy).toHaveBeenCalledTimes(1) |
| 81 | + // expect(spy).toHaveBeenCalledWith(-1) |
| 82 | + }) |
| 83 | +}) |
0 commit comments