2022-06-30 13:09:09 -05:00
|
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
import * as assert from 'node:assert/strict';
|
2024-02-21 09:08:19 -05:00
|
|
|
import { after, before, describe, it } from 'node:test';
|
2022-06-30 13:11:12 -05:00
|
|
|
import { parseHTML } from 'linkedom';
|
2022-06-30 13:09:09 -05:00
|
|
|
import { loadFixture } from '../../../astro/test/test-utils.js';
|
|
|
|
|
|
|
|
describe('MDX Component', () => {
|
|
|
|
let fixture;
|
2022-06-30 13:11:12 -05:00
|
|
|
|
2022-06-30 13:09:09 -05:00
|
|
|
before(async () => {
|
2022-06-30 13:11:12 -05:00
|
|
|
fixture = await loadFixture({
|
2022-06-30 13:09:09 -05:00
|
|
|
root: new URL('./fixtures/mdx-component/', import.meta.url),
|
2022-06-30 13:11:12 -05:00
|
|
|
integrations: [mdx()],
|
2022-06-30 13:09:09 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('build', () => {
|
|
|
|
before(async () => {
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
2022-08-12 17:17:26 -05:00
|
|
|
it('supports top-level imports', async () => {
|
2022-06-30 13:09:09 -05:00
|
|
|
const html = await fixture.readFile('/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
2022-06-30 13:11:12 -05:00
|
|
|
|
2022-06-30 13:09:09 -05:00
|
|
|
const h1 = document.querySelector('h1');
|
|
|
|
const foo = document.querySelector('#foo');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'Hello component!');
|
|
|
|
assert.equal(foo.textContent, 'bar');
|
2022-06-30 13:09:09 -05:00
|
|
|
});
|
2022-08-12 17:17:26 -05:00
|
|
|
|
|
|
|
it('supports glob imports - <Component.default />', async () => {
|
|
|
|
const html = await fixture.readFile('/glob/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h1 = document.querySelector('[data-default-export] h1');
|
|
|
|
const foo = document.querySelector('[data-default-export] #foo');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'Hello component!');
|
|
|
|
assert.equal(foo.textContent, 'bar');
|
2022-08-12 17:17:26 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('supports glob imports - <Content />', async () => {
|
|
|
|
const html = await fixture.readFile('/glob/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h1 = document.querySelector('[data-content-export] h1');
|
|
|
|
const foo = document.querySelector('[data-content-export] #foo');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'Hello component!');
|
|
|
|
assert.equal(foo.textContent, 'bar');
|
2022-08-12 17:17:26 -05:00
|
|
|
});
|
2022-12-05 15:56:43 -05:00
|
|
|
|
|
|
|
describe('with <Fragment>', () => {
|
|
|
|
it('supports top-level imports', async () => {
|
|
|
|
const html = await fixture.readFile('/w-fragment/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h1 = document.querySelector('h1');
|
|
|
|
const p = document.querySelector('p');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'MDX containing <Fragment />');
|
|
|
|
assert.equal(p.textContent, 'bar');
|
2022-12-05 15:56:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('supports glob imports - <Component.default />', async () => {
|
|
|
|
const html = await fixture.readFile('/glob/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h = document.querySelector('[data-default-export] [data-file="WithFragment.mdx"] h1');
|
|
|
|
const p = document.querySelector('[data-default-export] [data-file="WithFragment.mdx"] p');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h.textContent, 'MDX containing <Fragment />');
|
|
|
|
assert.equal(p.textContent, 'bar');
|
2022-12-05 15:56:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('supports glob imports - <Content />', async () => {
|
|
|
|
const html = await fixture.readFile('/glob/index.html');
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h = document.querySelector('[data-content-export] [data-file="WithFragment.mdx"] h1');
|
|
|
|
const p = document.querySelector('[data-content-export] [data-file="WithFragment.mdx"] p');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h.textContent, 'MDX containing <Fragment />');
|
|
|
|
assert.equal(p.textContent, 'bar');
|
2022-12-05 15:56:43 -05:00
|
|
|
});
|
|
|
|
});
|
2022-06-30 13:11:12 -05:00
|
|
|
});
|
2022-06-30 13:09:09 -05:00
|
|
|
|
|
|
|
describe('dev', () => {
|
|
|
|
let devServer;
|
2022-06-30 13:11:12 -05:00
|
|
|
|
2022-06-30 13:09:09 -05:00
|
|
|
before(async () => {
|
|
|
|
devServer = await fixture.startDevServer();
|
|
|
|
});
|
|
|
|
|
|
|
|
after(async () => {
|
|
|
|
await devServer.stop();
|
|
|
|
});
|
|
|
|
|
2022-08-12 17:17:26 -05:00
|
|
|
it('supports top-level imports', async () => {
|
2022-06-30 13:09:09 -05:00
|
|
|
const res = await fixture.fetch('/');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(res.status, 200);
|
2022-06-30 13:09:09 -05:00
|
|
|
|
|
|
|
const html = await res.text();
|
|
|
|
const { document } = parseHTML(html);
|
2022-06-30 13:11:12 -05:00
|
|
|
|
2022-06-30 13:09:09 -05:00
|
|
|
const h1 = document.querySelector('h1');
|
|
|
|
const foo = document.querySelector('#foo');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'Hello component!');
|
|
|
|
assert.equal(foo.textContent, 'bar');
|
2022-06-30 13:09:09 -05:00
|
|
|
});
|
2022-08-12 17:17:26 -05:00
|
|
|
|
|
|
|
it('supports glob imports - <Component.default />', async () => {
|
|
|
|
const res = await fixture.fetch('/glob');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(res.status, 200);
|
2022-08-12 17:17:26 -05:00
|
|
|
|
|
|
|
const html = await res.text();
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h1 = document.querySelector('[data-default-export] h1');
|
|
|
|
const foo = document.querySelector('[data-default-export] #foo');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'Hello component!');
|
|
|
|
assert.equal(foo.textContent, 'bar');
|
2022-08-12 17:17:26 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('supports glob imports - <Content />', async () => {
|
|
|
|
const res = await fixture.fetch('/glob');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(res.status, 200);
|
2022-08-12 17:17:26 -05:00
|
|
|
|
|
|
|
const html = await res.text();
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h1 = document.querySelector('[data-content-export] h1');
|
|
|
|
const foo = document.querySelector('[data-content-export] #foo');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'Hello component!');
|
|
|
|
assert.equal(foo.textContent, 'bar');
|
2022-08-12 17:17:26 -05:00
|
|
|
});
|
2022-12-05 15:56:43 -05:00
|
|
|
|
|
|
|
describe('with <Fragment>', () => {
|
|
|
|
it('supports top-level imports', async () => {
|
|
|
|
const res = await fixture.fetch('/w-fragment');
|
2024-01-31 03:37:34 -05:00
|
|
|
|
|
|
|
assert.equal(res.status, 200);
|
2022-12-05 15:56:43 -05:00
|
|
|
|
|
|
|
const html = await res.text();
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h1 = document.querySelector('h1');
|
|
|
|
const p = document.querySelector('p');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h1.textContent, 'MDX containing <Fragment />');
|
|
|
|
assert.equal(p.textContent, 'bar');
|
2022-12-05 15:56:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('supports glob imports - <Component.default />', async () => {
|
|
|
|
const res = await fixture.fetch('/glob');
|
2024-01-31 03:37:34 -05:00
|
|
|
|
|
|
|
assert.equal(res.status, 200);
|
2022-12-05 15:56:43 -05:00
|
|
|
|
|
|
|
const html = await res.text();
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h = document.querySelector('[data-default-export] [data-file="WithFragment.mdx"] h1');
|
|
|
|
const p = document.querySelector('[data-default-export] [data-file="WithFragment.mdx"] p');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h.textContent, 'MDX containing <Fragment />');
|
|
|
|
assert.equal(p.textContent, 'bar');
|
2022-12-05 15:56:43 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('supports glob imports - <Content />', async () => {
|
|
|
|
const res = await fixture.fetch('/glob');
|
2024-01-31 03:37:34 -05:00
|
|
|
|
|
|
|
assert.equal(res.status, 200);
|
2022-12-05 15:56:43 -05:00
|
|
|
|
|
|
|
const html = await res.text();
|
|
|
|
const { document } = parseHTML(html);
|
|
|
|
|
|
|
|
const h = document.querySelector('[data-content-export] [data-file="WithFragment.mdx"] h1');
|
|
|
|
const p = document.querySelector('[data-content-export] [data-file="WithFragment.mdx"] p');
|
|
|
|
|
2024-01-31 03:37:34 -05:00
|
|
|
assert.equal(h.textContent, 'MDX containing <Fragment />');
|
|
|
|
assert.equal(p.textContent, 'bar');
|
2022-12-05 15:56:43 -05:00
|
|
|
});
|
|
|
|
});
|
2022-06-30 13:11:12 -05:00
|
|
|
});
|
|
|
|
});
|