mirror of
https://github.com/iptv-org/epg
synced 2025-12-16 10:26:41 -05:00
48 lines
1.8 KiB
JavaScript
48 lines
1.8 KiB
JavaScript
const { url, parser } = require('./cubmu.com.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-05', 'DD/MM/YYYY').startOf('d')
|
|
const channel = { site_id: '4028c68574537fcd0174be43042758d8', xmltv_id: 'TransTV.id', lang: 'id' }
|
|
const channelEn = Object.assign({}, channel, { lang: 'en' })
|
|
|
|
it('can generate valid url', () => {
|
|
expect(url({ channel, date })).toBe(
|
|
'https://servicebuss.transvision.co.id/v2/cms/getEPGData?app_id=cubmu&tvs_platform_id=standalone&schedule_date=2023-11-05&channel_id=4028c68574537fcd0174be43042758d8'
|
|
)
|
|
})
|
|
|
|
it('can parse response', () => {
|
|
const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.json'), 'utf8')
|
|
const idResults = parser({ content, channel })
|
|
expect(idResults).toMatchObject([
|
|
{
|
|
start: '2023-11-04T18:30:00.000Z',
|
|
stop: '2023-11-04T19:00:00.000Z',
|
|
title: 'CNN Tech News',
|
|
description:
|
|
'CNN Indonesia Tech News adalah berita teknologi yang membawa pemirsa ke dunia teknologi yang penuh dengan informasi, pendidikan, hiburan sampai informasi kesehatan terkini.'
|
|
}
|
|
])
|
|
|
|
const enResults = parser({ content, channel: channelEn })
|
|
expect(enResults).toMatchObject([
|
|
{
|
|
start: '2023-11-04T18:30:00.000Z',
|
|
stop: '2023-11-04T19:00:00.000Z',
|
|
title: 'CNN Tech News',
|
|
description:
|
|
'CNN Indonesia Tech News is tech news brings viewers into the world of technology that provides information, education, entertainment to the latest health information.'
|
|
}
|
|
])
|
|
})
|
|
|
|
it('can handle empty guide', () => {
|
|
const results = parser({ content: '' })
|
|
|
|
expect(results).toMatchObject([])
|
|
})
|