2023-08-23 13:09:11 +00:00
|
|
|
import rss, { getRssString } from '../dist/index.js';
|
2023-05-15 06:10:32 +00:00
|
|
|
import { rssSchema } from '../dist/schema.js';
|
2022-05-03 22:26:13 +00:00
|
|
|
import chai from 'chai';
|
|
|
|
import chaiPromises from 'chai-as-promised';
|
2022-12-08 13:10:36 +00:00
|
|
|
import chaiXml from 'chai-xml';
|
2023-01-19 16:24:55 +00:00
|
|
|
import {
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
site,
|
|
|
|
phpFeedItem,
|
|
|
|
phpFeedItemWithContent,
|
|
|
|
phpFeedItemWithCustomData,
|
|
|
|
web1FeedItem,
|
|
|
|
web1FeedItemWithContent,
|
2023-04-26 12:58:53 +00:00
|
|
|
web1FeedItemWithAllData,
|
2023-01-19 16:24:55 +00:00
|
|
|
} from './test-utils.js';
|
2022-05-03 22:26:13 +00:00
|
|
|
|
|
|
|
chai.use(chaiPromises);
|
2022-12-08 13:10:36 +00:00
|
|
|
chai.use(chaiXml);
|
2022-05-03 22:26:13 +00:00
|
|
|
|
|
|
|
// note: I spent 30 minutes looking for a nice node-based snapshot tool
|
|
|
|
// ...and I gave up. Enjoy big strings!
|
2022-12-06 23:19:55 +00:00
|
|
|
// prettier-ignore
|
2023-04-26 12:58:53 +00:00
|
|
|
const validXmlResult = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title><![CDATA[${title}]]></title><description><![CDATA[${description}]]></description><link>${site}/</link><item><title><![CDATA[${phpFeedItem.title}]]></title><link>${site}${phpFeedItem.link}/</link><guid isPermaLink="true">${site}${phpFeedItem.link}/</guid><description><![CDATA[${phpFeedItem.description}]]></description><pubDate>${new Date(phpFeedItem.pubDate).toUTCString()}</pubDate></item><item><title><![CDATA[${web1FeedItem.title}]]></title><link>${site}${web1FeedItem.link}/</link><guid isPermaLink="true">${site}${web1FeedItem.link}/</guid><description><![CDATA[${web1FeedItem.description}]]></description><pubDate>${new Date(web1FeedItem.pubDate).toUTCString()}</pubDate></item></channel></rss>`;
|
2022-12-06 23:19:55 +00:00
|
|
|
// prettier-ignore
|
2023-04-26 12:58:53 +00:00
|
|
|
const validXmlWithoutWeb1FeedResult = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title><![CDATA[${title}]]></title><description><![CDATA[${description}]]></description><link>${site}/</link><item><title><![CDATA[${phpFeedItem.title}]]></title><link>${site}${phpFeedItem.link}/</link><guid isPermaLink="true">${site}${phpFeedItem.link}/</guid><description><![CDATA[${phpFeedItem.description}]]></description><pubDate>${new Date(phpFeedItem.pubDate).toUTCString()}</pubDate></item></channel></rss>`;
|
2022-12-27 15:50:11 +00:00
|
|
|
// prettier-ignore
|
2023-04-26 12:58:53 +00:00
|
|
|
const validXmlWithContentResult = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title><![CDATA[${title}]]></title><description><![CDATA[${description}]]></description><link>${site}/</link><item><title><![CDATA[${phpFeedItemWithContent.title}]]></title><link>${site}${phpFeedItemWithContent.link}/</link><guid isPermaLink="true">${site}${phpFeedItemWithContent.link}/</guid><description><![CDATA[${phpFeedItemWithContent.description}]]></description><pubDate>${new Date(phpFeedItemWithContent.pubDate).toUTCString()}</pubDate><content:encoded><![CDATA[${phpFeedItemWithContent.content}]]></content:encoded></item><item><title><![CDATA[${web1FeedItemWithContent.title}]]></title><link>${site}${web1FeedItemWithContent.link}/</link><guid isPermaLink="true">${site}${web1FeedItemWithContent.link}/</guid><description><![CDATA[${web1FeedItemWithContent.description}]]></description><pubDate>${new Date(web1FeedItemWithContent.pubDate).toUTCString()}</pubDate><content:encoded><![CDATA[${web1FeedItemWithContent.content}]]></content:encoded></item></channel></rss>`;
|
2022-12-13 13:45:35 +00:00
|
|
|
// prettier-ignore
|
2023-04-26 12:58:53 +00:00
|
|
|
const validXmlResultWithAllData = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title><![CDATA[${title}]]></title><description><![CDATA[${description}]]></description><link>${site}/</link><item><title><![CDATA[${phpFeedItem.title}]]></title><link>${site}${phpFeedItem.link}/</link><guid isPermaLink="true">${site}${phpFeedItem.link}/</guid><description><![CDATA[${phpFeedItem.description}]]></description><pubDate>${new Date(phpFeedItem.pubDate).toUTCString()}</pubDate></item><item><title><![CDATA[${web1FeedItemWithAllData.title}]]></title><link>${site}${web1FeedItemWithAllData.link}/</link><guid isPermaLink="true">${site}${web1FeedItemWithAllData.link}/</guid><description><![CDATA[${web1FeedItemWithAllData.description}]]></description><pubDate>${new Date(web1FeedItemWithAllData.pubDate).toUTCString()}</pubDate><category>${web1FeedItemWithAllData.categories[0]}</category><category>${web1FeedItemWithAllData.categories[1]}</category><author>${web1FeedItemWithAllData.author}</author><comments>${web1FeedItemWithAllData.commentsUrl}</comments><source url="${web1FeedItemWithAllData.source.url}">${web1FeedItemWithAllData.source.title}</source><enclosure url="${site}${web1FeedItemWithAllData.enclosure.url}" length="${web1FeedItemWithAllData.enclosure.length}" type="${web1FeedItemWithAllData.enclosure.type}"/></item></channel></rss>`;
|
|
|
|
// prettier-ignore
|
|
|
|
const validXmlWithCustomDataResult = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title><![CDATA[${title}]]></title><description><![CDATA[${description}]]></description><link>${site}/</link><item><title><![CDATA[${phpFeedItemWithCustomData.title}]]></title><link>${site}${phpFeedItemWithCustomData.link}/</link><guid isPermaLink="true">${site}${phpFeedItemWithCustomData.link}/</guid><description><![CDATA[${phpFeedItemWithCustomData.description}]]></description><pubDate>${new Date(phpFeedItemWithCustomData.pubDate).toUTCString()}</pubDate>${phpFeedItemWithCustomData.customData}</item><item><title><![CDATA[${web1FeedItemWithContent.title}]]></title><link>${site}${web1FeedItemWithContent.link}/</link><guid isPermaLink="true">${site}${web1FeedItemWithContent.link}/</guid><description><![CDATA[${web1FeedItemWithContent.description}]]></description><pubDate>${new Date(web1FeedItemWithContent.pubDate).toUTCString()}</pubDate><content:encoded><![CDATA[${web1FeedItemWithContent.content}]]></content:encoded></item></channel></rss>`;
|
2022-12-14 13:39:48 +00:00
|
|
|
// prettier-ignore
|
|
|
|
const validXmlWithStylesheet = `<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="/feedstylesheet.css"?><rss version="2.0"><channel><title><![CDATA[${title}]]></title><description><![CDATA[${description}]]></description><link>${site}/</link></channel></rss>`;
|
|
|
|
// prettier-ignore
|
|
|
|
const validXmlWithXSLStylesheet = `<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="/feedstylesheet.xsl" type="text/xsl"?><rss version="2.0"><channel><title><![CDATA[${title}]]></title><description><![CDATA[${description}]]></description><link>${site}/</link></channel></rss>`;
|
2022-05-03 22:26:13 +00:00
|
|
|
|
|
|
|
describe('rss', () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
it('should return a response', async () => {
|
|
|
|
const response = await rss({
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItem, web1FeedItem],
|
|
|
|
site,
|
|
|
|
});
|
|
|
|
|
|
|
|
const str = await response.text();
|
|
|
|
chai.expect(str).xml.to.equal(validXmlResult);
|
|
|
|
|
|
|
|
const contentType = response.headers.get('Content-Type');
|
|
|
|
chai.expect(contentType).to.equal('application/xml');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be the same string as getRssString', async () => {
|
|
|
|
const options = {
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItem, web1FeedItem],
|
|
|
|
site,
|
|
|
|
};
|
|
|
|
|
|
|
|
const response = await rss(options);
|
|
|
|
const str1 = await response.text();
|
|
|
|
const str2 = await getRssString(options);
|
|
|
|
|
|
|
|
chai.expect(str1).to.equal(str2);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('getRssString', () => {
|
2022-05-03 22:26:13 +00:00
|
|
|
it('should generate on valid RSSFeedItem array', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2022-05-03 22:26:13 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItem, web1FeedItem],
|
2022-05-05 22:03:25 +00:00
|
|
|
site,
|
2022-05-03 22:26:13 +00:00
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlResult);
|
2022-05-03 22:27:01 +00:00
|
|
|
});
|
2022-05-03 22:26:13 +00:00
|
|
|
|
2022-12-06 23:19:55 +00:00
|
|
|
it('should generate on valid RSSFeedItem array with HTML content included', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2022-12-06 23:19:55 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItemWithContent, web1FeedItemWithContent],
|
|
|
|
site,
|
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlWithContentResult);
|
2022-12-06 23:19:55 +00:00
|
|
|
});
|
|
|
|
|
2023-04-26 12:58:53 +00:00
|
|
|
it('should generate on valid RSSFeedItem array with all RSS content included', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2023-04-26 12:58:53 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItem, web1FeedItemWithAllData],
|
|
|
|
site,
|
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlResultWithAllData);
|
2023-04-26 12:58:53 +00:00
|
|
|
});
|
|
|
|
|
2022-12-13 13:45:35 +00:00
|
|
|
it('should generate on valid RSSFeedItem array with custom data included', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2022-12-13 13:45:35 +00:00
|
|
|
xmlns: {
|
|
|
|
dc: 'http://purl.org/dc/elements/1.1/',
|
|
|
|
},
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItemWithCustomData, web1FeedItemWithContent],
|
|
|
|
site,
|
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlWithCustomDataResult);
|
2022-12-13 13:45:35 +00:00
|
|
|
});
|
|
|
|
|
2022-12-14 13:39:48 +00:00
|
|
|
it('should include xml-stylesheet instruction when stylesheet is defined', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2022-12-14 13:39:48 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [],
|
|
|
|
site,
|
|
|
|
stylesheet: '/feedstylesheet.css',
|
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlWithStylesheet);
|
2022-12-14 13:39:48 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should include xml-stylesheet instruction with xsl type when stylesheet is set to xsl file', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2022-12-14 13:39:48 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [],
|
|
|
|
site,
|
|
|
|
stylesheet: '/feedstylesheet.xsl',
|
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlWithXSLStylesheet);
|
2022-12-14 13:39:48 +00:00
|
|
|
});
|
|
|
|
|
2023-03-13 21:34:23 +00:00
|
|
|
it('should preserve self-closing tags on `customData`', async () => {
|
|
|
|
const customData =
|
|
|
|
'<atom:link href="https://example.com/feed.xml" rel="self" type="application/rss+xml"/>';
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2023-03-13 21:34:23 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [],
|
|
|
|
site,
|
|
|
|
xmlns: {
|
|
|
|
atom: 'http://www.w3.org/2005/Atom',
|
|
|
|
},
|
|
|
|
customData,
|
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).to.contain(customData);
|
2023-03-13 21:34:23 +00:00
|
|
|
});
|
|
|
|
|
2023-01-19 16:24:55 +00:00
|
|
|
it('should filter out entries marked as `draft`', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2023-01-19 16:24:55 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItem, { ...web1FeedItem, draft: true }],
|
|
|
|
site,
|
2022-05-03 22:26:13 +00:00
|
|
|
});
|
2022-12-27 15:50:11 +00:00
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlWithoutWeb1FeedResult);
|
2023-01-19 16:24:55 +00:00
|
|
|
});
|
2022-12-27 15:50:11 +00:00
|
|
|
|
2023-01-19 16:24:55 +00:00
|
|
|
it('should respect drafts option', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2023-01-19 16:24:55 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItem, { ...web1FeedItem, draft: true }],
|
|
|
|
site,
|
|
|
|
drafts: true,
|
2022-12-27 15:50:11 +00:00
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlResult);
|
2022-05-03 22:26:13 +00:00
|
|
|
});
|
2022-07-13 20:37:17 +00:00
|
|
|
|
2023-03-09 07:57:03 +00:00
|
|
|
it('should not append trailing slash to URLs with the given option', async () => {
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2023-03-09 07:57:03 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: [phpFeedItem, { ...web1FeedItem, draft: true }],
|
|
|
|
site,
|
|
|
|
drafts: true,
|
|
|
|
trailingSlash: false,
|
|
|
|
});
|
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.contain('https://example.com/<');
|
|
|
|
chai.expect(str).xml.to.contain('https://example.com/php<');
|
2023-03-09 07:57:03 +00:00
|
|
|
});
|
|
|
|
|
2023-01-19 16:24:55 +00:00
|
|
|
it('Deprecated import.meta.glob mapping still works', async () => {
|
|
|
|
const globResult = {
|
|
|
|
'./posts/php.md': () =>
|
|
|
|
new Promise((resolve) =>
|
|
|
|
resolve({
|
|
|
|
url: phpFeedItem.link,
|
|
|
|
frontmatter: {
|
|
|
|
title: phpFeedItem.title,
|
|
|
|
pubDate: phpFeedItem.pubDate,
|
|
|
|
description: phpFeedItem.description,
|
2022-07-13 20:39:29 +00:00
|
|
|
},
|
2023-01-19 16:24:55 +00:00
|
|
|
})
|
|
|
|
),
|
|
|
|
'./posts/nested/web1.md': () =>
|
|
|
|
new Promise((resolve) =>
|
|
|
|
resolve({
|
|
|
|
url: web1FeedItem.link,
|
|
|
|
frontmatter: {
|
|
|
|
title: web1FeedItem.title,
|
|
|
|
pubDate: web1FeedItem.pubDate,
|
|
|
|
description: web1FeedItem.description,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
),
|
|
|
|
};
|
2022-09-12 19:05:57 +00:00
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
const str = await getRssString({
|
2023-01-19 16:24:55 +00:00
|
|
|
title,
|
|
|
|
description,
|
|
|
|
items: globResult,
|
|
|
|
site,
|
2022-09-12 19:05:57 +00:00
|
|
|
});
|
2023-01-19 16:24:55 +00:00
|
|
|
|
2023-08-23 13:09:11 +00:00
|
|
|
chai.expect(str).xml.to.equal(validXmlResult);
|
2022-07-13 20:39:29 +00:00
|
|
|
});
|
2023-05-15 06:10:32 +00:00
|
|
|
|
2023-05-15 06:12:35 +00:00
|
|
|
it('should fail when an invalid date string is provided', async () => {
|
|
|
|
const res = rssSchema.safeParse({
|
|
|
|
title: phpFeedItem.title,
|
|
|
|
pubDate: 'invalid date',
|
|
|
|
description: phpFeedItem.description,
|
|
|
|
link: phpFeedItem.link,
|
|
|
|
});
|
|
|
|
|
|
|
|
chai.expect(res.success).to.be.false;
|
|
|
|
chai.expect(res.error.issues[0].path[0]).to.equal('pubDate');
|
|
|
|
});
|
2022-05-03 22:27:01 +00:00
|
|
|
});
|