From 443be72710ea128679f38ee10ae6252e00933c4d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 29 Oct 2021 04:08:42 +0300 Subject: [PATCH] Create osn.com.test.js --- sites/osn.com/osn.com.test.js | 54 +++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 sites/osn.com/osn.com.test.js diff --git a/sites/osn.com/osn.com.test.js b/sites/osn.com/osn.com.test.js new file mode 100644 index 00000000..dcdf2b78 --- /dev/null +++ b/sites/osn.com/osn.com.test.js @@ -0,0 +1,54 @@ +// npx epg-grabber --config=sites/osn.com/osn.com.config.js --channels=sites/osn.com/osn.com_ae.channels.xml --days=2 --output=guide.xml + +const { parser, url, logo, request } = require('./osn.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('2021-10-24', 'YYYY-MM-DD').startOf('d') +const channel = { site_id: 'AE#AAN', xmltv_id: 'AlAanTV.ae' } +const content = JSON.stringify({ + d: '[{"IsPlaying":"0","Durationtime":null,"StartMinute":0,"EndMinute":0,"EmptyDivWidth":1152,"TotalDivWidth":576,"IsTodayDate":false,"IsLastRow":false,"StartDateTime":"24 Oct 2021, 22:00","EndDateTime":"\\/Date(-62135596800000)\\/","Title":"Al Aan TV","Arab_Title":"تلفزيون الآن","GenreEnglishName":null,"GenreArabicName":null,"ChannelNumber":140,"ChannelCode":"AAN","Duration":"\\/Date(-62135596800000)\\/","Showtime":"\\/Date(-62135596800000)\\/","EpisodeId":738257,"ProgramType":null,"EPGUNIQID":"AAN202110271800738257"}]' +}) + +it('can generate valid request data', () => { + const result = request.data({ channel, date }) + expect(result).toMatchObject({ + newDate: '10/24/2021', + selectedCountry: 'AE', + channelCode: 'AAN', + isMobile: false, + hoursForMobile: 0 + }) +}) + +it('can generate valid url', () => { + const result = url() + expect(result).toBe( + 'https://www.osn.com/CMSPages/TVScheduleWebService.asmx/GetTVChannelsProgramTimeTable' + ) +}) + +it('can get logo url', () => { + const result = logo({ channel }) + expect(result).toBe('https://content.osn.com/logo/channel/cropped/AAN.png') +}) + +it('can parse response', () => { + const result = parser({ date, channel, content }) + expect(result).toMatchObject([ + { + start: 'Sun, 24 Oct 2021 18:00:00 GMT', + stop: 'Sun, 24 Oct 2021 20:00:00 GMT', + title: 'تلفزيون الآن', + category: null + } + ]) +}) + +it('can handle empty guide', () => { + const result = parser({ date, channel, content: JSON.stringify({ d: '[]' }) }) + expect(result).toMatchObject([]) +})