2022-04-06 20:21:46 +00:00
|
|
|
import { expect } from 'chai';
|
2022-04-19 15:22:15 +00:00
|
|
|
import netlifyAdapter from '../../dist/index.js';
|
|
|
|
import { loadFixture, testIntegration } from './test-utils.js';
|
2022-04-06 20:21:46 +00:00
|
|
|
|
|
|
|
describe('Dynamic pages', () => {
|
2022-04-19 15:22:15 +00:00
|
|
|
/** @type {import('./test-utils').Fixture} */
|
2022-04-06 20:21:46 +00:00
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: new URL('./fixtures/dynamic-route/', import.meta.url).toString(),
|
2022-07-25 04:18:02 +00:00
|
|
|
output: 'server',
|
2022-04-06 20:21:46 +00:00
|
|
|
adapter: netlifyAdapter({
|
2022-04-06 20:22:36 +00:00
|
|
|
dist: new URL('./fixtures/dynamic-route/dist/', import.meta.url),
|
2022-04-06 20:21:46 +00:00
|
|
|
}),
|
|
|
|
site: `http://example.com`,
|
2022-04-19 15:23:07 +00:00
|
|
|
integrations: [testIntegration()],
|
2022-04-06 20:21:46 +00:00
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Dynamic pages are included in the redirects file', async () => {
|
|
|
|
const redir = await fixture.readFile('/_redirects');
|
2023-01-23 14:47:33 +00:00
|
|
|
expect(redir).to.match(/\/products\/:id/);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Prerendered routes are also included using placeholder syntax', async () => {
|
|
|
|
const redir = await fixture.readFile('/_redirects');
|
|
|
|
expect(redir).to.include('/pets/:cat /pets/:cat/index.html 200');
|
|
|
|
expect(redir).to.include('/pets/:dog /pets/:dog/index.html 200');
|
|
|
|
expect(redir).to.include('/pets /.netlify/functions/entry 200');
|
2022-04-06 20:21:46 +00:00
|
|
|
});
|
|
|
|
});
|