File size: 6,849 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
/* eslint-env jest */
import { getSortedRoutes } from 'next/dist/shared/lib/router/utils/sorted-routes'
describe('getSortedRoutes', () => {
it('does not add extra routes', () => {
expect(getSortedRoutes(['/posts'])).toEqual(['/posts'])
expect(getSortedRoutes(['/posts/[id]'])).toEqual(['/posts/[id]'])
expect(getSortedRoutes(['/posts/[id]/foo'])).toEqual(['/posts/[id]/foo'])
expect(getSortedRoutes(['/posts/[id]/[foo]/bar'])).toEqual([
'/posts/[id]/[foo]/bar',
])
expect(getSortedRoutes(['/posts/[id]/baz/[foo]/bar'])).toEqual([
'/posts/[id]/baz/[foo]/bar',
])
})
it('correctly sorts required slugs', () => {
expect(
getSortedRoutes([
'/posts',
'/[root-slug]',
'/',
'/posts/[id]',
'/blog/[id]/comments/[cid]',
'/blog/abc/[id]',
'/[...rest]',
'/blog/abc/post',
'/blog/abc',
'/p1/[[...incl]]',
'/p/[...rest]',
'/p2/[...rest]',
'/p2/[id]',
'/p2/[id]/abc',
'/p3/[[...rest]]',
'/p3/[id]',
'/p3/[id]/abc',
'/blog/[id]',
'/foo/[d]/bar/baz/[f]',
'/apples/[ab]/[cd]/ef',
])
).toMatchInlineSnapshot(`
[
"/",
"/apples/[ab]/[cd]/ef",
"/blog/abc",
"/blog/abc/post",
"/blog/abc/[id]",
"/blog/[id]",
"/blog/[id]/comments/[cid]",
"/foo/[d]/bar/baz/[f]",
"/p/[...rest]",
"/p1/[[...incl]]",
"/p2/[id]",
"/p2/[id]/abc",
"/p2/[...rest]",
"/p3/[id]",
"/p3/[id]/abc",
"/p3/[[...rest]]",
"/posts",
"/posts/[id]",
"/[root-slug]",
"/[...rest]",
]
`)
})
it('catches mismatched param names', () => {
expect(() =>
getSortedRoutes([
'/',
'/blog',
'/blog/[id]',
'/blog/[id]/comments/[cid]',
'/blog/[cid]',
])
).toThrow(/different slug names/)
})
it('catches reused param names', () => {
expect(() =>
getSortedRoutes(['/', '/blog', '/blog/[id]/comments/[id]', '/blog/[id]'])
).toThrow(/the same slug name/)
})
it('catches reused param names with catch-all', () => {
expect(() => getSortedRoutes(['/blog/[id]', '/blog/[id]/[...id]'])).toThrow(
/the same slug name/
)
})
it('catches middle catch-all with another catch-all', () => {
expect(() =>
getSortedRoutes(['/blog/[...id]/[...id2]'])
).toThrowErrorMatchingInlineSnapshot(
`"Catch-all must be the last part of the URL."`
)
})
it('catches middle catch-all with fixed route', () => {
expect(() =>
getSortedRoutes(['/blog/[...id]/abc'])
).toThrowErrorMatchingInlineSnapshot(
`"Catch-all must be the last part of the URL."`
)
})
it('catches extra dots in catch-all', () => {
expect(() =>
getSortedRoutes(['/blog/[....id]/abc'])
).toThrowErrorMatchingInlineSnapshot(
`"Segment names may not start with erroneous periods ('.id')."`
)
})
it('catches missing dots in catch-all', () => {
expect(() =>
getSortedRoutes(['/blog/[..id]/abc'])
).toThrowErrorMatchingInlineSnapshot(
`"Segment names may not start with erroneous periods ('..id')."`
)
})
it('catches extra brackets for optional', () => {
expect(() =>
getSortedRoutes(['/blog/[[...id]'])
).toThrowErrorMatchingInlineSnapshot(
`"Segment names may not start or end with extra brackets ('[...id')."`
)
expect(() =>
getSortedRoutes(['/blog/[[[...id]]'])
).toThrowErrorMatchingInlineSnapshot(
`"Segment names may not start or end with extra brackets ('[...id')."`
)
expect(() =>
getSortedRoutes(['/blog/[...id]]'])
).toThrowErrorMatchingInlineSnapshot(
`"Segment names may not start or end with extra brackets ('id]')."`
)
expect(() =>
getSortedRoutes(['/blog/[[...id]]]'])
).toThrowErrorMatchingInlineSnapshot(
`"Segment names may not start or end with extra brackets ('id]')."`
)
expect(() =>
getSortedRoutes(['/blog/[[[...id]]]'])
).toThrowErrorMatchingInlineSnapshot(
`"Segment names may not start or end with extra brackets ('[...id]')."`
)
})
it('disallows optional params', () => {
expect(() =>
getSortedRoutes(['/[[blog]]'])
).toThrowErrorMatchingInlineSnapshot(
`"Optional route parameters are not yet supported ("[[blog]]")."`
)
expect(() =>
getSortedRoutes(['/abc/[[blog]]'])
).toThrowErrorMatchingInlineSnapshot(
`"Optional route parameters are not yet supported ("[[blog]]")."`
)
expect(() =>
getSortedRoutes(['/abc/[[blog]]/def'])
).toThrowErrorMatchingInlineSnapshot(
`"Optional route parameters are not yet supported ("[[blog]]")."`
)
})
it('disallows mixing required catch all and optional catch all', () => {
expect(() =>
getSortedRoutes(['/[...one]', '/[[...one]]'])
).toThrowErrorMatchingInlineSnapshot(
`"You cannot use both an required and optional catch-all route at the same level ("[...one]" and "[[...one]]" )."`
)
expect(() =>
getSortedRoutes(['/[[...one]]', '/[...one]'])
).toThrowErrorMatchingInlineSnapshot(
`"You cannot use both an optional and required catch-all route at the same level ("[[...one]]" and "[...one]")."`
)
})
it('disallows apex and optional catch all', () => {
expect(() =>
getSortedRoutes(['/', '/[[...all]]'])
).toThrowErrorMatchingInlineSnapshot(
`"You cannot define a route with the same specificity as a optional catch-all route ("/" and "/[[...all]]")."`
)
expect(() =>
getSortedRoutes(['/[[...all]]', '/'])
).toThrowErrorMatchingInlineSnapshot(
`"You cannot define a route with the same specificity as a optional catch-all route ("/" and "/[[...all]]")."`
)
expect(() =>
getSortedRoutes(['/sub', '/sub/[[...all]]'])
).toThrowErrorMatchingInlineSnapshot(
`"You cannot define a route with the same specificity as a optional catch-all route ("/sub" and "/sub[[...all]]")."`
)
expect(() =>
getSortedRoutes(['/sub/[[...all]]', '/sub'])
).toThrowErrorMatchingInlineSnapshot(
`"You cannot define a route with the same specificity as a optional catch-all route ("/sub" and "/sub[[...all]]")."`
)
})
it('catches param names differing only by non-word characters', () => {
expect(() =>
getSortedRoutes([
'/blog/[helloworld]',
'/blog/[helloworld]/[hello-world]',
])
).toThrow(/differ only by non-word/)
})
it('catches param names start with three-dot character not actual three dots', () => {
expect(() => getSortedRoutes(['[…three-dots]'])).toThrow(
/Detected a three-dot character/
)
})
})
|