mirror of
https://github.com/iptv-org/epg
synced 2026-04-20 09:37:00 -04:00
Test: ```sh npm test -- starhubtvplus.com > test > run-script-os starhubtvplus.com > test:win32 > SET "TZ=Pacific/Nauru" && npx jest --runInBand starhubtvplus.com PASS sites/starhubtvplus.com/starhubtvplus.com.test.js √ can generate valid url (3 ms) √ can parse response (3 ms) √ can handle empty guide (1 ms) Test Suites: 1 passed, 1 total Tests: 3 passed, 3 total Snapshots: 0 total Time: 4.337 s Ran all test suites matching /starhubtvplus.com/i. ``` Grab: ```sh npm run grab -- --site=starhubtvplus.com --lang=en > grab > npx tsx scripts/commands/epg/grab.ts --site=starhubtvplus.com --lang=en starting... config: output: guide.xml maxConnections: 1 gzip: false site: starhubtvplus.com lang: en loading channels... found 116 channel(s) run #1: [1/232] starhubtvplus.com (en) - 7c0ee1eb-5f74-4f5a-a338-69eb125badb4 - Dec 4, 2024 (26 programs) [2/232] starhubtvplus.com (en) - 7c0ee1eb-5f74-4f5a-a338-69eb125badb4 - Dec 5, 2024 (26 programs) ... [231/232] starhubtvplus.com (en) - 210ba103-0d19-4b26-bb9f-36d531d7471f - Dec 5, 2024 (39 programs) [232/232] starhubtvplus.com (en) - 210ba103-0d19-4b26-bb9f-36d531d7471f - Dec 4, 2024 (39 programs) saving to "guide.xml"... done in 00h 00m 22s ``` Signed-off-by: Toha <tohenk@yahoo.com>
53 lines
1.8 KiB
JavaScript
53 lines
1.8 KiB
JavaScript
const { parser, url, request } = require('./starhubtvplus.com.config.js')
|
|
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('2024-12-04', 'YYYY-MM-DD').startOf('d')
|
|
const channel = {
|
|
lang: 'en',
|
|
site_id: 'd258444e-b66b-4cbe-88db-e09f31ab8a1f',
|
|
xmltv_id: 'AXN.sg'
|
|
}
|
|
|
|
it('can generate valid url', () => {
|
|
expect(url({ channel, date })).toBe(
|
|
'https://waf-starhub-metadata-api-p001.ifs.vubiquity.com/v3.1/epg/schedules?locale=en_US&locale_default=en_US&device=1&in_channel_id=d258444e-b66b-4cbe-88db-e09f31ab8a1f>_end=1733270400<_start=1733356800&limit=100&page=1'
|
|
)
|
|
})
|
|
|
|
it('can parse response', async () => {
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const content = fs.readFileSync(path.join(__dirname, '__data__', 'content.json'))
|
|
const result = (await parser({ content, date, channel })).map(p => {
|
|
p.start = p.start.toJSON()
|
|
p.stop = p.stop.toJSON()
|
|
return p
|
|
})
|
|
|
|
expect(result).toMatchObject([
|
|
{
|
|
start: '2024-12-03T17:25:00.000Z',
|
|
stop: '2024-12-03T18:20:00.000Z',
|
|
title: 'Northern Rexposure',
|
|
subTitle: 'Hudson & Rex (Season 5)',
|
|
description:
|
|
'When Jesse\'s sister contacts him for help, he, Sarah and Rex head to Northern Ontario and find themselves in the middle of a deadly situation.',
|
|
category: ['Drama'],
|
|
image: ['https://poster.starhubgo.com/poster/ch511_hudson_rex5.jpg?w=960&h=540', 'https://poster.starhubgo.com/poster/ch511_hudson_rex5.jpg?w=341&h=192'],
|
|
season: 5,
|
|
episode: 15,
|
|
rating: 'PG13'
|
|
}
|
|
])
|
|
})
|
|
|
|
it('can handle empty guide', async () => {
|
|
const result = await parser({ content: '' })
|
|
expect(result).toMatchObject([])
|
|
})
|