2022-08-05 23:55:38 +00:00
|
|
|
import { expect } from 'chai';
|
2022-08-11 17:36:34 +00:00
|
|
|
import { parseHTML } from 'linkedom';
|
2022-08-05 23:55:38 +00: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);
|
|
|
|
expect(titles).to.contain('Page 1');
|
|
|
|
expect(titles).to.contain('Page 2');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('rehype supports custom vfile data - reading time', async () => {
|
|
|
|
const frontmatterByPage = JSON.parse(await fixture.readFile('/glob.json'));
|
2022-08-05 23:58:09 +00:00
|
|
|
const readingTimes = frontmatterByPage.map(
|
|
|
|
(frontmatter = {}) => frontmatter.injectedReadingTime
|
|
|
|
);
|
2022-08-05 23:55:38 +00:00
|
|
|
expect(readingTimes.length).to.be.greaterThan(0);
|
|
|
|
for (let readingTime of readingTimes) {
|
|
|
|
expect(readingTime).to.not.be.null;
|
|
|
|
expect(readingTime.text).match(/^\d+ min read/);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-01-03 21:31:19 +00:00
|
|
|
it('allow user frontmatter mutation', async () => {
|
2022-08-05 23:55:38 +00:00
|
|
|
const frontmatterByPage = JSON.parse(await fixture.readFile('/glob.json'));
|
2023-01-03 21:31:19 +00:00
|
|
|
const descriptions = frontmatterByPage.map((frontmatter = {}) => frontmatter.description);
|
|
|
|
expect(descriptions).to.contain('Processed by remarkDescription plugin: Page 1 description');
|
|
|
|
expect(descriptions).to.contain('Processed by remarkDescription plugin: Page 2 description');
|
2022-08-05 23:55:38 +00:00
|
|
|
});
|
2022-08-11 17:36:34 +00: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');
|
|
|
|
|
|
|
|
expect(title1.innerHTML).to.equal('Page 1');
|
|
|
|
expect(title2.innerHTML).to.equal('Page 2');
|
|
|
|
});
|
2022-08-05 23:55:38 +00:00
|
|
|
});
|