mirror of
https://github.com/iptv-org/epg
synced 2025-12-16 18:37:01 -05:00
74 lines
2.4 KiB
JavaScript
74 lines
2.4 KiB
JavaScript
const { parser, url, channels } = require('./guidatv.sky.it.config.js')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const axios = require('axios')
|
|
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-05-06', 'YYYY-MM-DD').startOf('d')
|
|
const channel = {
|
|
site_id: 'DTH#10458',
|
|
xmltv_id: '20Mediaset.it'
|
|
}
|
|
|
|
it('can generate valid url', () => {
|
|
expect(url({ channel, date })).toBe(
|
|
'https://apid.sky.it/gtv/v1/events?from=2022-05-06T00:00:00Z&to=2022-05-07T00:00:00Z&pageSize=999&pageNum=0&env=DTH&channels=10458'
|
|
)
|
|
})
|
|
|
|
it('can parse response', () => {
|
|
const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json'))
|
|
const result = parser({ content }).map(p => {
|
|
p.start = p.start.toJSON()
|
|
p.stop = p.stop.toJSON()
|
|
return p
|
|
})
|
|
|
|
expect(result).toMatchObject([
|
|
{
|
|
start: '2022-05-06T00:35:40.000Z',
|
|
stop: '2022-05-06T01:15:40.000Z',
|
|
title: 'Distretto di Polizia',
|
|
description:
|
|
"S6 Ep26 La resa dei conti - Fino all'ultimo la sfida tra Ardenzi e Carrano, nemici di vecchia data, riserva clamorosi colpi di scena. E si scopre che non e' tutto come sembrava.",
|
|
season: 6,
|
|
episode: 26,
|
|
image:
|
|
'https://guidatv.sky.it/uuid/77c630aa-4744-44cb-a88e-3e871c6b73d9/cover?md5ChecksumParam=61135b999a63e3d3f4a933b9edeb0c1b',
|
|
category: 'Intrattenimento/Fiction',
|
|
url: 'https://guidatv.sky.it/serie-tv/distretto-di-polizia/stagione-6/episodio-26/77c630aa-4744-44cb-a88e-3e871c6b73d9'
|
|
}
|
|
])
|
|
})
|
|
|
|
it('can handle empty guide', () => {
|
|
const result = parser({
|
|
content: fs.readFileSync(path.resolve(__dirname, '__data__/no_content.json'))
|
|
})
|
|
expect(result).toMatchObject([])
|
|
})
|
|
|
|
it('can parse channel list', async () => {
|
|
const mockResponse = fs.readFileSync(path.join(__dirname, '__data__', 'data.json'), 'utf8')
|
|
axios.get = jest.fn().mockResolvedValue({ data: JSON.parse(mockResponse) })
|
|
const results = await channels()
|
|
|
|
expect(results.length).toBe(154)
|
|
expect(results[0]).toMatchObject({
|
|
site_id: 'DTH#9115',
|
|
name: 'Sky Uno',
|
|
lang: 'it',
|
|
xmltv_id: 'SkyUno.it',
|
|
})
|
|
expect(results[29]).toMatchObject({
|
|
site_id: 'DTH#9094',
|
|
name: 'Sky Sport24',
|
|
lang: 'it',
|
|
xmltv_id: 'SkySport24.it',
|
|
})
|
|
})
|