97 lines
4.1 KiB
Python
97 lines
4.1 KiB
Python
|
import unittest
|
||
|
|
||
|
from lxml import etree
|
||
|
|
||
|
from feedgen.feed import FeedGenerator
|
||
|
|
||
|
|
||
|
class TestExtensionPodcast(unittest.TestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
self.fg = FeedGenerator()
|
||
|
self.fg.load_extension('podcast')
|
||
|
self.fg.title('title')
|
||
|
self.fg.link(href='http://example.com', rel='self')
|
||
|
self.fg.description('description')
|
||
|
|
||
|
def test_category_new(self):
|
||
|
self.fg.podcast.itunes_category([{'cat': 'Technology',
|
||
|
'sub': 'Podcasting'}])
|
||
|
self.fg.podcast.itunes_explicit('no')
|
||
|
self.fg.podcast.itunes_complete('no')
|
||
|
self.fg.podcast.itunes_new_feed_url('http://example.com/new-feed.rss')
|
||
|
self.fg.podcast.itunes_owner('John Doe', 'john@example.com')
|
||
|
ns = {'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd'}
|
||
|
root = etree.fromstring(self.fg.rss_str())
|
||
|
cat = root.xpath('/rss/channel/itunes:category/@text', namespaces=ns)
|
||
|
scat = root.xpath('/rss/channel/itunes:category/itunes:category/@text',
|
||
|
namespaces=ns)
|
||
|
assert cat[0] == 'Technology'
|
||
|
assert scat[0] == 'Podcasting'
|
||
|
|
||
|
def test_category(self):
|
||
|
self.fg.podcast.itunes_category('Technology', 'Podcasting')
|
||
|
self.fg.podcast.itunes_explicit('no')
|
||
|
self.fg.podcast.itunes_complete('no')
|
||
|
self.fg.podcast.itunes_new_feed_url('http://example.com/new-feed.rss')
|
||
|
self.fg.podcast.itunes_owner('John Doe', 'john@example.com')
|
||
|
ns = {'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd'}
|
||
|
root = etree.fromstring(self.fg.rss_str())
|
||
|
cat = root.xpath('/rss/channel/itunes:category/@text', namespaces=ns)
|
||
|
scat = root.xpath('/rss/channel/itunes:category/itunes:category/@text',
|
||
|
namespaces=ns)
|
||
|
assert cat[0] == 'Technology'
|
||
|
assert scat[0] == 'Podcasting'
|
||
|
|
||
|
def test_podcastItems(self):
|
||
|
fg = self.fg
|
||
|
fg.podcast.itunes_author('Lars Kiesow')
|
||
|
fg.podcast.itunes_block('x')
|
||
|
fg.podcast.itunes_complete(False)
|
||
|
fg.podcast.itunes_explicit('no')
|
||
|
fg.podcast.itunes_image('x.png')
|
||
|
fg.podcast.itunes_subtitle('x')
|
||
|
fg.podcast.itunes_summary('x')
|
||
|
assert fg.podcast.itunes_author() == 'Lars Kiesow'
|
||
|
assert fg.podcast.itunes_block() == 'x'
|
||
|
assert fg.podcast.itunes_complete() == 'no'
|
||
|
assert fg.podcast.itunes_explicit() == 'no'
|
||
|
assert fg.podcast.itunes_image() == 'x.png'
|
||
|
assert fg.podcast.itunes_subtitle() == 'x'
|
||
|
assert fg.podcast.itunes_summary() == 'x'
|
||
|
|
||
|
# Check that we have the item in the resulting XML
|
||
|
ns = {'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd'}
|
||
|
root = etree.fromstring(self.fg.rss_str())
|
||
|
author = root.xpath('/rss/channel/itunes:author/text()', namespaces=ns)
|
||
|
assert author == ['Lars Kiesow']
|
||
|
|
||
|
def test_podcastEntryItems(self):
|
||
|
fe = self.fg.add_item()
|
||
|
fe.title('y')
|
||
|
fe.podcast.itunes_author('Lars Kiesow')
|
||
|
fe.podcast.itunes_block('x')
|
||
|
fe.podcast.itunes_duration('00:01:30')
|
||
|
fe.podcast.itunes_explicit('no')
|
||
|
fe.podcast.itunes_image('x.png')
|
||
|
fe.podcast.itunes_is_closed_captioned('yes')
|
||
|
fe.podcast.itunes_order(1)
|
||
|
fe.podcast.itunes_subtitle('x')
|
||
|
fe.podcast.itunes_summary('x')
|
||
|
assert fe.podcast.itunes_author() == 'Lars Kiesow'
|
||
|
assert fe.podcast.itunes_block() == 'x'
|
||
|
assert fe.podcast.itunes_duration() == '00:01:30'
|
||
|
assert fe.podcast.itunes_explicit() == 'no'
|
||
|
assert fe.podcast.itunes_image() == 'x.png'
|
||
|
assert fe.podcast.itunes_is_closed_captioned()
|
||
|
assert fe.podcast.itunes_order() == 1
|
||
|
assert fe.podcast.itunes_subtitle() == 'x'
|
||
|
assert fe.podcast.itunes_summary() == 'x'
|
||
|
|
||
|
# Check that we have the item in the resulting XML
|
||
|
ns = {'itunes': 'http://www.itunes.com/dtds/podcast-1.0.dtd'}
|
||
|
root = etree.fromstring(self.fg.rss_str())
|
||
|
author = root.xpath('/rss/channel/item/itunes:author/text()',
|
||
|
namespaces=ns)
|
||
|
assert author == ['Lars Kiesow']
|