2024-01-31 03:37:34 -05:00
|
|
|
import { describe, it, before } from 'node:test';
|
|
|
|
import * as assert from 'node:assert/strict';
|
2022-08-11 12:36:34 -05:00
|
|
|
import { parseHTML } from 'linkedom';
|
2022-08-05 18:55:38 -05:00
|
|
|
import { loadFixture } from '../../../astro/test/test-utils.js';
|
|
|
|
|
|
|
|
const FIXTURE_ROOT = new URL('./fixtures/mdx-frontmatter-injection/', import.meta.url);
|
|
|
|
|
|
|
|
describe('MDX frontmatter injection', () => {
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: FIXTURE_ROOT,
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('remark supports custom vfile data - get title', async () => {
|
|
|
|
const frontmatterByPage = JSON.parse(await fixture.readFile('/glob.json'));
|
|
|
|
const titles = frontmatterByPage.map((frontmatter = {}) => frontmatter.title);
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(titles.includes('Page 1'), true);
|
|
|
|
assert.equal(titles.includes('Page 2'), true);
|
2022-08-05 18:55:38 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('rehype supports custom vfile data - reading time', async () => {
|
|
|
|
const frontmatterByPage = JSON.parse(await fixture.readFile('/glob.json'));
|
2022-08-05 18:58:09 -05:00
|
|
|
const readingTimes = frontmatterByPage.map(
|
|
|
|
(frontmatter = {}) => frontmatter.injectedReadingTime
|
|
|
|
);
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(readingTimes.length > 0, true);
|
2022-08-05 18:55:38 -05:00
|
|
|
for (let readingTime of readingTimes) {
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.notEqual(readingTime, null);
|
|
|
|
assert.match(readingTime.text, /^\d+ min read/);
|
2022-08-05 18:55:38 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-01-03 16:31:19 -05:00
|
|
|
it('allow user frontmatter mutation', async () => {
|
2022-08-05 18:55:38 -05:00
|
|
|
const frontmatterByPage = JSON.parse(await fixture.readFile('/glob.json'));
|
2023-01-03 16:31:19 -05:00
|
|
|
const descriptions = frontmatterByPage.map((frontmatter = {}) => frontmatter.description);
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(
|
|
|
|
descriptions.includes('Processed by remarkDescription plugin: Page 1 description'),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
descriptions.includes('Processed by remarkDescription plugin: Page 2 description'),
|
|
|
|
true
|
|
|
|
);
|
2022-08-05 18:55:38 -05:00
|
|
|
});
|
2022-08-11 12:36:34 -05:00
|
|
|
|
|
|
|
it('passes injected frontmatter to layouts', async () => {
|
|
|
|
const html1 = await fixture.readFile('/page-1/index.html');
|
|
|
|
const html2 = await fixture.readFile('/page-2/index.html');
|
|
|
|
|
|
|
|
const title1 = parseHTML(html1).document.querySelector('title');
|
|
|
|
const title2 = parseHTML(html2).document.querySelector('title');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(title1.innerHTML, 'Page 1');
|
|
|
|
assert.equal(title2.innerHTML, 'Page 2');
|
2022-08-11 12:36:34 -05:00
|
|
|
});
|
2022-08-05 18:55:38 -05:00
|
|
|
});
|