Files
epg/sites/rotana.net/rotana.net.test.js
Toha 52c8f91f64 Fix rotana.net guide API.
Signed-off-by: Toha <tohenk@yahoo.com>
2026-05-17 11:19:07 +07:00

116 lines
3.7 KiB
JavaScript

const { parser, url, request } = require('./rotana.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')
const date = dayjs.utc('2026-05-16').startOf('d')
const channel = {
lang: 'en',
site_id: '439',
xmltv_id: 'RotanaCinemaMasr.sa'
}
const channelAr = Object.assign({}, channel, { lang: 'ar' })
axios.get.mockImplementation(url => {
if (url === 'https://rotana.net/en/streams?channel=439&itemId=1160904&playnow=0') {
return Promise.resolve({
data: fs.readFileSync(path.resolve(__dirname, '__data__/program_en.html'))
})
}
if (url === 'https://rotana.net/ar/streams?channel=439&itemId=1160904&playnow=0') {
return Promise.resolve({
data: fs.readFileSync(path.resolve(__dirname, '__data__/program_ar.html'))
})
}
return Promise.resolve({ data: '' })
})
it('can use defined user agent', () => {
const result = request.headers['User-Agent']
expect(result).toBe(
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 OPR/104.0.0.0'
)
})
it('can generate valid english url', () => {
const result = url({ channel, date })
expect(result).toBe('https://rotana.net/en/streams?channel=439&tz=')
})
it('can generate valid arabic url', () => {
const result = url({ channel: channelAr, date })
expect(result).toBe('https://rotana.net/ar/streams?channel=439&tz=')
})
it('can parse english response', async () => {
const result = (
await parser({
channel,
date,
content: fs.readFileSync(path.join(__dirname, '/__data__/content_en.html'))
})
).map(a => {
a.start = a.start.toJSON()
a.stop = a.stop.toJSON()
return a
})
expect(result.length).toBe(13)
expect(result[12]).toMatchObject({
start: '2026-05-16T19:00:00.000Z',
stop: '2026-05-16T21:00:00.000Z',
title: 'The Street Player',
description:
'Fares (Adel Emam) suffers from the neglect of his work and life because of his passion for football and betting, and he wants to get his wife back while he receives an offer to work in a car showroom.',
image:
'https://s3.eu-central-1.amazonaws.com/rotana.website/spider_storage/1398X1000/1696246957.webp',
category: 'Movie',
date: '1984'
})
})
it('can parse arabic response', async () => {
const result = (
await parser({
channel: channelAr,
date,
content: fs.readFileSync(path.join(__dirname, '/__data__/content_ar.html'))
})
).map(a => {
a.start = a.start.toJSON()
a.stop = a.stop.toJSON()
return a
})
expect(result.length).toBe(13)
expect(result[12]).toMatchObject({
start: '2026-05-16T19:00:00.000Z',
stop: '2026-05-16T21:00:00.000Z',
title: 'الحريف',
description:
'فارس (عادل إمام) يعاني من إهمال عمله وحياته بسبب شغفه بكرة القدم والمراهنات، ويرغب في استعادة زوجته بينما يتلقى عرضًا للعمل في معرض سيارات',
image:
'https://s3.eu-central-1.amazonaws.com/rotana.website/spider_storage/1398X1000/1696246957.webp',
category: 'فيلم',
date: '1984'
})
})
it('can handle empty guide', async () => {
const result = await parser({
content: '<!DOCTYPE html><html><head></head><body></body></html>',
date,
channel
})
expect(result).toMatchObject([])
})