2024-01-17 08:33:23 -05:00
|
|
|
import { loadFixture, readXML } from './test-utils.js';
|
2024-01-31 04:47:21 -05:00
|
|
|
import { expect } from 'chai';
|
2024-01-17 08:33:23 -05:00
|
|
|
|
|
|
|
describe('URLs with base path', () => {
|
2024-01-31 03:32:27 -05:00
|
|
|
/** @type {import('./test-utils').Fixture} */
|
|
|
|
let fixture;
|
2024-01-17 08:33:23 -05:00
|
|
|
|
2024-01-31 03:32:27 -05:00
|
|
|
describe('using node adapter', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/ssr/',
|
|
|
|
base: '/base',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
2024-01-17 08:33:23 -05:00
|
|
|
|
2024-01-31 03:32:27 -05:00
|
|
|
it('Base path is concatenated correctly', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/client/sitemap-0.xml'));
|
|
|
|
const urls = data.urlset.url;
|
2024-01-31 04:47:21 -05:00
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/base/one/');
|
2024-01-31 03:32:27 -05:00
|
|
|
});
|
|
|
|
});
|
2024-01-17 08:33:23 -05:00
|
|
|
|
2024-01-31 03:32:27 -05:00
|
|
|
describe('static', () => {
|
|
|
|
before(async () => {
|
|
|
|
fixture = await loadFixture({
|
|
|
|
root: './fixtures/static/',
|
|
|
|
base: '/base',
|
|
|
|
});
|
|
|
|
await fixture.build();
|
|
|
|
});
|
2024-01-17 08:33:23 -05:00
|
|
|
|
2024-01-31 03:32:27 -05:00
|
|
|
it('Base path is concatenated correctly', async () => {
|
|
|
|
const data = await readXML(fixture.readFile('/sitemap-0.xml'));
|
|
|
|
const urls = data.urlset.url;
|
2024-01-31 04:47:21 -05:00
|
|
|
expect(urls[0].loc[0]).to.equal('http://example.com/base/123/');
|
2024-01-31 03:32:27 -05:00
|
|
|
});
|
|
|
|
});
|
2024-01-17 08:33:23 -05:00
|
|
|
});
|