astro/packages/astro/test/route-manifest.test.js
Erika f14e48098a
nit: use node: prefix everywhere (#7692)
* nit: use `node:` prefix everywhere

* nit: fs/promises too

* test: workaround issue in node builtin detection
2023-07-18 02:17:59 +02:00

241 lines
6.4 KiB
JavaScript

// TODO: unskip this test
// import { expect } from 'chai';
// import { fileURLToPath } from 'node:url';
// import { createRouteManifest } from '../dist/core/routing/index.js';
// import { validateConfig } from '../dist/core/config.js';
// const cwd = new URL('./fixtures/route-manifest/', import.meta.url);
// const create = async (dir, trailingSlash) => {
// return createRouteManifest({
// config: await validateConfig({
// root: cwd.pathname,
// trailingSlash,
// }),
// cwd: fileURLToPath(cwd),
// });
// };
// function cleanRoutes(routes) {
// return routes.map((r) => {
// delete r.generate;
// return r;
// });
// }
// describe('route manifest', () => {
// it('creates routes with trailingSlashes = always', async () => {
// const { routes } = await create('basic', 'always');
// expect(cleanRoutes(routes)).to.deep.equal([
// {
// type: 'page',
// pattern: /^\/$/,
// params: [],
// component: 'basic/index.astro',
// pathname: '/',
// },
// {
// type: 'page',
// pattern: /^\/about\/$/,
// params: [],
// component: 'basic/about.astro',
// pathname: '/about',
// },
// {
// type: 'page',
// pattern: /^\/blog\/$/,
// params: [],
// component: 'basic/blog/index.astro',
// pathname: '/blog',
// },
// {
// type: 'page',
// pattern: /^\/blog\/([^/]+?)\/$/,
// params: ['slug'],
// component: 'basic/blog/[slug].astro',
// pathname: undefined,
// },
// ]);
// });
// it('creates routes with trailingSlashes = never', async () => {
// const { routes } = await create('basic', 'never');
// expect(cleanRoutes(routes)).to.deep.equal([
// {
// type: 'page',
// pattern: /^\/$/,
// params: [],
// component: 'basic/index.astro',
// pathname: '/',
// },
// {
// type: 'page',
// pattern: /^\/about$/,
// params: [],
// component: 'basic/about.astro',
// pathname: '/about',
// },
// {
// type: 'page',
// pattern: /^\/blog$/,
// params: [],
// component: 'basic/blog/index.astro',
// pathname: '/blog',
// },
// {
// type: 'page',
// pattern: /^\/blog\/([^/]+?)$/,
// params: ['slug'],
// component: 'basic/blog/[slug].astro',
// pathname: undefined,
// },
// ]);
// });
// it('creates routes with trailingSlashes = ignore', async () => {
// const { routes } = await create('basic', 'ignore');
// expect(cleanRoutes(routes)).to.deep.equal([
// {
// type: 'page',
// pattern: /^\/$/,
// params: [],
// component: 'basic/index.astro',
// pathname: '/',
// },
// {
// type: 'page',
// pattern: /^\/about\/?$/,
// params: [],
// component: 'basic/about.astro',
// pathname: '/about',
// },
// {
// type: 'page',
// pattern: /^\/blog\/?$/,
// params: [],
// component: 'basic/blog/index.astro',
// pathname: '/blog',
// },
// {
// type: 'page',
// pattern: /^\/blog\/([^/]+?)\/?$/,
// params: ['slug'],
// component: 'basic/blog/[slug].astro',
// pathname: undefined,
// },
// ]);
// });
// it('encodes invalid characters', async () => {
// const { routes } = await create('encoding', 'always');
// // had to remove ? and " because windows
// // const quote = 'encoding/".astro';
// const hash = 'encoding/#.astro';
// // const question_mark = 'encoding/?.astro';
// expect(routes.map((p) => p.pattern)).to.deep.equal([
// // /^\/%22$/,
// /^\/%23\/$/,
// // /^\/%3F$/
// ]);
// });
// it('ignores files and directories with leading underscores', async () => {
// const { routes } = await create('hidden-underscore', 'always');
// expect(routes.map((r) => r.component).filter(Boolean)).to.deep.equal(['hidden-underscore/index.astro', 'hidden-underscore/e/f/g/h.astro']);
// });
// it('ignores files and directories with leading dots except .well-known', async () => {
// const { routes } = await create('hidden-dot', 'always');
// expect(routes.map((r) => r.component).filter(Boolean)).to.deep.equal(['hidden-dot/.well-known/dnt-policy.astro']);
// });
// it('fails if dynamic params are not separated', async () => {
// expect(() => await create('invalid-params', 'always')).to.throw('Invalid route invalid-params/[foo][bar].astro — parameters must be separated');
// });
// it('disallows rest parameters inside segments', async () => {
// expect(() => await create('invalid-rest', 'always')).to.throw('Invalid route invalid-rest/foo-[...rest]-bar.astro — rest parameter must be a standalone segment');
// });
// it('ignores things that look like lockfiles', async () => {
// const { routes } = await create('lockfiles', 'always');
// expect(cleanRoutes(routes)).to.deep.equal([
// {
// type: 'page',
// pattern: /^\/foo\/$/,
// params: [],
// component: 'lockfiles/foo.astro',
// pathname: '/foo',
// },
// ]);
// });
// it('ignores invalid route extensions', async () => {
// const { routes } = await create('invalid-extension', 'always');
// expect(cleanRoutes(routes)).to.deep.equal([
// {
// type: 'page',
// pattern: /^\/$/,
// params: [],
// component: 'invalid-extension/index.astro',
// pathname: '/',
// },
// {
// type: 'page',
// pattern: /^\/about\/$/,
// params: [],
// component: 'invalid-extension/about.astro',
// pathname: '/about',
// },
// ]);
// });
// it('allows multiple slugs', async () => {
// const { routes } = await create('multiple-slugs', 'always');
// expect(cleanRoutes(routes)).to.deep.equal([
// {
// type: 'page',
// pattern: /^\/([^/]+?)\.([^/]+?)\/$/,
// component: 'multiple-slugs/[file].[ext].astro',
// params: ['file', 'ext'],
// pathname: undefined,
// },
// ]);
// });
// it('sorts routes correctly', async () => {
// const { routes } = await create('sorting', 'always');
// expect(routes.map((p) => p.component)).to.deep.equal([
// 'sorting/index.astro',
// 'sorting/about.astro',
// 'sorting/post/index.astro',
// 'sorting/post/bar.astro',
// 'sorting/post/foo.astro',
// 'sorting/post/f[xx].astro',
// 'sorting/post/f[yy].astro',
// 'sorting/post/[id].astro',
// 'sorting/[wildcard].astro',
// 'sorting/[...rest]/deep/[...deep_rest]/xyz.astro',
// 'sorting/[...rest]/deep/[...deep_rest]/index.astro',
// 'sorting/[...rest]/deep/index.astro',
// 'sorting/[...rest]/abc.astro',
// 'sorting/[...rest]/index.astro',
// ]);
// });
// });