From c6d82fe133cadf48889eb7d381e71ceeff31b33b Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Sun, 24 Oct 2021 10:43:42 +0300 Subject: [PATCH] Create ipko.com.test.js --- sites/ipko.com/ipko.com.test.js | 40 +++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 sites/ipko.com/ipko.com.test.js diff --git a/sites/ipko.com/ipko.com.test.js b/sites/ipko.com/ipko.com.test.js new file mode 100644 index 00000000..93e25470 --- /dev/null +++ b/sites/ipko.com/ipko.com.test.js @@ -0,0 +1,40 @@ +// npx epg-grabber --config=sites/ipko.com/ipko.com.config.js --channels=sites/ipko.com/ipko.com_al.channels.xml --days=2 --output=.gh-pages/guides/al/ipko.com.epg.xml + +const { parser, url, logo } = require('./ipko.com.config.js') +const dayjs = require('dayjs') + +const date = dayjs('10/24/2021') +const channel = { site_id: '406', xmltv_id: 'RTK1.rs' } +const content = `{"element":{"1":[{"id":6367,"channel_id":406,"program_name":"Beautiful People 13","name_short":"","description":"Lin largohet nga Nju Meksiko për t'u vendosur në Nju Jork e për t'ia nisur nga fillimi: një punë të re, shtëpi të re dhe njohje të reja. Bashkë me të janë vajzat e saj, Sofia, një 16 vjeçare që shkëlqen në shkollë, dhe Kareni, 20 vjeçare, që do të bë","category":"Sezoni I","duration":150,"day":"Sun","left_distanc":165,"date":"00:55:00"}]}}` + +it('can generate valid url', () => { + const result = url({ date }) + expect(result).toBe('https://www.ipko.com/epg/admin/programs.php?date=2021-10-24') +}) + +it('can get logo url', done => { + logo({ channel }) + .then(result => { + expect(result).toBe('https://www.ipko.com/epg/logo/stinet.png') + done() + }) + .catch(error => done(error)) +}) + +it('can parse response', () => { + const result = parser({ date, channel, content }) + expect(result).toMatchObject([ + { + start: 'Sun, 24 Oct 2021 00:55:00 GMT', + stop: 'Sun, 24 Oct 2021 01:45:00 GMT', + title: 'Beautiful People 13', + description: `Lin largohet nga Nju Meksiko për t'u vendosur në Nju Jork e për t'ia nisur nga fillimi: një punë të re, shtëpi të re dhe njohje të reja. Bashkë me të janë vajzat e saj, Sofia, një 16 vjeçare që shkëlqen në shkollë, dhe Kareni, 20 vjeçare, që do të bë`, + category: 'Sezoni I' + } + ]) +}) + +it('can handle empty guide', () => { + const result = parser({ date, channel, content: `{"element":{"1":[{"no":"no"}]}}` }) + expect(result).toMatchObject([]) +})