forked from iptv-org/epg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tv.yettel.hu.test.js
80 lines (75 loc) · 2.48 KB
/
tv.yettel.hu.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const { parser, url } = require('./tv.yettel.hu.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('2022-06-17', 'YYYY-MM-DD').startOf('d')
const channel = {
site_id: 'LCH1',
xmltv_id: 'M1.hu'
}
it('can generate valid url', () => {
expect(url({ channel, date })).toBe(
'https://dev.mytvback.com/api/19/default/hu-HU/schedules?livechannelpids=LCH1&includeImages=cover%3A100%3A144&filterAvailability=false&startTime=1655424000&endTime=1655510400'
)
})
it('can parse response', () => {
const content = `{
"Content": [
{
"AgeRatingPid": "",
"catchup_days": "0",
"AvailableUntil": 1655445600,
"Description": "",
"End": 1655445600,
"LiveChannelPid": "LCH1",
"ch_id": "1",
"LiveProgramPid": "LEP3906574",
"pr_id": "3906574",
"se_id": "13986",
"LiveSeriesPid": "LSE13986",
"Pid": "LSC17202373",
"id": "17202373",
"Rating": 0,
"RatingTotalVotes": 0,
"ShortDescription": "A Ma reggel az MTVA saját gyártású, minden hétköznap jelentkező reggeli politikai és közéleti témákkal foglalkozó műsora.",
"Start": 1655443980,
"Title": "Ma reggel",
"Year": 2022,
"GenrePids": [
"GEN184"
],
"ge_id": "184",
"IsCatchup": "1",
"ChannelIsCatchup": "0",
"Images": {
"Cover": [
{
"Url": "https://static.mytvback.com/userfiles/c/0/c01d48a36b913a7afb0dcb5edba33849_thum_100x144.jpg"
}
]
}
}]}`
const result = parser({ content }).map(p => {
p.start = p.start.toJSON()
p.stop = p.stop.toJSON()
return p
})
expect(result).toMatchObject([
{
start: '2022-06-17T05:33:00.000Z',
stop: '2022-06-17T06:00:00.000Z',
title: 'Ma reggel',
description:
'A Ma reggel az MTVA saját gyártású, minden hétköznap jelentkező reggeli politikai és közéleti témákkal foglalkozó műsora.',
icon: 'https://static.mytvback.com/userfiles/c/0/c01d48a36b913a7afb0dcb5edba33849_thum_100x144.jpg'
}
])
})
it('can handle empty guide', () => {
const result = parser({
content: '{"Content":[],"HttpStatusCode":200,"StatusCode":0,"StatusMessage":"OK","Severity":1}'
})
expect(result).toMatchObject([])
})