Skip to content

Commit

Permalink
Merge pull request #487 from ppaez/improve-docs
Browse files Browse the repository at this point in the history
Fixed SQL tutorial functional tests for Python 3
  • Loading branch information
mcdonc committed Mar 15, 2012
2 parents d394183 + 02e0bb8 commit d90b437
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/tutorials/wiki2/src/tests/tutorial/tests.py
Expand Up @@ -190,7 +190,7 @@ def test_root(self):

def test_FrontPage(self):
res = self.testapp.get('/FrontPage', status=200)
self.assertTrue('FrontPage' in res.body)
self.assertTrue(b'FrontPage' in res.body)

def test_unexisting_page(self):
self.testapp.get('/SomePage', status=404)
Expand All @@ -201,48 +201,48 @@ def test_successful_log_in(self):

def test_failed_log_in(self):
res = self.testapp.get(self.viewer_wrong_login, status=200)
self.assertTrue('login' in res.body)
self.assertTrue(b'login' in res.body)

def test_logout_link_present_when_logged_in(self):
self.testapp.get(self.viewer_login, status=302)
res = self.testapp.get('/FrontPage', status=200)
self.assertTrue('Logout' in res.body)
self.assertTrue(b'Logout' in res.body)

def test_logout_link_not_present_after_logged_out(self):
self.testapp.get(self.viewer_login, status=302)
self.testapp.get('/FrontPage', status=200)
res = self.testapp.get('/logout', status=302)
self.assertTrue('Logout' not in res.body)
self.assertTrue(b'Logout' not in res.body)

def test_anonymous_user_cannot_edit(self):
res = self.testapp.get('/FrontPage/edit_page', status=200)
self.assertTrue('Login' in res.body)
self.assertTrue(b'Login' in res.body)

def test_anonymous_user_cannot_add(self):
res = self.testapp.get('/add_page/NewPage', status=200)
self.assertTrue('Login' in res.body)
self.assertTrue(b'Login' in res.body)

def test_viewer_user_cannot_edit(self):
self.testapp.get(self.viewer_login, status=302)
res = self.testapp.get('/FrontPage/edit_page', status=200)
self.assertTrue('Login' in res.body)
self.assertTrue(b'Login' in res.body)

def test_viewer_user_cannot_add(self):
self.testapp.get(self.viewer_login, status=302)
res = self.testapp.get('/add_page/NewPage', status=200)
self.assertTrue('Login' in res.body)
self.assertTrue(b'Login' in res.body)

def test_editors_member_user_can_edit(self):
self.testapp.get(self.editor_login, status=302)
res = self.testapp.get('/FrontPage/edit_page', status=200)
self.assertTrue('Editing' in res.body)
self.assertTrue(b'Editing' in res.body)

def test_editors_member_user_can_add(self):
self.testapp.get(self.editor_login, status=302)
res = self.testapp.get('/add_page/NewPage', status=200)
self.assertTrue('Editing' in res.body)
self.assertTrue(b'Editing' in res.body)

def test_editors_member_user_can_view(self):
self.testapp.get(self.editor_login, status=302)
res = self.testapp.get('/FrontPage', status=200)
self.assertTrue('FrontPage' in res.body)
self.assertTrue(b'FrontPage' in res.body)

0 comments on commit d90b437

Please sign in to comment.