mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 16:40:07 -04:00
58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
const { parser, url, request, fetchApiVersion, apiVersion } = require('./pickx.be.config.js')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const dayjs = require('dayjs')
|
|
const utc = require('dayjs/plugin/utc')
|
|
|
|
|
|
dayjs.extend(utc)
|
|
|
|
|
|
const date = dayjs.utc('2023-12-13').startOf('d')
|
|
const channel = {
|
|
lang: 'fr',
|
|
site_id: 'UID0118',
|
|
xmltv_id: 'Vedia.be'
|
|
}
|
|
|
|
it('can generate valid url', async () => {
|
|
await fetchApiVersion();
|
|
const generatedUrl = await url({ channel, date });
|
|
const resolvedApiVersion = apiVersion();
|
|
expect(generatedUrl).toBe(`https://px-epg.azureedge.net/airings/${resolvedApiVersion}/2023-12-13/channel/UID0118?timezone=Europe%2FBrussels`);
|
|
});
|
|
|
|
it('can generate valid request headers', () => {
|
|
expect(request.headers).toMatchObject({
|
|
Origin: 'https://www.pickx.be',
|
|
Referer: 'https://www.pickx.be/'
|
|
})
|
|
})
|
|
|
|
it('can parse response', () => {
|
|
const content = fs.readFileSync(path.resolve(__dirname, '__data__/data.json'))
|
|
const result = parser({ content, channel, date }).map(p => {
|
|
p.start = p.start.toJSON()
|
|
p.stop = p.stop.toJSON()
|
|
return p
|
|
})
|
|
|
|
expect(result[0]).toMatchObject({
|
|
start: '2023-12-12T23:55:00.000Z',
|
|
stop: '2023-12-13T00:15:00.000Z',
|
|
title: 'Le 22h30',
|
|
description:
|
|
'Le journal de vivre ici.',
|
|
category: 'Info',
|
|
icon: 'https://experience-cache.proximustv.be/posterserver/poster/EPG/w-166_h-110/250_250_4B990CC58066A7B2A660AFA0BDDE5C41.jpg'
|
|
})
|
|
})
|
|
|
|
it('can handle empty guide', () => {
|
|
const result = parser({
|
|
date,
|
|
channel,
|
|
content: ''
|
|
})
|
|
expect(result).toMatchObject([])
|
|
})
|