changeset 464:cbe777be5b8c

some more basic tests
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 07 Sep 2010 01:39:12 +0200
parents a03250279b15
children e01a85f9fc90
files pylons_app/tests/__init__.py pylons_app/tests/functional/test_hg.py pylons_app/tests/functional/test_search.py
diffstat 3 files changed, 22 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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...
--- 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