diff options
author | 2023-10-13 09:26:07 +0200 | |
---|---|---|
committer | 2023-10-13 09:26:07 +0200 | |
commit | b750be65ff69c5c219f3f74abbc1e6f8a64e6830 (patch) | |
tree | 35d2be4293d14f6b404611a569d3e7c554f0b8e8 /packages/integrations/netlify/test/functions/split-support.test.js | |
parent | 93a1db68cd9cf3bb2a4d9f7a8af13cbd881eb701 (diff) | |
parent | bf225d6df1fa25baa5f4cd0bc3a7c6a28d9b51ab (diff) | |
download | astro-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/split-support.test.js')
-rw-r--r-- | packages/integrations/netlify/test/functions/split-support.test.js | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/packages/integrations/netlify/test/functions/split-support.test.js b/packages/integrations/netlify/test/functions/split-support.test.js new file mode 100644 index 000000000..90427523c --- /dev/null +++ b/packages/integrations/netlify/test/functions/split-support.test.js @@ -0,0 +1,63 @@ +import { expect } from 'chai'; +import netlifyAdapter from '../../dist/index.js'; +import { loadFixture, testIntegration } from './test-utils.js'; + +describe('Split support', () => { + /** @type {import('./test-utils').Fixture} */ + let fixture; + let _entryPoints; + + before(async () => { + fixture = await loadFixture({ + root: new URL('./fixtures/split-support/', import.meta.url).toString(), + output: 'server', + adapter: netlifyAdapter({ + dist: new URL('./fixtures/split-support/dist/', import.meta.url), + functionPerRoute: true, + }), + site: `http://example.com`, + integrations: [ + testIntegration({ + setEntryPoints(ep) { + _entryPoints = ep; + }, + }), + ], + }); + await fixture.build(); + }); + + it('outputs a correct redirect file', async () => { + const redir = await fixture.readFile('/_redirects'); + const lines = redir.split(/[\r\n]+/); + expect(lines.length).to.equal(3); + + expect(lines[0].includes('/blog')).to.be.true; + expect(lines[0].includes('blog.astro')).to.be.true; + expect(lines[0].includes('200')).to.be.true; + expect(lines[1].includes('/')).to.be.true; + expect(lines[1].includes('index.astro')).to.be.true; + expect(lines[1].includes('200')).to.be.true; + }); + + describe('Should create multiple functions', () => { + it('and hit 200', async () => { + if (_entryPoints) { + for (const [routeData, filePath] of _entryPoints) { + if (routeData.route !== '/_image') { + const { handler } = await import(filePath.toString()); + const resp = await handler({ + httpMethod: 'GET', + headers: {}, + rawUrl: `http://example.com${routeData.route}`, + body: '{}', + }); + expect(resp.statusCode).to.equal(200); + } + } + } else { + expect(false).to.be.true; + } + }); + }); +}); |