RSS: Fix string validation of pubDate (#7066)
This commit is contained in:
parent
d68e736545
commit
a37e67b520
3 changed files with 19 additions and 1 deletions
5
.changeset/eleven-hotels-roll.md
Normal file
5
.changeset/eleven-hotels-roll.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@astrojs/rss': patch
|
||||
---
|
||||
|
||||
Fix pubDate schema tranformation
|
|
@ -2,7 +2,7 @@ import { z } from 'astro/zod';
|
|||
|
||||
export const rssSchema = z.object({
|
||||
title: z.string(),
|
||||
pubDate: z.union([z.string(), z.number(), z.date()]).transform((value) => new Date(value)),
|
||||
pubDate: z.union([z.string(), z.number(), z.date()]).transform((value) => new Date(value)).refine((value) => !isNaN(value.getTime())),
|
||||
description: z.string().optional(),
|
||||
customData: z.string().optional(),
|
||||
draft: z.boolean().optional(),
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import rss from '../dist/index.js';
|
||||
import { rssSchema } from '../dist/schema.js';
|
||||
import chai from 'chai';
|
||||
import chaiPromises from 'chai-as-promised';
|
||||
import chaiXml from 'chai-xml';
|
||||
|
@ -195,4 +196,16 @@ describe('rss', () => {
|
|||
|
||||
chai.expect(body).xml.to.equal(validXmlResult);
|
||||
});
|
||||
|
||||
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');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue