mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
Create antennapacific.gr.test.js
This commit is contained in:
parent
add8250c24
commit
ecda45d9f8
1 changed files with 46 additions and 0 deletions
46
sites/antennapacific.gr/antennapacific.gr.test.js
Normal file
46
sites/antennapacific.gr/antennapacific.gr.test.js
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
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([])
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue