12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
-
- """
- Integration tests for the :mod:`repoze.who`-powered authentication sub-system.
-
- As pod grows and the authentication method changes, only these tests
- should be updated.
-
- """
- from __future__ import unicode_literals
-
- from nose.tools import eq_, ok_
-
- from pod.tests import TestController
-
-
- class TestAuthentication(TestController):
- """
- Tests for the default authentication setup.
-
- If your application changes how the authentication layer is configured
- those tests should be updated accordingly
- """
-
- application_under_test = 'main'
-
- def test_forced_login(self):
- """Anonymous users are forced to login
-
- Test that anonymous users are automatically redirected to the login
- form when authorization is denied. Next, upon successful login they
- should be redirected to the initially requested page.
-
- """
-
- resp = self.app.get('/secc/', status=302)
- ok_( resp.location.startswith('http://localhost/login'))
-
- resp = resp.follow(status=200)
- form = resp.form
-
- form['login'] = 'manager'
- form['password'] = 'managepass'
- post_login = form.submit(status=302)
-
- ok_(post_login.location.startswith('http://localhost/post_login'))
- initial_page = post_login.follow(status=302)
- ok_('authtkt' in initial_page.request.cookies,
- "Session cookie wasn't defined: %s" % initial_page.request.cookies)
- ok_(initial_page.location.startswith('http://localhost/secc/'),
- initial_page.location)
-
- def test_voluntary_login(self):
- """Voluntary logins must work correctly"""
-
- resp = self.app.get('/login', status=200)
- form = resp.form
-
- form['login'] = 'manager'
- form['password'] = 'managepass'
- post_login = form.submit(status=302)
-
- ok_(post_login.location.startswith('http://localhost/post_login'))
- home_page = post_login.follow(status=302)
- ok_('authtkt' in home_page.request.cookies,
- 'Session cookie was not defined: %s' % home_page.request.cookies)
- eq_(home_page.location, 'http://localhost/')
-
- def test_logout(self):
- """Logouts must work correctly"""
-
- resp = self.app.get('/login_handler?login=manager&password=managepass',
- status=302)
- resp = resp.follow(status=302)
- ok_('authtkt' in resp.request.cookies,
- 'Session cookie was not defined: %s' % resp.request.cookies)
-
- resp = self.app.get('/logout_handler', status=302)
- ok_(resp.location.startswith('http://localhost/post_logout'))
-
- home_page = resp.follow(status=302)
- authtkt = home_page.request.cookies.get('authtkt')
- ok_(not authtkt or authtkt == 'INVALID',
- 'Session cookie was not deleted: %s' % home_page.request.cookies)
- eq_(home_page.location, 'http://localhost/')
|