mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-09 08:30:06 -04:00
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
const { parser, url } = require('./antennapacific.gr.config.js')
|
||
const fs = require('fs')
|
||
const path = require('path')
|
||
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('2025-01-21', 'YYYY-MM-DD').startOf('d')
|
||
|
||
it('can generate valid url', () => {
|
||
expect(url({ date })).toBe('https://www.antennapacific.gr/el/tvguide.html?date=2025-01-21')
|
||
})
|
||
|
||
it('can parse response', () => {
|
||
const content = fs.readFileSync(path.resolve(__dirname, '__data__/content.html'), 'utf8')
|
||
let results = parser({ content, date })
|
||
results = results.map(p => {
|
||
p.start = p.start.toJSON()
|
||
p.stop = p.stop.toJSON()
|
||
return p
|
||
})
|
||
|
||
expect(results.length).toBe(17)
|
||
|
||
expect(results[0]).toMatchObject({
|
||
start: '2025-01-21T05:00:00.000Z',
|
||
stop: '2025-01-21T06:00:00.000Z',
|
||
title: 'ANT1 NEWS - ΚΕΝΤΡΙΚΟ ΔΕΛΤΙΟ'
|
||
})
|
||
|
||
expect(results[16]).toMatchObject({
|
||
start: '2025-01-22T02:45:00.000Z',
|
||
stop: '2025-01-22T03:15:00.000Z',
|
||
title: 'ΚΑΛΗΜΕΡΑ ΕΛΛΑΔΑ'
|
||
})
|
||
})
|
||
|
||
it('can handle empty guide', () => {
|
||
const results = parser({
|
||
date,
|
||
content: fs.readFileSync(path.resolve(__dirname, '__data__/no_content.html'), 'utf8')
|
||
})
|
||
expect(results).toMatchObject([])
|
||
})
|