Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Pylons/pyramid
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Mar 15, 2012
2 parents 365cbdb + c03eac4 commit a557599
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 15 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)
7 changes: 3 additions & 4 deletions pyramid/scripts/pserve.py
Expand Up @@ -628,12 +628,11 @@ def live_pidfile(pidfile): # pragma: no cover
return pid
return None

def read_pidfile(filename): # pragma: no cover
def read_pidfile(filename):
if os.path.exists(filename):
try:
f = open(filename)
content = f.read()
f.close()
with open(filename) as f:
content = f.read()
return int(content.strip())
except (ValueError, IOError):
return None
Expand Down
23 changes: 23 additions & 0 deletions pyramid/tests/test_scripts/test_pserve.py
Expand Up @@ -204,6 +204,29 @@ def test_parse_vars_bad(self):
inst = self._makeOne('development.ini')
self.assertRaises(ValueError, inst.parse_vars, vars)

class Test_read_pidfile(unittest.TestCase):
def _callFUT(self, filename):
from pyramid.scripts.pserve import read_pidfile
return read_pidfile(filename)

def test_read_pidfile(self):
filename = tempfile.mktemp()
try:
with open(filename, 'w') as f:
f.write('12345')
result = self._callFUT(filename)
self.assertEqual(result, 12345)
finally:
os.remove(filename)

def test_read_pidfile_no_pid_file(self):
result = self._callFUT('some unknown path')
self.assertEqual(result, None)

def test_read_pidfile_not_a_number(self):
result = self._callFUT(__file__)
self.assertEqual(result, None)

class Test_main(unittest.TestCase):
def _callFUT(self, argv):
from pyramid.scripts.pserve import main
Expand Down

0 comments on commit a557599

Please sign in to comment.