1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
import functools
import pytest
import tornado.ioloop
import tornado.web
class MainHandler(tornado.web.RequestHandler):
def get(self):
self.write('Hello, world')
application = tornado.web.Application([
(r'/', MainHandler),
(r'/f00', MainHandler),
])
@pytest.fixture(scope='module')
def app():
return application
def _fetch(http_client, url):
return http_client.io_loop.run_sync(
functools.partial(http_client.fetch, url))
def test_http_server(http_server, io_loop):
status = {'done': False}
def _done():
status['done'] = True
io_loop.stop()
io_loop.add_callback(_done)
io_loop.start()
assert status['done']
def test_http_client(http_client, base_url):
request = http_client.fetch(base_url)
request.add_done_callback(lambda future: http_client.io_loop.stop())
http_client.io_loop.start()
response = request.result()
assert response.code == 200
def test_http_client_with_fetch_helper(http_client, base_url):
response = _fetch(http_client, base_url)
assert response.code == 200
@pytest.mark.gen_test
def test_http_client_with_gen_test(http_client, base_url):
response = yield http_client.fetch(base_url)
assert response.code == 200
@pytest.mark.gen_test
def test_get_url_with_path(http_client, base_url):
response = yield http_client.fetch('%s/f00' % base_url)
assert response.code == 200
@pytest.mark.gen_test
def test_http_client_raises_on_404(http_client, base_url):
with pytest.raises(tornado.httpclient.HTTPError):
yield http_client.fetch('%s/bar' % base_url)
def test_base_url_default_is_http(base_url):
assert base_url.startswith('http://')
|