1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
import * as assert from 'node:assert/strict';
import { after, before, describe, it } from 'node:test';
import { parseHTML } from 'linkedom';
import { loadFixture } from '../../../astro/test/test-utils.js';
const imageTestRoutes = ['with-components', 'esm-import', 'content-collection'];
describe('MDX Page', () => {
let devServer;
let fixture;
before(async () => {
fixture = await loadFixture({
root: new URL('./fixtures/mdx-images/', import.meta.url),
});
devServer = await fixture.startDevServer();
});
after(async () => {
await devServer.stop();
});
describe('Optimized images in MDX', () => {
it('works', async () => {
const res = await fixture.fetch('/');
assert.equal(res.status, 200);
const html = await res.text();
const { document } = parseHTML(html);
const imgs = document.getElementsByTagName('img');
assert.equal(imgs.length, 6);
// Image using a relative path
assert.equal(imgs.item(0).src.startsWith('/_image'), true);
// Image using an aliased path
assert.equal(imgs.item(1).src.startsWith('/_image'), true);
// Image with title
assert.equal(imgs.item(2).title, 'Houston title');
// Image with spaces in the path
assert.equal(imgs.item(3).src.startsWith('/_image'), true);
// Image using a relative path with no slashes
assert.equal(imgs.item(4).src.startsWith('/_image'), true);
// Image using a relative path with nested directory
assert.equal(imgs.item(5).src.startsWith('/_image'), true);
});
for (const route of imageTestRoutes) {
it(`supports img component - ${route}`, async () => {
const res = await fixture.fetch(`/${route}`);
assert.equal(res.status, 200);
const html = await res.text();
const { document } = parseHTML(html);
const imgs = document.getElementsByTagName('img');
assert.equal(imgs.length, 2);
const assetsImg = imgs.item(0);
assert.equal(assetsImg.src.startsWith('/_image'), true);
assert.equal(assetsImg.hasAttribute('data-my-image'), true);
const publicImg = imgs.item(1);
assert.equal(publicImg.src, '/favicon.svg');
assert.equal(publicImg.hasAttribute('data-my-image'), true);
});
}
});
describe('build', () => {
before(async () => {
await fixture.build();
});
it('includes responsive styles', async () => {
const code = await fixture.readFile('/index.html');
assert.ok(code.includes('[data-astro-image]'));
});
it("doesn't include styles on pages without images", async () => {
const code = await fixture.readFile('/no-image/index.html');
assert.ok(!code.includes('[data-astro-image]'));
});
});
});
|