summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/prerender.test.js
blob: a571dd76e43223266fc88db210c8846203be9a7a (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import { expect } from 'chai';
import netlifyAdapter from '../../dist/index.js';
import { loadFixture, testIntegration } from './test-utils.js';
import { after } from 'node:test';

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');
		const baseRouteIndex = redir.indexOf('/one    /.netlify/functions/entry    200');
		const rootRouteIndex = redir.indexOf('/       /index.html                  200');
		const fourOhFourIndex = redir.indexOf('/404    /404.html                    200');

		expect(rootRouteIndex).to.not.be.equal(-1);
		expect(baseRouteIndex).to.not.be.equal(-1);
		expect(fourOhFourIndex).to.not.be.equal(-1);
	});
});