summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/prerender.test.js
blob: 324ebc5c5a107f09d63372baec73515493b396ff (plain) (blame)
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
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 () => {
		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();
	});
	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(fourOhFourWildCardIndex).to.be.greaterThan(baseRouteIndex);
		expect(fourOhFourWildCardIndex).to.be.greaterThan(oneRouteIndex);
	});
});