0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/vercel/test/static-assets.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.8 KiB
JavaScript
Raw Normal View History

import { expect } from 'chai';
import { loadFixture } from './test-utils.js';
describe('Static Assets', () => {
/** @type {import('../../../astro/test/test-utils.js').Fixture} */
let fixture;
const VALID_CACHE_CONTROL = 'public, max-age=31536000, immutable';
2023-11-07 09:01:04 -05:00
async function build({ adapter, assets, output }) {
fixture = await loadFixture({
root: './fixtures/static-assets/',
2023-11-07 09:01:04 -05:00
output,
adapter,
build: {
assets,
2023-08-01 18:09:10 -05:00
},
});
await fixture.build();
}
async function getConfig() {
const json = await fixture.readFile('../.vercel/output/config.json');
const config = JSON.parse(json);
return config;
}
async function getAssets() {
return fixture.config.build.assets;
}
async function checkValidCacheControl(assets) {
const config = await getConfig();
const route = config.routes.find((r) => r.src === `^/${assets ?? getAssets()}/(.*)$`);
expect(route.headers['cache-control']).to.equal(VALID_CACHE_CONTROL);
expect(route.continue).to.equal(true);
}
describe('static adapter', async () => {
2023-11-07 09:01:04 -05:00
const { default: vercel } = await import('@astrojs/vercel/static');
it('has cache control', async () => {
2023-11-07 09:01:04 -05:00
await build({ adapter: vercel() });
checkValidCacheControl();
});
it('has cache control other assets', async () => {
const assets = '_foo';
2023-11-07 09:01:04 -05:00
await build({ adapter: vercel(), assets });
checkValidCacheControl(assets);
});
});
describe('serverless adapter', async () => {
2023-11-07 09:01:04 -05:00
const { default: vercel } = await import('@astrojs/vercel/serverless');
it('has cache control', async () => {
2023-11-07 09:03:45 -05:00
await build({ output: 'server', adapter: vercel() });
checkValidCacheControl();
});
it('has cache control other assets', async () => {
const assets = '_foo';
2023-11-07 09:03:45 -05:00
await build({ output: 'server', adapter: vercel(), assets });
checkValidCacheControl(assets);
});
});
});