mirror of
https://github.com/withastro/astro.git
synced 2025-01-13 22:11:20 -05:00
17c02925c5
* wip: config migration * fix: formatting * refactor: projectRoot -> root * refactor: pageUrlFormat -> format * refactor: buildOptions.site -> site * refactor: public -> publicDir * refactor: dist -> outDir * refactor: styleOptions -> style * fix: some dist tests -> outDir * refactor: remove legacyBuild (with TODOs) * refactor: more legacyBuild cleanup * refactor: server host and port * fix: remove experimentalStaticBuild CLI flag * refactor: src -> srcDir * refactor: devOptions.trailing -> trailing * refactor: remove sitemap + related flags * refactor: experimentalSSR -> experimental.ssr * fix: last devOptions * refactor: drafts -> markdown.drafts * fix: TS error on port as const * refactor: remove pages * refactor: more --project-root updates * refactor: markdownOptions -> markdown * fix: remaining type errors * feat: update AstroUserConfig * refactor: update CLI flag mapper + server mapper * fix: loadFixture projectRoot * fix: merge CLI flags before validating / transforming * wip: attempt to fix bad createRouteManifest config * refactor: combine config.base and config.site * fix: skip route manifest test for now * fix: site and base handling * refactor: update failing config testes * fix: build failure * feat: update config types with migration help * chore: update types * fix(deno): update deno fixture * chore: remove config migration logic * chore: remove logLevel * chore: clean-up config types * chore: update config warning * chore: add changeset * Sitemap Integration (#2965) * feat: add sitemap filter config option * feat: add canonicalURL sitemap config option * docs: update sitemap README * fix: update for new config * fix: filter not being applied * chore: changeset Co-authored-by: bholmesdev <hey@bholmes.dev> * fred pass * fix: Astro.resolve typo * fix: public => publicDir Co-authored-by: bholmesdev <hey@bholmes.dev> Co-authored-by: Fred K. Schott <fkschott@gmail.com>
136 lines
3.9 KiB
JavaScript
136 lines
3.9 KiB
JavaScript
import { expect } from 'chai';
|
|
import cheerio from 'cheerio';
|
|
import { isWindows, loadFixture } from './test-utils.js';
|
|
|
|
let fixture;
|
|
|
|
describe('React Components', () => {
|
|
before(async () => {
|
|
fixture = await loadFixture({
|
|
root: './fixtures/react-component/',
|
|
});
|
|
});
|
|
|
|
describe('build', () => {
|
|
before(async () => {
|
|
await fixture.build();
|
|
});
|
|
|
|
it('Can load React', async () => {
|
|
const html = await fixture.readFile('/index.html');
|
|
const $ = cheerio.load(html);
|
|
|
|
// test 1: basic component renders
|
|
expect($('#react-static').text()).to.equal('Hello static!');
|
|
|
|
// test 2: no reactroot
|
|
expect($('#react-static').attr('data-reactroot')).to.equal(undefined);
|
|
|
|
// test 3: Can use function components
|
|
expect($('#arrow-fn-component')).to.have.lengthOf(1);
|
|
|
|
// test 4: Can use spread for components
|
|
expect($('#component-spread-props')).to.have.lengthOf(1);
|
|
|
|
// test 5: spread props renders
|
|
expect($('#component-spread-props').text(), 'Hello world!');
|
|
|
|
// test 6: Can use TS components
|
|
expect($('.ts-component')).to.have.lengthOf(1);
|
|
|
|
// test 7: Can use Pure components
|
|
expect($('#pure')).to.have.lengthOf(1);
|
|
|
|
// test 8: Check number of islands
|
|
expect($('astro-root[uid]')).to.have.lengthOf(5);
|
|
|
|
// test 9: Check island deduplication
|
|
const uniqueRootUIDs = new Set($('astro-root').map((i, el) => $(el).attr('uid')));
|
|
expect(uniqueRootUIDs.size).to.equal(4);
|
|
});
|
|
|
|
it('Can load Vue', async () => {
|
|
const html = await fixture.readFile('/index.html');
|
|
const $ = cheerio.load(html);
|
|
expect($('#vue-h2').text()).to.equal('Hasta la vista, baby');
|
|
});
|
|
|
|
it('Can use a pragma comment', async () => {
|
|
const html = await fixture.readFile('/pragma-comment/index.html');
|
|
const $ = cheerio.load(html);
|
|
|
|
// test 1: rendered the PragmaComment component
|
|
expect($('.pragma-comment')).to.have.lengthOf(2);
|
|
});
|
|
|
|
// TODO: is this still a relevant test?
|
|
it.skip('Includes reactroot on hydrating components', async () => {
|
|
const html = await fixture.readFile('/index.html');
|
|
const $ = cheerio.load(html);
|
|
|
|
const div = $('#research');
|
|
|
|
// test 1: has the hydration attr
|
|
expect(div.attr('data-reactroot')).to.be.ok;
|
|
|
|
// test 2: renders correctly
|
|
expect(div.html()).to.equal('foo bar <!-- -->1');
|
|
});
|
|
});
|
|
|
|
if (isWindows) return;
|
|
|
|
describe('dev', () => {
|
|
let devServer;
|
|
|
|
before(async () => {
|
|
devServer = await fixture.startDevServer();
|
|
});
|
|
|
|
after(async () => {
|
|
await devServer.stop();
|
|
});
|
|
|
|
it('scripts proxy correctly', async () => {
|
|
const html = await fixture.fetch('/').then((res) => res.text());
|
|
const $ = cheerio.load(html);
|
|
|
|
for (const script of $('script').toArray()) {
|
|
const { src } = script.attribs;
|
|
if (!src) continue;
|
|
expect((await fixture.fetch(src)).status, `404: ${src}`).to.equal(200);
|
|
}
|
|
});
|
|
|
|
// TODO: move this to separate dev test?
|
|
it.skip('Throws helpful error message on window SSR', async () => {
|
|
const html = await fixture.fetch('/window/index.html');
|
|
expect(html).to.include(
|
|
`[/window]
|
|
The window object is not available during server-side rendering (SSR).
|
|
Try using \`import.meta.env.SSR\` to write SSR-friendly code.
|
|
https://docs.astro.build/reference/api-reference/#importmeta`
|
|
);
|
|
});
|
|
|
|
// In moving over to Vite, the jsx-runtime import is now obscured. TODO: update the method of finding this.
|
|
it.skip('uses the new JSX transform', async () => {
|
|
const html = await fixture.fetch('/index.html');
|
|
|
|
// Grab the imports
|
|
const exp = /import\("(.+?)"\)/g;
|
|
let match, componentUrl;
|
|
while ((match = exp.exec(html))) {
|
|
if (match[1].includes('Research.js')) {
|
|
componentUrl = match[1];
|
|
break;
|
|
}
|
|
}
|
|
const component = await fixture.readFile(componentUrl);
|
|
const jsxRuntime = component.imports.filter((i) => i.specifier.includes('jsx-runtime'));
|
|
|
|
// test 1: react/jsx-runtime is used for the component
|
|
expect(jsxRuntime).to.be.ok;
|
|
});
|
|
});
|
|
});
|