2022-08-30 15:45:16 +00:00
|
|
|
import { loadFixture, readXML } from './test-utils.js';
|
|
|
|
import { expect } from 'chai';
|
|
|
|
|
|
|
|
describe('Trailing slash', () => {
|
|
|
|
/** @type {import('./test-utils').Fixture} */
|
|
|
|
let fixture;
|
|
|
|
|
|
|
|
describe('trailingSlash: ignore', () => {
|
|
|
|
describe('build.format: directory', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/trailing-slash/',
|
|
|
|
trailingSlash: 'ignore',
|
|
|
|
build: {
|
2022-08-30 15:47:42 +00:00
|
|
|
format: 'directory',
|
|
|
|
},
|
2022-08-30 15:45:16 +00:00
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
2022-08-30 15:47:42 +00:00
|
|
|
|
2022-08-30 15:45:16 +00:00
|
|
|
it('URLs end with trailing slash', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
|
|
|
const urls = data.urlset.url;
|
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/one/');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('build.format: file', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/trailing-slash/',
|
|
|
|
trailingSlash: 'ignore',
|
|
|
|
build: {
|
2022-08-30 15:47:42 +00:00
|
|
|
format: 'file',
|
|
|
|
},
|
2022-08-30 15:45:16 +00:00
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
2022-08-30 15:47:42 +00:00
|
|
|
|
2022-08-30 15:45:16 +00:00
|
|
|
it('URLs do not end with trailing slash', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
2022-08-30 15:47:42 +00:00
|
|
|
const urls = data.urlset.url;
|
2022-08-30 15:45:16 +00:00
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/one');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('trailingSlash: never', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/trailing-slash/',
|
|
|
|
trailingSlash: 'never',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
2022-08-30 15:47:42 +00:00
|
|
|
|
2022-08-30 15:45:16 +00:00
|
|
|
it('URLs do no end with trailing slash', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
|
|
|
const urls = data.urlset.url;
|
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/one');
|
|
|
|
});
|
2023-04-04 13:13:49 +00:00
|
|
|
describe('with base path', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/trailing-slash/',
|
|
|
|
trailingSlash: 'never',
|
|
|
|
base: '/base',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('URLs do not end with trailing slash', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
|
|
|
const urls = data.urlset.url;
|
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/base/one');
|
|
|
|
});
|
|
|
|
});
|
2022-08-30 15:45:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('trailingSlash: always', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/trailing-slash/',
|
|
|
|
trailingSlash: 'always',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
2022-08-30 15:47:42 +00:00
|
|
|
|
2022-08-30 15:45:16 +00:00
|
|
|
it('URLs end with trailing slash', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
|
|
|
const urls = data.urlset.url;
|
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/one/');
|
|
|
|
});
|
2023-04-04 13:13:49 +00:00
|
|
|
describe('with base path', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/trailing-slash/',
|
|
|
|
trailingSlash: 'always',
|
|
|
|
base: '/base',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('URLs end with trailing slash', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
|
|
|
const urls = data.urlset.url;
|
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/base/one/');
|
|
|
|
});
|
|
|
|
});
|
2022-08-30 15:45:16 +00:00
|
|
|
});
|
|
|
|
});
|