// npx epg-grabber --config=sites/kvf.fo/kvf.fo.config.js --channels=sites/kvf.fo/kvf.fo_fo.channels.xml --output=.gh-pages/guides/fo/kvf.fo.epg.xml --days=2 const { parser, url, logo } = require('./kvf.fo.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-21', 'YYYY-MM-DD').startOf('d') const channel = { site_id: '#', xmltv_id: 'KVFSjonvarp.fo', logo: 'https://kvf.fo/sites/all/themes/bootstrap_subtheme/logo.png' } it('can generate valid url', () => { expect(url({ date })).toBe('https://kvf.fo/nskra/uv?date=2021-11-21') }) it('can get logo url', () => { expect(logo({ channel })).toBe('https://kvf.fo/sites/all/themes/bootstrap_subtheme/logo.png') }) it('can parse response', () => { const content = `
` const result = parser({ content, date }).map(p => { p.start = p.start.toJSON() p.stop = p.stop.toJSON() return p }) expect(result).toMatchObject([ { start: '2021-11-21T00:00:00.000Z', stop: '2021-11-21T02:00:00.000Z', title: `Plátubarrin` }, { start: '2021-11-21T23:00:00.000Z', stop: '2021-11-22T00:00:00.000Z', title: `Tónleikur` }, { start: '2021-11-22T00:00:00.000Z', stop: '2021-11-22T01:00:00.000Z', title: `Náttarrásin` } ]) }) it('can handle empty guide', () => { const result = parser({ date, channel, content: ` ` }) expect(result).toMatchObject([]) })