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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
import * as assert from 'node:assert/strict';
import { after, before, describe, it } from 'node:test';
import { fileURLToPath } from 'node:url';
import * as cheerio from 'cheerio';
import { createContainer } from '../../../dist/core/dev/container.js';
import { createViteLoader } from '../../../dist/core/module-loader/vite.js';
import { createRouteManifest, matchAllRoutes } from '../../../dist/core/routing/index.js';
import { getSortedPreloadedMatches } from '../../../dist/prerender/routing.js';
import { DevPipeline } from '../../../dist/vite-plugin-astro-server/pipeline.js';
import { createDevelopmentManifest } from '../../../dist/vite-plugin-astro-server/plugin.js';
import testAdapter from '../../test-adapter.js';
import {
createBasicSettings,
createFixture,
createRequestAndResponse,
defaultLogger,
} from '../test-utils.js';
const fileSystem = {
'/src/pages/[serverDynamic].astro': `
---
export const prerender = false;
---
<p>Server dynamic route! slug:{Astro.params.serverDynamic}</p>
`,
'/src/pages/[xStaticDynamic].astro': `
---
export function getStaticPaths() {
return [
{
params: {
xStaticDynamic: "static-dynamic-route-here",
},
},
];
}
---
<p>Prerendered dynamic route!</p>
`,
'/src/pages/[aStaticDynamic].astro': `
---
export function getStaticPaths() {
return [
{
params: {
aStaticDynamic: "another-static-dynamic-route-here",
},
},
];
}
---
<p>Another prerendered dynamic route!</p>
`,
'/src/pages/[...serverRest].astro': `
---
export const prerender = false;
---
<p>Server rest route! slug:{Astro.params.serverRest}</p>
`,
'/src/pages/[...xStaticRest].astro': `
---
export function getStaticPaths() {
return [
{
params: {
xStaticRest: undefined,
},
},
];
}
---
<p>Prerendered rest route!</p>
`,
'/src/pages/[...aStaticRest].astro': `
---
export function getStaticPaths() {
return [
{
params: {
aStaticRest: "another/static-rest-route-here",
},
},
];
}
---
<p>Another prerendered rest route!</p>
`,
'/src/pages/nested/[...serverRest].astro': `
---
export const prerender = false;
---
<p>Nested server rest route! slug: {Astro.params.serverRest}</p>
`,
'/src/pages/nested/[...xStaticRest].astro': `
---
export function getStaticPaths() {
return [
{
params: {
xStaticRest: undefined,
},
},
];
}
---
<p>Nested prerendered rest route!</p>
`,
'/src/pages/nested/[...aStaticRest].astro': `
---
export function getStaticPaths() {
return [
{
params: {
aStaticRest: "another-nested-static-dynamic-rest-route-here",
},
},
];
}
---
<p>Another nested prerendered rest route!</p>
`,
};
describe('Route matching', () => {
let pipeline;
let manifestData;
let container;
let settings;
before(async () => {
const fixture = await createFixture(fileSystem);
settings = await createBasicSettings({
root: fixture.path,
trailingSlash: 'never',
output: 'static',
adapter: testAdapter(),
});
container = await createContainer({
settings,
logger: defaultLogger,
});
const loader = createViteLoader(container.viteServer);
const manifest = createDevelopmentManifest(container.settings);
pipeline = DevPipeline.create(undefined, { loader, logger: defaultLogger, manifest, settings });
manifestData = await createRouteManifest(
{
cwd: fixture.path,
settings,
},
defaultLogger,
);
});
after(async () => {
await container.close();
});
describe('Matched routes', () => {
it('should be sorted correctly', async () => {
const matches = matchAllRoutes('/try-matching-a-route', manifestData);
const preloadedMatches = await getSortedPreloadedMatches({ pipeline, matches, settings });
const sortedRouteNames = preloadedMatches.map((match) => match.route.route);
assert.deepEqual(sortedRouteNames, [
'/[astaticdynamic]',
'/[xstaticdynamic]',
'/[serverdynamic]',
'/[...astaticrest]',
'/[...xstaticrest]',
'/[...serverrest]',
]);
});
it('nested should be sorted correctly', async () => {
const matches = matchAllRoutes('/nested/try-matching-a-route', manifestData);
const preloadedMatches = await getSortedPreloadedMatches({ pipeline, matches, settings });
const sortedRouteNames = preloadedMatches.map((match) => match.route.route);
assert.deepEqual(sortedRouteNames, [
'/nested/[...astaticrest]',
'/nested/[...xstaticrest]',
'/nested/[...serverrest]',
'/[...astaticrest]',
'/[...xstaticrest]',
'/[...serverrest]',
]);
});
});
describe('Request', () => {
it('should correctly match a static dynamic route I', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '/static-dynamic-route-here',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Prerendered dynamic route!');
});
it('should correctly match a static dynamic route II', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '/another-static-dynamic-route-here',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Another prerendered dynamic route!');
});
it('should correctly match a server dynamic route', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '/a-random-slug-was-matched',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Server dynamic route! slug:a-random-slug-was-matched');
});
it('should correctly match a static rest route I', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Prerendered rest route!');
});
it('should correctly match a static rest route II', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '/another/static-rest-route-here',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Another prerendered rest route!');
});
it('should correctly match a nested static rest route index', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '/nested',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Nested prerendered rest route!');
});
it('should correctly match a nested static rest route', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '/nested/another-nested-static-dynamic-rest-route-here',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Another nested prerendered rest route!');
});
it('should correctly match a nested server rest route', async () => {
const { req, res, text } = createRequestAndResponse({
method: 'GET',
url: '/nested/a-random-slug-was-matched',
});
container.handle(req, res);
const html = await text();
const $ = cheerio.load(html);
assert.equal($('p').text(), 'Nested server rest route! slug: a-random-slug-was-matched');
});
});
});
|