# HG changeset patch # User Marcin Kuzminski # Date 1283816352 -7200 # Node ID cbe777be5b8cb4d1437bbc18186efe22cd6f6773 # Parent a03250279b15a43674a314c913ffabcc4f0818ad some more basic tests diff -r a03250279b15 -r cbe777be5b8c pylons_app/tests/__init__.py --- a/pylons_app/tests/__init__.py Mon Sep 06 00:34:23 2010 +0200 +++ b/pylons_app/tests/__init__.py Tue Sep 07 01:39:12 2010 +0200 @@ -31,7 +31,16 @@ wsgiapp = pylons.test.pylonsapp config = wsgiapp.config self.app = TestApp(wsgiapp) + self.session = session url._push_object(URLGenerator(config['routes.map'], environ)) self.sa = meta.Session TestCase.__init__(self, *args, **kwargs) + + def log_user(self): + response = self.app.post(url(controller='login', action='index'), + {'username':'test_admin', + 'password':'test'}) + assert response.status == '302 Found', 'Wrong response code from login got %s' % response.status + assert response.session['hg_app_user'].username == 'test_admin', 'wrong logged in user' + return response.follow() \ No newline at end of file diff -r a03250279b15 -r cbe777be5b8c pylons_app/tests/functional/test_hg.py --- a/pylons_app/tests/functional/test_hg.py Mon Sep 06 00:34:23 2010 +0200 +++ b/pylons_app/tests/functional/test_hg.py Tue Sep 07 01:39:12 2010 +0200 @@ -3,6 +3,9 @@ class TestAdminController(TestController): def test_index(self): - + self.log_user() response = self.app.get(url(controller='hg', action='index')) - # Test response... \ No newline at end of file + #if global permission is set + assert 'ADD NEW REPOSITORY' in response.body, 'Wrong main page' + assert 'href="/vcs_test/summary"' in response.body, ' mising repository in list' + # Test response... diff -r a03250279b15 -r cbe777be5b8c pylons_app/tests/functional/test_search.py --- a/pylons_app/tests/functional/test_search.py Mon Sep 06 00:34:23 2010 +0200 +++ b/pylons_app/tests/functional/test_search.py Tue Sep 07 01:39:12 2010 +0200 @@ -3,5 +3,13 @@ class TestSearchController(TestController): def test_index(self): + self.log_user() response = self.app.get(url(controller='search', action='index')) + print response.body + assert 'class="small" id="q" name="q" type="text"' in response.body,'Search box content error' # Test response... + + def test_empty_search(self): + self.log_user() + response = self.app.get(url(controller='search', action='index'),{'q':'vcs_test'}) + assert 'There is no index to search in. Please run whoosh indexer' in response.body,'No error message about empty index' \ No newline at end of file