2022-07-08 21:37:55 +00:00
|
|
|
import { expect } from 'chai';
|
|
|
|
import * as cheerio from 'cheerio';
|
|
|
|
import { loadFixture } from './test-utils.js';
|
|
|
|
import testAdapter from '../../../astro/test/test-adapter.js';
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
describe('SSR pictures - dev', function () {
|
2022-07-08 21:37:55 +00:00
|
|
|
let fixture;
|
2022-08-30 21:09:44 +00:00
|
|
|
let devServer;
|
|
|
|
let $;
|
2022-07-22 23:01:56 +00:00
|
|
|
|
2022-07-08 21:37:55 +00:00
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/basic-picture/',
|
|
|
|
adapter: testAdapter(),
|
2022-07-25 04:18:02 +00:00
|
|
|
output: 'server',
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
devServer = await fixture.startDevServer();
|
|
|
|
const html = await fixture.fetch('/').then((res) => res.text());
|
|
|
|
$ = cheerio.load(html);
|
|
|
|
});
|
2022-07-08 21:37:55 +00:00
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
after(async () => {
|
|
|
|
await devServer.stop();
|
|
|
|
});
|
2022-07-08 21:37:55 +00:00
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
describe('Local images', () => {
|
|
|
|
it('includes sources', () => {
|
2022-07-08 21:37:55 +00:00
|
|
|
const sources = $('#social-jpg source');
|
2022-07-08 21:40:22 +00:00
|
|
|
|
2022-07-08 21:37:55 +00:00
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
it('includes src, width, and height attributes', () => {
|
2022-07-08 21:37:55 +00:00
|
|
|
const image = $('#social-jpg img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
expect(route).to.equal('/@astroimage/assets/social.jpg');
|
2022-07-08 21:37:55 +00:00
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('jpg');
|
|
|
|
expect(searchParams.get('w')).to.equal('506');
|
|
|
|
expect(searchParams.get('h')).to.equal('253');
|
2022-07-19 19:21:58 +00:00
|
|
|
expect(image.attr('alt')).to.equal('Social image');
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
it('returns the optimized image', async () => {
|
2022-07-08 21:37:55 +00:00
|
|
|
const image = $('#social-jpg img');
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
const res = await fixture.fetch(image.attr('src'));
|
2022-07-08 21:37:55 +00:00
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
expect(res.status).to.equal(200);
|
|
|
|
expect(res.headers.get('Content-Type')).to.equal('image/jpeg');
|
2022-07-08 21:37:55 +00:00
|
|
|
|
|
|
|
// TODO: verify image file? It looks like sizeOf doesn't support ArrayBuffers
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Inline imports', () => {
|
2022-08-30 21:09:44 +00:00
|
|
|
it('includes sources', () => {
|
2022-07-08 21:37:55 +00:00
|
|
|
const sources = $('#inline source');
|
2022-07-08 21:40:22 +00:00
|
|
|
|
2022-07-08 21:37:55 +00:00
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
it('includes src, width, and height attributes', () => {
|
2022-07-08 21:37:55 +00:00
|
|
|
const image = $('#inline img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
expect(route).to.equal('/@astroimage/assets/social.jpg');
|
2022-07-08 21:37:55 +00:00
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('jpg');
|
|
|
|
expect(searchParams.get('w')).to.equal('506');
|
|
|
|
expect(searchParams.get('h')).to.equal('253');
|
2022-07-19 19:21:58 +00:00
|
|
|
expect(image.attr('alt')).to.equal('Inline social image');
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Remote images', () => {
|
2022-08-30 21:09:44 +00:00
|
|
|
it('includes sources', () => {
|
2022-07-08 21:37:55 +00:00
|
|
|
const sources = $('#google source');
|
2022-07-08 21:40:22 +00:00
|
|
|
|
2022-07-08 21:37:55 +00:00
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
it('includes src, width, and height attributes', () => {
|
2022-07-08 21:37:55 +00:00
|
|
|
const image = $('#google img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
|
|
|
expect(route).to.equal('/_image');
|
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('png');
|
|
|
|
expect(searchParams.get('w')).to.equal('544');
|
|
|
|
expect(searchParams.get('h')).to.equal('184');
|
2022-08-30 21:09:44 +00:00
|
|
|
expect(searchParams.get('href')).to.equal(
|
|
|
|
'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'
|
|
|
|
);
|
2022-07-19 19:21:58 +00:00
|
|
|
expect(image.attr('alt')).to.equal('Google logo');
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
});
|
2022-08-30 21:09:44 +00:00
|
|
|
|
|
|
|
describe('/public images', () => {
|
|
|
|
it('includes sources', () => {
|
|
|
|
const sources = $('#hero source');
|
|
|
|
|
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
|
|
|
it('includes src, width, and height attributes', () => {
|
|
|
|
const image = $('#hero img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
|
|
|
expect(route).to.equal('/_image');
|
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('jpg');
|
|
|
|
expect(searchParams.get('w')).to.equal('768');
|
|
|
|
expect(searchParams.get('h')).to.equal('414');
|
|
|
|
expect(searchParams.get('href')).to.equal('/hero.jpg');
|
|
|
|
expect(image.attr('alt')).to.equal('Hero image');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the optimized image', async () => {
|
|
|
|
const image = $('#hero img');
|
|
|
|
|
|
|
|
const res = await fixture.fetch(image.attr('src'));
|
|
|
|
|
|
|
|
expect(res.status).to.equal(200);
|
|
|
|
expect(res.headers.get('Content-Type')).to.equal('image/jpeg');
|
|
|
|
|
|
|
|
// TODO: verify image file? It looks like sizeOf doesn't support ArrayBuffers
|
|
|
|
});
|
|
|
|
});
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
describe('SSR pictures with subpath - dev', function () {
|
2022-07-08 21:37:55 +00:00
|
|
|
let fixture;
|
|
|
|
let devServer;
|
|
|
|
let $;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/basic-picture/',
|
|
|
|
adapter: testAdapter(),
|
2022-07-25 04:18:02 +00:00
|
|
|
output: 'server',
|
2022-08-30 21:12:45 +00:00
|
|
|
base: '/docs',
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
devServer = await fixture.startDevServer();
|
2022-08-30 21:09:44 +00:00
|
|
|
const html = await fixture.fetch('/docs/').then((res) => res.text());
|
2022-07-08 21:37:55 +00:00
|
|
|
$ = cheerio.load(html);
|
|
|
|
});
|
|
|
|
|
|
|
|
after(async () => {
|
|
|
|
await devServer.stop();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Local images', () => {
|
|
|
|
it('includes sources', () => {
|
|
|
|
const sources = $('#social-jpg source');
|
2022-07-08 21:40:22 +00:00
|
|
|
|
2022-07-08 21:37:55 +00:00
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
|
|
|
it('includes src, width, and height attributes', () => {
|
|
|
|
const image = $('#social-jpg img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
expect(route).to.equal('/@astroimage/assets/social.jpg');
|
2022-07-08 21:37:55 +00:00
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('jpg');
|
|
|
|
expect(searchParams.get('w')).to.equal('506');
|
|
|
|
expect(searchParams.get('h')).to.equal('253');
|
2022-07-19 19:21:58 +00:00
|
|
|
expect(image.attr('alt')).to.equal('Social image');
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the optimized image', async () => {
|
|
|
|
const image = $('#social-jpg img');
|
|
|
|
|
|
|
|
const res = await fixture.fetch(image.attr('src'));
|
|
|
|
|
|
|
|
expect(res.status).to.equal(200);
|
|
|
|
expect(res.headers.get('Content-Type')).to.equal('image/jpeg');
|
|
|
|
|
|
|
|
// TODO: verify image file? It looks like sizeOf doesn't support ArrayBuffers
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Inline imports', () => {
|
|
|
|
it('includes sources', () => {
|
|
|
|
const sources = $('#inline source');
|
2022-07-08 21:40:22 +00:00
|
|
|
|
2022-07-08 21:37:55 +00:00
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
|
|
|
it('includes src, width, and height attributes', () => {
|
|
|
|
const image = $('#inline img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
2022-08-30 21:09:44 +00:00
|
|
|
expect(route).to.equal('/@astroimage/assets/social.jpg');
|
2022-07-08 21:37:55 +00:00
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('jpg');
|
|
|
|
expect(searchParams.get('w')).to.equal('506');
|
|
|
|
expect(searchParams.get('h')).to.equal('253');
|
2022-07-19 19:21:58 +00:00
|
|
|
expect(image.attr('alt')).to.equal('Inline social image');
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Remote images', () => {
|
|
|
|
it('includes sources', () => {
|
|
|
|
const sources = $('#google source');
|
2022-07-08 21:40:22 +00:00
|
|
|
|
2022-07-08 21:37:55 +00:00
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
|
|
|
it('includes src, width, and height attributes', () => {
|
|
|
|
const image = $('#google img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
|
|
|
expect(route).to.equal('/_image');
|
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('png');
|
|
|
|
expect(searchParams.get('w')).to.equal('544');
|
|
|
|
expect(searchParams.get('h')).to.equal('184');
|
|
|
|
expect(searchParams.get('href')).to.equal(
|
|
|
|
'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png'
|
|
|
|
);
|
2022-07-19 19:21:58 +00:00
|
|
|
expect(image.attr('alt')).to.equal('Google logo');
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|
|
|
|
});
|
2022-08-30 21:09:44 +00:00
|
|
|
|
|
|
|
describe('/public images', () => {
|
|
|
|
it('includes sources', () => {
|
|
|
|
const sources = $('#hero source');
|
|
|
|
|
|
|
|
expect(sources.length).to.equal(3);
|
|
|
|
|
|
|
|
// TODO: better coverage to verify source props
|
|
|
|
});
|
|
|
|
|
|
|
|
it('includes src, width, and height attributes', () => {
|
|
|
|
const image = $('#hero img');
|
|
|
|
|
|
|
|
const src = image.attr('src');
|
|
|
|
const [route, params] = src.split('?');
|
|
|
|
|
|
|
|
expect(route).to.equal('/_image');
|
|
|
|
|
|
|
|
const searchParams = new URLSearchParams(params);
|
|
|
|
|
|
|
|
expect(searchParams.get('f')).to.equal('jpg');
|
|
|
|
expect(searchParams.get('w')).to.equal('768');
|
|
|
|
expect(searchParams.get('h')).to.equal('414');
|
|
|
|
expect(searchParams.get('href')).to.equal('/hero.jpg');
|
|
|
|
expect(image.attr('alt')).to.equal('Hero image');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the optimized image', async () => {
|
|
|
|
const image = $('#hero img');
|
|
|
|
|
|
|
|
const res = await fixture.fetch(image.attr('src'));
|
|
|
|
|
|
|
|
expect(res.status).to.equal(200);
|
|
|
|
expect(res.headers.get('Content-Type')).to.equal('image/jpeg');
|
|
|
|
|
|
|
|
// TODO: verify image file? It looks like sizeOf doesn't support ArrayBuffers
|
|
|
|
});
|
|
|
|
});
|
2022-07-08 21:37:55 +00:00
|
|
|
});
|