mirror of
https://github.com/iptv-org/epg
synced 2025-12-16 10:26:41 -05:00
74 lines
2.7 KiB
JavaScript
74 lines
2.7 KiB
JavaScript
const { parser, url } = require('./tv.trueid.net.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)
|
|
|
|
jest.mock('axios')
|
|
|
|
axios.get.mockImplementation(url => {
|
|
if (url === 'https://tv.trueid.net/th-en') {
|
|
return Promise.resolve({
|
|
data: fs.readFileSync(path.join(__dirname, '__data__', 'build.html')).toString()
|
|
})
|
|
}
|
|
})
|
|
|
|
const date = dayjs.utc('2023-12-11').startOf('d')
|
|
const channel = {
|
|
lang: 'en',
|
|
site_id: 'true-movie-hits',
|
|
xmltv_id: 'TrueMovieHits.th'
|
|
}
|
|
const channelTh = Object.assign({}, channel, { lang: 'th' })
|
|
const data = fs.readFileSync(path.resolve(__dirname, '__data__/data.json'))
|
|
|
|
it('can generate valid url', async () => {
|
|
const result = await url({ channel, date })
|
|
expect(result).toBe(
|
|
'https://tv.trueid.net/_next/data/4c31e530f27f66770c8fe3e3f9cc46eccfa89720/th-en.json?channelSlug=true-movie-hits&path=true-movie-hits'
|
|
)
|
|
})
|
|
|
|
it('can parse English response', () => {
|
|
const result = parser({ date, channel, content: data }).map(p => {
|
|
p.start = p.start.toJSON()
|
|
p.stop = p.stop.toJSON()
|
|
return p
|
|
})
|
|
expect(result[0]).toMatchObject({
|
|
start: '2023-12-11T19:05:00.000Z',
|
|
stop: '2023-12-11T20:55:00.000Z',
|
|
title: 'The Last Witch Hunter',
|
|
description:
|
|
'A young man is all that stands between humanity and the most horrifying witches in history.',
|
|
image: 'https://bms.dmpcdn.com/uploads/pic/381f853da5f4a310bf248357fed21a57.jpg'
|
|
})
|
|
})
|
|
|
|
it('can parse Thai response', () => {
|
|
const result = parser({ date, channel: channelTh, content: data }).map(p => {
|
|
p.start = p.start.toJSON()
|
|
p.stop = p.stop.toJSON()
|
|
return p
|
|
})
|
|
expect(result[0]).toMatchObject({
|
|
start: '2023-12-11T19:05:00.000Z',
|
|
stop: '2023-12-11T20:55:00.000Z',
|
|
title: 'The Last Witch Hunter',
|
|
description:
|
|
'หนุ่มนักล่าแม่มดถูกสาปให้เป็นอมตะจนกระทั่งราชินีแม่มดได้ฟื้นคืนชีพขึ้นมาจึงมีเพียงเขาคนเดียวเท่านั้นที่จะสามารถกอบกู้มวลมนุษยชาติได้',
|
|
image: 'https://bms.dmpcdn.com/uploads/pic/381f853da5f4a310bf248357fed21a57.jpg'
|
|
})
|
|
})
|
|
|
|
it('can handle empty guide', () => {
|
|
const result = parser({ date, channel, content: '{}' })
|
|
expect(result).toMatchObject([])
|
|
})
|