mirror of
https://github.com/iptv-org/epg
synced 2025-12-16 02:16:40 -05:00
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
const { url, parser } = require('./shahid.mbc.net.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-11-11').startOf('d')
|
|
const channel = { site_id: '996520', xmltv_id: 'AlAanTV.ae', lang: 'en' }
|
|
|
|
it('can generate valid url', () => {
|
|
expect(url({ channel, date })).toBe(
|
|
`https://api2.shahid.net/proxy/v2.1/shahid-epg-api/?csvChannelIds=${
|
|
channel.site_id
|
|
}&from=${date.format('YYYY-MM-DD')}T00:00:00.000Z&to=${date.format(
|
|
'YYYY-MM-DD'
|
|
)}T23:59:59.999Z&country=SA&language=${channel.lang}&Accept-Language=${channel.lang}`
|
|
)
|
|
})
|
|
|
|
it('can parse response', () => {
|
|
const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json'))
|
|
const result = parser({ content, channel, date })
|
|
|
|
expect(result).toMatchObject([
|
|
{
|
|
start: '2023-11-11T00:00:00.000Z',
|
|
stop: '2023-11-11T00:30:00.000Z',
|
|
title: "Menassaatona Fi Osboo'",
|
|
description:
|
|
"The presenter reviews the most prominent episodes of news programs produced by the channel's team on a weekly basis, which include the most important global updates and developments at all levels."
|
|
}
|
|
])
|
|
})
|
|
|
|
it('can handle empty guide', () => {
|
|
const result = parser({ content: '' })
|
|
|
|
expect(result).toMatchObject([])
|
|
})
|