1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
-
- """
- Functional test suite for the root controller.
-
- This is an example of how functional tests can be written for controllers.
-
- As opposed to a unit-test, which test a small unit of functionality,
- functional tests exercise the whole application and its WSGI stack.
-
- Please read http://pythonpaste.org/webtest/ for more information.
-
- """
-
- from nose.tools import ok_
-
- from pod.tests import TestController
-
-
- class TestRootController(TestController):
- """Tests for the method in the root controller."""
-
- def test_index(self):
- """The front page is working properly"""
- response = self.app.get('/')
- msg = 'TurboGears 2 is rapid web application development toolkit '\
- 'designed to make your life easier.'
-
- ok_(msg in response)
-
-
-
-
-
-
-
-
-
- def test_environ(self):
- """Displaying the wsgi environ works"""
- response = self.app.get('/environ.html')
- ok_('The keys in the environment are: ' in response)
-
- def test_data(self):
- """The data display demo works with HTML"""
- response = self.app.get('/data.html?a=1&b=2')
- expected1 = """<td>a</td>\n <td>1</td>"""
- expected2 = """<td>b</td>\n <td>2</td>"""
- body = '\n'.join(response.text.splitlines())
- ok_(expected1 in body, response)
- ok_(expected2 in body, response)
-
- def test_data_json(self):
- """The data display demo works with JSON"""
- resp = self.app.get('/data.json?a=1&b=2')
- ok_(dict(page='data', params={'a':'1', 'b':'2'}) == resp.json, resp.json)
-
- def test_secc_with_manager(self):
- """The manager can access the secure controller"""
-
- environ = {'REMOTE_USER': 'manager'}
- resp = self.app.get('/secc', extra_environ=environ, status=200)
- ok_('Secure Controller here' in resp.text, resp.text)
-
- def test_secc_with_editor(self):
- """The editor cannot access the secure controller"""
- environ = {'REMOTE_USER': 'editor'}
- self.app.get('/secc', extra_environ=environ, status=403)
-
-
- def test_secc_with_anonymous(self):
- """Anonymous users must not access the secure controller"""
- self.app.get('/secc', status=401)
-
|