예제 #1
0
def test_item_enclosure(feed):
    enclosure = Enclosure('https://smartfridge.me/image.jpg')
    create_item(feed, enclosure=enclosure)
    xml = feed.xml()
    assert xml
    assert '<enclosure url="{url}" length="{length}" type="{type}"/>' \
           '</item>'.format(length=0, type='image/jpeg',
                            url=enclosure.url) in xml
예제 #2
0
def test_item_enclosure_from_dict(feed, enclosure_dict):
    create_item(feed, enclosure=enclosure_dict)
    xml = feed.xml()
    assert xml
    assert '<enclosure url="{url}" length="{length}" type="{type}"/>' \
           '</item>'.format(length=enclosure_dict.get('size', 0),
                            type=enclosure_dict.get('type', 'image/jpeg'),
                            url=enclosure_dict.get('url')) in xml
예제 #3
0
def test_item_categories(feed):
    categories = ['Category 1', 'Category 2']
    create_item(feed, categories=categories)
    xml = feed.xml()
    assert xml
    assert '<category><![CDATA[Category 1]]></category>' \
           '<category><![CDATA[Category 2]]></category>' \
           '</item>' in xml
예제 #4
0
def test_item_author(feed):
    author = 'Dmitriy Pleshevskiy'
    create_item(feed, author=author)
    create_item(feed, author=author)
    xml = feed.xml()
    assert xml
    assert '<dc:creator><![CDATA[{}]]></dc:creator>' \
           '</item>'.format(author) in xml
예제 #5
0
def test_item(feed):
    create_item(feed)
    xml = feed.xml()
    assert xml
    assert '<item><title><![CDATA[Recipe]]></title>' \
           '<description><![CDATA[]]></description>' \
           '<guid isPermaLink="false"><![CDATA[Recipe]]></guid>' \
           '</item>' in xml
예제 #6
0
def test_item_pub_date(feed):
    pub_date = datetime.utcnow()
    expose = pub_date.replace(tzinfo=pytz.timezone('GMT')). \
        strftime("%a, %d %b %Y %H:%M:%S %Z")
    create_item(feed, pub_date=pub_date)
    xml = feed.xml()
    assert xml
    assert '<pubDate>{}</pubDate>' \
           '</item>'.format(expose) in xml
예제 #7
0
def test_item_guid(feed):
    guid = uuid4().hex
    create_item(feed, guid=guid)
    xml = feed.xml()
    assert xml
    assert '<item><title><![CDATA[Recipe]]></title>' \
           '<description><![CDATA[]]></description>' \
           '<guid isPermaLink="false">{}</guid>' \
           '</item>'.format(guid) in xml
예제 #8
0
def test_item_description(feed):
    description = 'description'
    create_item(feed, description=description)
    xml = feed.xml()
    assert xml
    assert '<item><title><![CDATA[Recipe]]></title>' \
           '<description><![CDATA[{}]]></description>' \
           '<guid isPermaLink="false"><![CDATA[Recipe]]></guid>' \
           '</item>'.format(description) in xml
예제 #9
0
def test_item_url(feed):
    url = 'https://smartfridge.me/'
    create_item(feed, url=url)
    xml = feed.xml()
    assert xml
    assert '<item><title><![CDATA[Recipe]]></title>' \
           '<description><![CDATA[]]></description>' \
           '<link>{url}</link>' \
           '<guid isPermaLink="true">{url}</guid>' \
           '</item>'.format(url=url) in xml