summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/prerender.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/prerender.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/prerender.test.js')
-rw-r--r--packages/integrations/netlify/test/functions/prerender.test.js74
1 files changed, 74 insertions, 0 deletions
diff --git a/packages/integrations/netlify/test/functions/prerender.test.js b/packages/integrations/netlify/test/functions/prerender.test.js
new file mode 100644
index 000000000..2028e89c3
--- /dev/null
+++ b/packages/integrations/netlify/test/functions/prerender.test.js
@@ -0,0 +1,74 @@
+import { expect } from 'chai';
+import netlifyAdapter from '../../dist/index.js';
+import { loadFixture, testIntegration } from './test-utils.js';
+
+describe('Mixed Prerendering with SSR', () => {
+ /** @type {import('./test-utils').Fixture} */
+ let fixture;
+
+ before(async () => {
+ process.env.PRERENDER = true;
+ fixture = await loadFixture({
+ root: new URL('./fixtures/prerender/', import.meta.url).toString(),
+ output: 'server',
+ adapter: netlifyAdapter({
+ dist: new URL('./fixtures/prerender/dist/', import.meta.url),
+ }),
+ site: `http://example.com`,
+ integrations: [testIntegration()],
+ });
+ await fixture.build();
+ });
+
+ after(() => {
+ delete process.env.PRERENDER;
+ });
+
+ it('Wildcard 404 is sorted last', async () => {
+ const redir = await fixture.readFile('/_redirects');
+ const baseRouteIndex = redir.indexOf('/ /.netlify/functions/entry 200');
+ const oneRouteIndex = redir.indexOf('/one /one/index.html 200');
+ const fourOhFourWildCardIndex = redir.indexOf('/* /.netlify/functions/entry 404');
+
+ expect(oneRouteIndex).to.not.be.equal(-1);
+ expect(fourOhFourWildCardIndex).to.be.greaterThan(baseRouteIndex);
+ expect(fourOhFourWildCardIndex).to.be.greaterThan(oneRouteIndex);
+ });
+});
+
+describe('Mixed Hybrid rendering with SSR', () => {
+ /** @type {import('./test-utils').Fixture} */
+ let fixture;
+
+ before(async () => {
+ process.env.PRERENDER = false;
+ fixture = await loadFixture({
+ root: new URL('./fixtures/prerender/', import.meta.url).toString(),
+ output: 'hybrid',
+ adapter: netlifyAdapter({
+ dist: new URL('./fixtures/prerender/dist/', import.meta.url),
+ }),
+ site: `http://example.com`,
+ integrations: [testIntegration()],
+ });
+ await fixture.build();
+ });
+
+ after(() => {
+ delete process.env.PRERENDER;
+ });
+
+ it('outputs a correct redirect file', async () => {
+ const redir = await fixture.readFile('/_redirects');
+ console.log(redir);
+ const baseRouteIndex = redir.indexOf('/one /.netlify/functions/entry 200');
+ const rootRouteIndex = redir.indexOf('/ /index.html 200');
+ const fourOhFourIndex = redir.indexOf('/404 /404.html 200');
+ const imageEndpoint = redir.indexOf('/_image /.netlify/functions/entry 200');
+
+ expect(rootRouteIndex).to.not.be.equal(-1);
+ expect(baseRouteIndex).to.not.be.equal(-1);
+ expect(fourOhFourIndex).to.not.be.equal(-1);
+ expect(imageEndpoint).to.not.be.equal(-1);
+ });
+});