diff --git a/sites/pbsguam.org/pbsguam.org.test.js b/sites/pbsguam.org/pbsguam.org.test.js new file mode 100644 index 00000000..1a60500d --- /dev/null +++ b/sites/pbsguam.org/pbsguam.org.test.js @@ -0,0 +1,55 @@ +// npx epg-grabber --config=sites/pbsguam.org/pbsguam.org.config.js --channels=sites/pbsguam.org/pbsguam.org_gu.channels.xml --output=.gh-pages/guides/gu/pbsguam.org.epg.xml --days=2 + +const { parser, url, logo } = require('./pbsguam.org.config.js') +const dayjs = require('dayjs') +const utc = require('dayjs/plugin/utc') +const customParseFormat = require('dayjs/plugin/customParseFormat') +dayjs.extend(customParseFormat) +dayjs.extend(utc) + +const date = dayjs.utc('2021-11-25', 'YYYY-MM-DD').startOf('d') +const channel = { + site_id: '#', + xmltv_id: 'KGTF.us', + logo: 'https://pbsguam.org/wp-content/uploads/sites/10/2021/09/pbs-guam-blue.png' +} + +it('can generate valid url', () => { + expect(url).toBe('https://pbsguam.org/calendar/') +}) + +it('can get logo url', () => { + expect(logo({ channel })).toBe( + 'https://pbsguam.org/wp-content/uploads/sites/10/2021/09/pbs-guam-blue.png' + ) +}) + +it('can parse response', () => { + const content = `
` + const result = parser({ date, content }).map(p => { + p.start = p.start.toJSON() + p.stop = p.stop.toJSON() + return p + }) + + expect(result).toMatchObject([ + { + start: '2021-11-25T08:30:00.000Z', + stop: '2021-11-25T09:00:00.000Z', + title: 'Xavier Riddle and the Secret Museum' + } + ]) +}) + +it('can handle empty guide', () => { + const result = parser({ + date, + channel, + content: ` ` + }) + expect(result).toMatchObject([]) +})