summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/prerender.test.js
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthew@skypack.dev> 2023-09-28 04:48:26 +0800
committerGravatar GitHub <noreply@github.com> 2023-09-27 16:48:26 -0400
commit4ed410db507723d8f8edd70aec508415d77ad2f5 (patch)
treedd876939fc708358d0675ba159e0a1d9af0fcd79 /packages/integrations/netlify/test/functions/prerender.test.js
parenta10a798c18512796d2c8b8ed49924dafd884e04c (diff)
downloadastro-4ed410db507723d8f8edd70aec508415d77ad2f5.tar.gz
astro-4ed410db507723d8f8edd70aec508415d77ad2f5.tar.zst
astro-4ed410db507723d8f8edd70aec508415d77ad2f5.zip
Remove Netlify adapter from core (#8574)
* New link * More explicit * Add placeholder package.json * lockfile * add keyworkds
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, 0 insertions, 74 deletions
diff --git a/packages/integrations/netlify/test/functions/prerender.test.js b/packages/integrations/netlify/test/functions/prerender.test.js
deleted file mode 100644
index 2028e89c3..000000000
--- a/packages/integrations/netlify/test/functions/prerender.test.js
+++ /dev/null
@@ -1,74 +0,0 @@
-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);
- });
-});