import rss from '../dist/index.js'; import chai from 'chai'; import chaiPromises from 'chai-as-promised'; import chaiXml from 'chai-xml'; chai.use(chaiPromises); chai.use(chaiXml); const title = 'My RSS feed'; const description = 'This sure is a nice RSS feed'; const site = 'https://example.com'; const phpFeedItem = { link: '/php', title: 'Remember PHP?', pubDate: '1994-05-03', description: 'PHP is a general-purpose scripting language geared toward web development. It was originally created by Danish-Canadian programmer Rasmus Lerdorf in 1994.', }; const phpFeedItemWithContent = { ...phpFeedItem, content: `

${phpFeedItem.title}

${phpFeedItem.description}

`, }; const phpFeedItemWithCustomData = { ...phpFeedItem, customData: '', }; const web1FeedItem = { // Should support empty string as a URL (possible for homepage route) link: '', title: 'Web 1.0', pubDate: '1997-05-03', description: 'Web 1.0 is the term used for the earliest version of the Internet as it emerged from its origins with Defense Advanced Research Projects Agency (DARPA) and became, for the first time, a global network representing the future of digital communications.', }; const web1FeedItemWithContent = { ...web1FeedItem, content: `

${web1FeedItem.title}

${web1FeedItem.description}

`, }; // note: I spent 30 minutes looking for a nice node-based snapshot tool // ...and I gave up. Enjoy big strings! // prettier-ignore const validXmlResult = `<![CDATA[${title}]]>${site}/<![CDATA[${phpFeedItem.title}]]>${site}${phpFeedItem.link}/${site}${phpFeedItem.link}/${new Date(phpFeedItem.pubDate).toUTCString()}<![CDATA[${web1FeedItem.title}]]>${site}${web1FeedItem.link}/${site}${web1FeedItem.link}/${new Date(web1FeedItem.pubDate).toUTCString()}`; // prettier-ignore const validXmlWithContentResult = `<![CDATA[${title}]]>${site}/<![CDATA[${phpFeedItemWithContent.title}]]>${site}${phpFeedItemWithContent.link}/${site}${phpFeedItemWithContent.link}/${new Date(phpFeedItemWithContent.pubDate).toUTCString()}<![CDATA[${web1FeedItemWithContent.title}]]>${site}${web1FeedItemWithContent.link}/${site}${web1FeedItemWithContent.link}/${new Date(web1FeedItemWithContent.pubDate).toUTCString()}`; // prettier-ignore const validXmlWithCustomDataResult = `<![CDATA[${title}]]>${site}/<![CDATA[${phpFeedItemWithCustomData.title}]]>${site}${phpFeedItemWithCustomData.link}/${site}${phpFeedItemWithCustomData.link}/${new Date(phpFeedItemWithCustomData.pubDate).toUTCString()}${phpFeedItemWithCustomData.customData}<![CDATA[${web1FeedItemWithContent.title}]]>${site}${web1FeedItemWithContent.link}/${site}${web1FeedItemWithContent.link}/${new Date(web1FeedItemWithContent.pubDate).toUTCString()}`; describe('rss', () => { it('should generate on valid RSSFeedItem array', async () => { const { body } = await rss({ title, description, items: [phpFeedItem, web1FeedItem], site, }); chai.expect(body).xml.to.equal(validXmlResult); }); it('should generate on valid RSSFeedItem array with HTML content included', async () => { const { body } = await rss({ title, description, items: [phpFeedItemWithContent, web1FeedItemWithContent], site, }); chai.expect(body).xml.to.equal(validXmlWithContentResult); }); it('should generate on valid RSSFeedItem array with custom data included', async () => { const { body } = await rss({ xmlns: { dc: 'http://purl.org/dc/elements/1.1/', }, title, description, items: [phpFeedItemWithCustomData, web1FeedItemWithContent], site, }); chai.expect(body).xml.to.equal(validXmlWithCustomDataResult); }); describe('glob result', () => { it('should generate on valid result', async () => { const globResult = { './posts/php.md': () => new Promise((resolve) => resolve({ url: phpFeedItem.link, frontmatter: { title: phpFeedItem.title, pubDate: phpFeedItem.pubDate, description: phpFeedItem.description, }, }) ), './posts/nested/web1.md': () => new Promise((resolve) => resolve({ url: web1FeedItem.link, frontmatter: { title: web1FeedItem.title, pubDate: web1FeedItem.pubDate, description: web1FeedItem.description, }, }) ), }; const { body } = await rss({ title, description, items: globResult, site, }); chai.expect(body).xml.to.equal(validXmlResult); }); it('should fail on missing "title" key', () => { const globResult = { './posts/php.md': () => new Promise((resolve) => resolve({ url: phpFeedItem.link, frontmatter: { pubDate: phpFeedItem.pubDate, description: phpFeedItem.description, }, }) ), }; return chai.expect( rss({ title, description, items: globResult, site, }) ).to.be.rejected; }); it('should fail on missing "pubDate" key', () => { const globResult = { './posts/php.md': () => new Promise((resolve) => resolve({ url: phpFeedItem.link, frontmatter: { title: phpFeedItem.title, description: phpFeedItem.description, }, }) ), }; return chai.expect( rss({ title, description, items: globResult, site, }) ).to.be.rejected; }); }); describe('errors', () => { it('should provide a error message when a "site" option is missing', async () => { try { await rss({ title, description, items: [phpFeedItem, web1FeedItem], }); chai.expect(false).to.equal(true, 'Should have errored'); } catch (err) { chai .expect(err.message) .to.contain('[RSS] the "site" option is required, but no value was given.'); } }); it('should provide a good error message when a link is not provided', async () => { try { await rss({ title: 'Your Website Title', description: 'Your Website Description', site: 'https://astro-demo', items: [ { pubDate: new Date(), title: 'Some title', slug: 'foo', }, ], }); chai.expect(false).to.equal(true, 'Should have errored'); } catch (err) { chai.expect(err.message).to.contain('Required field [link] is missing'); } }); it('should provide a good error message when passing glob result form outside pages/', async () => { const globResult = { './posts/php.md': () => new Promise((resolve) => resolve({ // "undefined" when outside pages/ url: undefined, frontmatter: { title: phpFeedItem.title, pubDate: phpFeedItem.pubDate, description: phpFeedItem.description, }, }) ), './posts/nested/web1.md': () => new Promise((resolve) => resolve({ url: undefined, frontmatter: { title: web1FeedItem.title, pubDate: web1FeedItem.pubDate, description: web1FeedItem.description, }, }) ), }; try { await rss({ title: 'Your Website Title', description: 'Your Website Description', site: 'https://astro-demo', items: globResult, }); chai.expect(false).to.equal(true, 'Should have errored'); } catch (err) { chai .expect(err.message) .to.contain( 'you can only glob ".md" (or alternative extensions for markdown files like ".markdown") files within /pages' ); } }); }); });