How can I write unit test for a tornado handler that authenticates a user through a secure cookie? Here is the code (and sudo code) for the dummy test I would like to do. I am using Tornado 3.1.
from tornado.web import Application, RequestHandler from tornado.escape import to_unicode, json_decode, json_encode from tornado.testing import AsyncHTTPTestCase class MainHandler(RequestHandler): """ Base handler to authenticate user via a secure cookie. This is used for an API. """ def get(self): user = self.get_secure_cookie('user') if user == 'user_email': self.write('sucess') else: self.write('fail') class UserAPITest(AsyncHTTPTestCase): def get_app(self): self.app = Application([('/', MainHandler)], cookie_secret='asdfasdf') return self.app def test_user_profile_annoymous(self): #SUDO CODE (what should go here?) #cookie = make_secure_cookie('user', 'user_email', cookie_secret) #headers = {'Cookie':cookie} response = self.fetch('/', method='GET', headers=headers) self.assertEqual('sucess', to_unicode(response.body) )
python tornado unit-testing cookies
wroscoe
source share