From 12a52cd0d0a282c22a7942de44d1eeb907c16f90 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 21 Nov 2021 02:23:50 +0300 Subject: [PATCH] Create kvf.fo.test.js --- sites/kvf.fo/kvf.fo.test.js | 59 +++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 sites/kvf.fo/kvf.fo.test.js diff --git a/sites/kvf.fo/kvf.fo.test.js b/sites/kvf.fo/kvf.fo.test.js new file mode 100644 index 00000000..cef52ccb --- /dev/null +++ b/sites/kvf.fo/kvf.fo.test.js @@ -0,0 +1,59 @@ +// 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 = `
00:00 - 02:00
Plátubarrin
23:00 - 00:00
Tónleikur
00:00 - 01:00
Náttarrásin
` + 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([]) +})