Files
epg/sites/kvf.fo/kvf.fo.test.js

45 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-01-05 15:28:24 +03:00
// npx epg-grabber --config=sites/kvf.fo/kvf.fo.config.js --channels=sites/kvf.fo/kvf.fo.channels.xml --output=guide.xml --days=2
2021-11-21 02:23:50 +03:00
2022-02-01 05:08:32 +03:00
const { parser, url } = require('./kvf.fo.config.js')
2022-07-01 06:09:16 +03:00
const fs = require('fs')
const path = require('path')
2021-11-21 02:23:50 +03:00
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: '#',
2022-02-01 05:08:32 +03:00
xmltv_id: 'KVFSjonvarp.fo'
2021-11-21 02:23:50 +03:00
}
it('can generate valid url', () => {
2022-07-01 06:09:16 +03:00
expect(url({ date })).toBe('https://kvf.fo/nskra/sv?date=2021-11-21')
2021-11-21 02:23:50 +03:00
})
it('can parse response', () => {
2022-07-01 06:09:16 +03:00
const content = fs.readFileSync(path.resolve(__dirname, './__data__/example.html'))
2021-11-21 02:23:50 +03:00
const result = parser({ content, date }).map(p => {
p.start = p.start.toJSON()
p.stop = p.stop.toJSON()
return p
})
2022-07-01 06:09:16 +03:00
expect(result[2]).toMatchObject({
start: '2021-11-21T18:05:00.000Z',
stop: '2021-11-21T18:30:00.000Z',
title: `Letibygd 13`
})
2021-11-21 02:23:50 +03:00
})
it('can handle empty guide', () => {
const result = parser({
date,
channel,
content: `<!DOCTYPE html><html> <head></head> <body></body></html>`
})
expect(result).toMatchObject([])
})