forked from iptv-org/epg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
telsu.fi.test.js
44 lines (39 loc) · 1.46 KB
/
telsu.fi.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const { parser, url } = require('./telsu.fi.config.js')
const fs = require('fs')
const path = require('path')
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('2022-10-29', 'YYYY-MM-DD').startOf('d')
const channel = {
site_id: 'yle1',
xmltv_id: 'YleTV1.fi'
}
it('can generate valid url', () => {
expect(url({ date, channel })).toBe('https://www.telsu.fi/20221029/yle1')
})
it('can parse response', () => {
const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html'))
const results = parser({ content, date }).map(p => {
p.start = p.start.toJSON()
p.stop = p.stop.toJSON()
return p
})
expect(results[0]).toMatchObject({
start: '2022-10-29T04:00:00.000Z',
stop: '2022-10-29T04:28:00.000Z',
title: 'Antiikkikaksintaistelu',
description:
'Kausi 6, osa 5/12. Antiikkikaksintaistelu jatkuu Løkkenissä. Uusi taistelupari Rikke Fog ja Lasse Franck saavat kumpikin 10 000 kruunua ja viisi tuntia aikaa ostaa alueelta hyvää tavaraa halvalla.',
icon: 'https://www.telsu.fi/s/antiikkikaksintaistelu_11713730.jpg'
})
})
it('can handle empty guide', () => {
const result = parser({
content: fs.readFileSync(path.resolve(__dirname, '__data__/no_content.html')),
date
})
expect(result).toMatchObject([])
})