From 751bea95967293872b93f03fcba312f1642c5472 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Thu, 11 Nov 2021 14:52:45 +0300 Subject: [PATCH] Create elcinema.com.test.js --- sites/elcinema.com/elcinema.com.test.js | 66 +++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 sites/elcinema.com/elcinema.com.test.js diff --git a/sites/elcinema.com/elcinema.com.test.js b/sites/elcinema.com/elcinema.com.test.js new file mode 100644 index 00000000..7fe1109c --- /dev/null +++ b/sites/elcinema.com/elcinema.com.test.js @@ -0,0 +1,66 @@ +// npx epg-grabber --config=sites/elcinema.com/elcinema.com.config.js --channels=sites/elcinema.com/elcinema.com_eg-en.channels.xml --output=.gh-pages/guides/eg-en/elcinema.com.epg.xml --days=2 +// npx epg-grabber --config=sites/elcinema.com/elcinema.com.config.js --channels=sites/elcinema.com/elcinema.com_eg-ar.channels.xml --output=.gh-pages/guides/eg-ar/elcinema.com.epg.xml --days=2 + +const { parser, url, request, logo } = require('./elcinema.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-11-11', 'YYYY-MM-DD').startOf('d') +const channelAR = { + lang: 'ar', + site_id: '1127', + xmltv_id: 'MBC.ae' +} +const channelEN = { + lang: 'en', + site_id: '1127', + xmltv_id: 'MBC.ae' +} +const contentAR = `
الخميس 11 نوفمبر
  • 12:30 مساءً
  • [30 دقيقة]
  • يعيد برنامج (أحلى ما طاش) عرضا لمجموعة من أفضل الحلقات التي...اقرأ المزيد تم تقديمها من خلال المسلسل الكوميدي السعودي (طاش ما طاش)، والذي استمر عرضه على التليفزيون السعودي لمدة 18 موسمًا متواصلًا، والتي ناقش من خلالها (ناصر القصبي) و(عبدالله السدحان) مجموعة من القضايا الاجتماعية التي تشغل بال المجتمع السعودي بطريقة ساخرة.
الجمعة 12 نوفمبر
  • يوميات موسم الرياض 2021
  • 12:00 صباحًا [15 دقيقة]
` +const contentEN = `
Thursday 11 November
  • 10:00 AM
  • [120 minutes]
` + +it('can generate valid url', () => { + expect(url({ channel: channelEN })).toBe('https://elcinema.com/en/tvguide/1127/') +}) + +it('can get logo url', () => { + expect(logo({ content: contentEN })).toBe('https://media.elcinema.com/tvguide/1127_1.png') +}) + +it('can parse response (en)', () => { + expect(parser({ date, channel: channelEN, content: contentEN })).toMatchObject([ + { + start: '2021-11-11T08:00:00.000Z', + stop: '2021-11-11T10:00:00.000Z', + title: 'Good Morning Arab', + icon: 'https://media.elcinema.com/uploads/_150x200_5659fb4f174c49b54cc14cb53e70a5467abef429b5bb9d1a1cf2a40aa37562b2.jpg', + description: `As Abdel Mohsen passes away and his will is read to the family members, the true essence of each of them emerges, resulting in unthinkable discord. `, + category: 'Program' + } + ]) +}) + +it('can parse response (ar)', () => { + expect(parser({ date, channel: channelAR, content: contentAR })).toMatchObject([ + { + start: '2021-11-11T10:30:00.000Z', + stop: '2021-11-11T11:00:00.000Z', + title: 'أحلى ما طاش', + icon: 'https://media.elcinema.com/uploads/_150x200_2f74473c92a69d7bfd25bd7fca8576168e8a58da4dd5cb8222eb1297caa13915.jpg', + description: ` يعيد برنامج (أحلى ما طاش) عرضا لمجموعة من أفضل الحلقات التي تم تقديمها من خلال المسلسل الكوميدي السعودي (طاش ما طاش)، والذي استمر عرضه على التليفزيون السعودي لمدة 18 موسمًا متواصلًا، والتي ناقش من خلالها (ناصر القصبي) و(عبدالله السدحان) مجموعة من القضايا الاجتماعية التي تشغل بال المجتمع السعودي بطريقة ساخرة. `, + category: 'مسلسل' + } + ]) +}) + +it('can handle empty guide', () => { + const result = parser({ + date, + channel: channelEN, + content: `` + }) + expect(result).toMatchObject([]) +})