2024-01-25 11:17:31 -05:00
|
|
|
import * as assert from 'node:assert/strict';
|
|
|
|
import { describe, it, before, after } from 'node:test';
|
2023-11-28 08:46:26 -05:00
|
|
|
import nodejs from '../dist/index.js';
|
|
|
|
import { loadFixture } from './test-utils.js';
|
|
|
|
import * as cheerio from 'cheerio';
|
|
|
|
|
|
|
|
describe('Assets', () => {
|
|
|
|
/** @type {import('./test-utils').Fixture} */
|
|
|
|
let fixture;
|
|
|
|
let devPreview;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/image/',
|
|
|
|
output: 'server',
|
|
|
|
adapter: nodejs({ mode: 'standalone' }),
|
|
|
|
vite: {
|
|
|
|
build: {
|
|
|
|
assetsInlineLimit: 0,
|
2023-11-28 08:48:11 -05:00
|
|
|
},
|
|
|
|
},
|
2023-11-28 08:46:26 -05:00
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
devPreview = await fixture.preview();
|
|
|
|
});
|
|
|
|
|
|
|
|
after(async () => {
|
|
|
|
await devPreview.stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Assets within the _astro folder should be given immutable headers', async () => {
|
|
|
|
let response = await fixture.fetch('/text-file');
|
|
|
|
let cacheControl = response.headers.get('cache-control');
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(cacheControl, null);
|
2023-11-28 08:46:26 -05:00
|
|
|
const html = await response.text();
|
|
|
|
const $ = cheerio.load(html);
|
|
|
|
|
|
|
|
// Fetch the asset
|
|
|
|
const fileURL = $('a').attr('href');
|
|
|
|
response = await fixture.fetch(fileURL);
|
|
|
|
cacheControl = response.headers.get('cache-control');
|
2024-01-25 11:17:31 -05:00
|
|
|
assert.equal(cacheControl, 'public, max-age=31536000, immutable');
|
2023-11-28 08:46:26 -05:00
|
|
|
});
|
|
|
|
});
|