2024-01-31 04:47:33 -05:00
|
|
|
import assert from 'node:assert/strict';
|
|
|
|
import { before, describe, it } from 'node:test';
|
2024-01-17 08:33:23 -05:00
|
|
|
import { loadFixture, readXML } from './test-utils.js';
|
|
|
|
|
|
|
|
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 () => {
|
2024-03-26 09:11:44 -05:00
|
|
|
const [sitemapZero, sitemapIndex] = await Promise.all([
|
|
|
|
readXML(fixture.readFile('/client/sitemap-0.xml')),
|
|
|
|
readXML(fixture.readFile('/client/sitemap-index.xml')),
|
|
|
|
]);
|
|
|
|
assert.equal(sitemapZero.urlset.url[0].loc[0], 'http://example.com/base/one/');
|
|
|
|
assert.equal(
|
|
|
|
sitemapIndex.sitemapindex.sitemap[0].loc[0],
|
|
|
|
'http://example.com/base/sitemap-0.xml'
|
|
|
|
);
|
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 () => {
|
2024-03-26 09:11:44 -05:00
|
|
|
const [sitemapZero, sitemapIndex] = await Promise.all([
|
|
|
|
readXML(fixture.readFile('/sitemap-0.xml')),
|
|
|
|
readXML(fixture.readFile('/sitemap-index.xml')),
|
|
|
|
]);
|
|
|
|
assert.equal(sitemapZero.urlset.url[0].loc[0], 'http://example.com/base/123/');
|
|
|
|
assert.equal(
|
|
|
|
sitemapIndex.sitemapindex.sitemap[0].loc[0],
|
|
|
|
'http://example.com/base/sitemap-0.xml'
|
|
|
|
);
|
2024-01-31 03:32:27 -05:00
|
|
|
});
|
|
|
|
});
|
2024-01-17 08:33:23 -05:00
|
|
|
});
|