view tests/test_db.py @ 240:68d6524a8333

Improve support for async wiki updates. The wiki can now be properly updated in the background using Celery after a page has been edited by a user. The Flask configuration is passed on to Celery, and the background updater function is only set when running the Flask application (not when running updates via `wk`, for instance).
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 28 Mar 2014 22:02:59 -0700
parents ebb12ff21cb2
children
line wrap: on
line source

from tests import WikkedTest


class DatabaseTest(WikkedTest):
    def testEmpty(self):
        wiki = self._getWikiFromStructure({})
        self.assertEqual([], list(wiki.getPageUrls()))

    def testOnePage(self):
        wiki = self._getWikiFromStructure({
            '/foo.txt': 'A test page.'
            })
        self.assertEqual(['/foo'], list(wiki.getPageUrls()))
        page = wiki.getPage('/foo')
        self.assertEqual('/foo', page.url)
        self.assertEqual('/foo.txt', page.path)
        self.assertEqual('A test page.', page.raw_text)