Exemple #1
0
    def test_init(self):
        url = 'https://example.com',
        audio_url = 'https://example.com/mp3.mp3',
        cover_url = 'https://example.com/img.jpg',
        title = 'Testtitle'
        description = 'Testdescription'
        duration_string = '01:06:32'
        pubdate_string = 'Thu, 26 Nov 2020 14:17:00 +0000'
        e = episode.Episode(url=url,
                            audio_url=audio_url,
                            cover_url=cover_url,
                            title=title,
                            description=description,
                            pubdate_string=pubdate_string,
                            duration_string=duration_string)

        self.assertEqual(e.games, [])
        self.assertEqual(e.url, url)
        self.assertEqual(e.audio_url, audio_url)
        self.assertEqual(e.cover_url, cover_url)
        self.assertEqual(e.title, title)
        self.assertEqual(e.description, description)
        self.assertEqual(e.pubdate_string, pubdate_string)
        self.assertEqual(
            e.pubdate,
            datetime.datetime(2020,
                              11,
                              26,
                              14,
                              17,
                              tzinfo=datetime.timezone.utc))
        self.assertEqual(e.duration_string, duration_string)
        self.assertEqual(e.duration, 3992)
Exemple #2
0
    def test_html_for_empty_episode(self):
        url = 'https://example.com'
        audio_url = 'https://example.com/mp3.mp3'
        cover_url = 'https://example.com/img.jpg'
        title = 'Testtitle'
        description = 'Testdescription'
        duration_string = '01:06:32'
        pubdate_string = 'Thu, 26 Nov 2020 14:17:00 +0000'
        e = episode.Episode(url=url,
                            audio_url=audio_url,
                            cover_url=cover_url,
                            title=title,
                            description=description,
                            pubdate_string=pubdate_string,
                            duration_string=duration_string)

        html = sitebuilder.html_for_episode(e)
        self.assertIsNotNone(html)
        root = ET.fromstring(html)
        gameslist_wrong = root.find('./*[@class="gameslist"]')
        self.assertIsNone(gameslist_wrong)
        gameslist = root.find('./*[@class="gameslist empty"]')
        message = gameslist.find('span').text
        self.assertEqual(message, 'No games found in episode description')
        self.assertEqual(len(list(gameslist.find('ul'))), 0)
Exemple #3
0
 def test_body(self):
     url = 'https://example.com'
     audio_url = 'https://example.com/mp3.mp3'
     cover_url = 'https://example.com/img.jpg'
     title = 'Testtitle'
     description = 'Testdescription'
     duration_string = '01:06:32'
     pubdate_string = 'Thu, 26 Nov 2020 14:17:00 +0000'
     e = episode.Episode(url=url,
                         audio_url=audio_url,
                         cover_url=cover_url,
                         title=title,
                         description=description,
                         pubdate_string=pubdate_string,
                         duration_string=duration_string)
     html = sitebuilder.body([e, e])
     root = ET.fromstring(html)
     episodelist = root.findall('./*[@class="episodelist"]')[0]
     self.assertEqual(len(episodelist.findall('section')), 2)
Exemple #4
0
 def test_make_site(self):
     url = 'https://example.com'
     audio_url = 'https://example.com/mp3.mp3'
     cover_url = 'https://example.com/img.jpg'
     title = 'Testtitle'
     description = 'Testdescription'
     duration_string = '01:06:32'
     pubdate_string = 'Thu, 26 Nov 2020 14:17:00 +0000'
     e = episode.Episode(url=url,
                         audio_url=audio_url,
                         cover_url=cover_url,
                         title=title,
                         description=description,
                         pubdate_string=pubdate_string,
                         duration_string=duration_string)
     site = sitebuilder.make_site([e], charset='UTF-8')
     root = ET.fromstring(site)
     charset = root.find('head').findall('./meta[@charset]')
     self.assertEqual(len(charset), 1)
     self.assertEqual(charset[0].attrib['charset'], 'UTF-8')
Exemple #5
0
    def test_html_for_episode(self):
        url = 'https://example.com'
        audio_url = 'https://example.com/mp3.mp3'
        cover_url = 'https://example.com/img.jpg'
        title = 'Testtitle'
        description = 'Testdescription'
        duration_string = '01:06:32'
        pubdate_string = 'Thu, 26 Nov 2020 14:17:00 +0000'
        e = episode.Episode(url=url,
                            audio_url=audio_url,
                            cover_url=cover_url,
                            title=title,
                            description=description,
                            pubdate_string=pubdate_string,
                            duration_string=duration_string)
        e.games = [
            episode.Game('Testgame', '06:12'),
            episode.Game('Testgame2', '1:35:00')
        ]

        html = sitebuilder.html_for_episode(e)
        self.assertIsNotNone(html)
        root = ET.fromstring(html)
        self.assertEqual(root.tag, 'section')
        self.assertEqual(len(root.findall('./*[@class="title"]')),
                         1)  #exactly one title
        images = root.findall('img')
        self.assertEqual(len(images), 1)  #exactly one image, should be cover
        self.assertEqual(images[0].attrib['src'], cover_url)
        gameslist = root.findall('./*[@class="gameslist"]')[0].find(
            'ul').findall('li')
        self.assertEqual(len(gameslist), 2)
        game1 = gameslist[0].find('a')
        self.assertEqual(game1.attrib['href'], 'https://example.com#t=6:12')
        self.assertEqual(game1.text, '06:12 - Testgame')
        game2 = gameslist[1].find('a')
        self.assertEqual(game2.attrib['href'], 'https://example.com#t=95:00')
        self.assertEqual(game2.text, '1:35:00 - Testgame2')