|
| 1 | +import type { RouteRecordNormalized } from 'vue-router' |
| 2 | +import { mount } from '@vue/test-utils' |
| 3 | +import RoutePathItem from '../RoutePathItem.vue' |
| 4 | + |
| 5 | +describe('component: RoutePathItem', () => { |
| 6 | + it('parseExpressRoute can correctly split the route string', () => { |
| 7 | + const component = mount(RoutePathItem, { |
| 8 | + props: { |
| 9 | + route: { |
| 10 | + path: '/hey/', |
| 11 | + name: 'heya', |
| 12 | + } as RouteRecordNormalized, |
| 13 | + }, |
| 14 | + }) |
| 15 | + const parseExpressRoute = (component.vm as any).parseExpressRoute |
| 16 | + expect(parseExpressRoute('/foo/:id(\\d+)/bar')).toEqual(['/foo/', ':id(\\d+)', '/bar']) |
| 17 | + expect(parseExpressRoute('/foo/:id*')).toEqual(['/foo/', ':id*']) |
| 18 | + expect(parseExpressRoute('/foo/:id+')).toEqual(['/foo/', ':id+']) |
| 19 | + expect(parseExpressRoute('/foo/:id/bar')).toEqual(['/foo/', ':id', '/bar']) |
| 20 | + expect(parseExpressRoute('/foo/:id')).toEqual(['/foo/', ':id']) |
| 21 | + expect(parseExpressRoute('/:id(\\d+)+')).toEqual(['/', ':id(\\d+)+']) |
| 22 | + expect(parseExpressRoute('/:id(\\d+)*')).toEqual(['/', ':id(\\d+)*']) |
| 23 | + expect(parseExpressRoute('/:id(\\d+)*/:name+')).toEqual(['/', ':id(\\d+)*', '/', ':name+']) |
| 24 | + // Example from Vue Router documentation |
| 25 | + // https://router.vuejs.org/guide/essentials/dynamic-matching.html#Catch-all-404-Not-found-Route |
| 26 | + expect(parseExpressRoute('/foo-:bar(.*)')).toEqual(['/foo-', ':bar(.*)']) |
| 27 | + }) |
| 28 | +}) |
0 commit comments