view tests/FeedUpdaterTests.py @ 204:4cb22b47b659

Due to a bug in CouchDB it's possible that a view still references deleted documents. Detect this case and don't add NoneType objects into the list of feeds.
author dirk
date Tue, 03 Apr 2012 05:35:13 +0200
parents fd4c8bfa62d6
children bb3c851b18b1
line wrap: on
line source


import unittest
from Feed import Feed
from FeedUpdater import FeedUpdater
from FeedUpdater import FeedUpdateException

class FeedUpdaterTests(unittest.TestCase):
    def testFeedContainsInvalidUrl(self):
        feed = Feed("invalid", "http://thisurldoesnotexist.xxx")
        try:
            FeedUpdater(None, feed).update()
            self.fail("updating an invalid URL must fail")
        except FeedUpdateException:
            # this one was expected
            pass
        
    def testFeedContainsValidUrl(self):
        feed = Feed("valid", "http://www.joelonsoftware.com/rss.xml")
        result = FeedUpdater(None, feed).getFeed()
        self.assertEqual("Joel on Software", result["feed"].title)

if __name__ == "__main__":
    #import sys;sys.argv = ['', 'Test.testName']
    unittest.main()