summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/dynamic-route.test.js
diff options
context:
space:
mode:
authorGravatar Alexander Niebuhr <alexander@nbhr.io> 2023-10-13 09:26:07 +0200
committerGravatar Alexander Niebuhr <alexander@nbhr.io> 2023-10-13 09:26:07 +0200
commitb750be65ff69c5c219f3f74abbc1e6f8a64e6830 (patch)
tree35d2be4293d14f6b404611a569d3e7c554f0b8e8 /packages/integrations/netlify/test/functions/dynamic-route.test.js
parent93a1db68cd9cf3bb2a4d9f7a8af13cbd881eb701 (diff)
parentbf225d6df1fa25baa5f4cd0bc3a7c6a28d9b51ab (diff)
downloadastro-b750be65ff69c5c219f3f74abbc1e6f8a64e6830.tar.gz
astro-b750be65ff69c5c219f3f74abbc1e6f8a64e6830.tar.zst
astro-b750be65ff69c5c219f3f74abbc1e6f8a64e6830.zip
chore(netlify): migrate from `withastro/astro` to `withastro/adapters`
Diffstat (limited to 'packages/integrations/netlify/test/functions/dynamic-route.test.js')
-rw-r--r--packages/integrations/netlify/test/functions/dynamic-route.test.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/integrations/netlify/test/functions/dynamic-route.test.js b/packages/integrations/netlify/test/functions/dynamic-route.test.js
new file mode 100644
index 000000000..6bb68eab8
--- /dev/null
+++ b/packages/integrations/netlify/test/functions/dynamic-route.test.js
@@ -0,0 +1,33 @@
+import { expect } from 'chai';
+import netlifyAdapter from '../../dist/index.js';
+import { loadFixture, testIntegration } from './test-utils.js';
+
+describe('Dynamic pages', () => {
+ /** @type {import('./test-utils').Fixture} */
+ let fixture;
+
+ before(async () => {
+ fixture = await loadFixture({
+ root: new URL('./fixtures/dynamic-route/', import.meta.url).toString(),
+ output: 'server',
+ adapter: netlifyAdapter({
+ dist: new URL('./fixtures/dynamic-route/dist/', import.meta.url),
+ }),
+ site: `http://example.com`,
+ integrations: [testIntegration()],
+ });
+ await fixture.build();
+ });
+
+ it('Dynamic pages are included in the redirects file', async () => {
+ const redir = await fixture.readFile('/_redirects');
+ 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');
+ });
+});