0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/sitemap/test/base-path.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1 KiB
JavaScript
Raw Normal View History

import { loadFixture, readXML } from './test-utils.js';
import { expect } from 'chai';
describe('URLs with base path', () => {
2024-01-31 03:32:27 -05:00
/** @type {import('./test-utils').Fixture} */
let fixture;
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-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;
expect(urls[0].loc[0]).to.equal('http://example.com/base/one/');
2024-01-31 03:32:27 -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-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;
expect(urls[0].loc[0]).to.equal('http://example.com/base/123/');
2024-01-31 03:32:27 -05:00
});
});
});