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/base64-response.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/base64-response.test.js')
-rw-r--r-- | packages/integrations/netlify/test/functions/base64-response.test.js | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/packages/integrations/netlify/test/functions/base64-response.test.js b/packages/integrations/netlify/test/functions/base64-response.test.js new file mode 100644 index 000000000..6e59bd192 --- /dev/null +++ b/packages/integrations/netlify/test/functions/base64-response.test.js @@ -0,0 +1,62 @@ +import { expect } from 'chai'; +import { loadFixture, testIntegration } from './test-utils.js'; +import netlifyAdapter from '../../dist/index.js'; + +describe('Base64 Responses', () => { + /** @type {import('../../../astro/test/test-utils').Fixture} */ + let fixture; + + before(async () => { + fixture = await loadFixture({ + root: new URL('./fixtures/base64-response/', import.meta.url).toString(), + output: 'server', + adapter: netlifyAdapter({ + dist: new URL('./fixtures/base64-response/dist/', import.meta.url), + binaryMediaTypes: ['font/otf'], + }), + site: `http://example.com`, + integrations: [testIntegration()], + }); + await fixture.build(); + }); + + it('Can return base64 encoded strings', async () => { + const entryURL = new URL( + './fixtures/base64-response/.netlify/functions-internal/entry.mjs', + import.meta.url + ); + const { handler } = await import(entryURL); + const resp = await handler({ + httpMethod: 'GET', + headers: {}, + rawUrl: 'http://example.com/image', + body: '{}', + isBase64Encoded: false, + }); + expect(resp.statusCode, 'successful response').to.equal(200); + expect(resp.isBase64Encoded, 'includes isBase64Encoded flag').to.be.true; + + const buffer = Buffer.from(resp.body, 'base64'); + expect(buffer.toString(), 'decoded base64 string matches').to.equal('base64 test string'); + }); + + it('Can define custom binaryMediaTypes', async () => { + const entryURL = new URL( + './fixtures/base64-response/.netlify/functions-internal/entry.mjs', + import.meta.url + ); + const { handler } = await import(entryURL); + const resp = await handler({ + httpMethod: 'GET', + headers: {}, + rawUrl: 'http://example.com/font', + body: '{}', + isBase64Encoded: false, + }); + expect(resp.statusCode, 'successful response').to.equal(200); + expect(resp.isBase64Encoded, 'includes isBase64Encoded flag').to.be.true; + + const buffer = Buffer.from(resp.body, 'base64'); + expect(buffer.toString(), 'decoded base64 string matches').to.equal('base64 test font'); + }); +}); |