-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #684 from KeepSafe/classbasedview
Classbasedview
- Loading branch information
Showing
5 changed files
with
170 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
#!/usr/bin/env python3 | ||
"""Example for aiohttp.web class based views | ||
""" | ||
|
||
|
||
import asyncio | ||
import functools | ||
import json | ||
from aiohttp.web import json_response, Application, Response, View | ||
|
||
|
||
class MyView(View): | ||
|
||
async def get(self): | ||
return json_response({ | ||
'method': 'get', | ||
'args': dict(self.request.GET), | ||
'headers': dict(self.request.headers), | ||
}, dumps=functools.partial(json.dumps, indent=4)) | ||
|
||
async def post(self): | ||
data = await self.request.post() | ||
return json_response({ | ||
'method': 'post', | ||
'args': dict(self.request.GET), | ||
'data': dict(data), | ||
'headers': dict(self.request.headers), | ||
}, dumps=functools.partial(json.dumps, indent=4)) | ||
|
||
|
||
async def index(request): | ||
txt = """ | ||
<html> | ||
<head> | ||
<title>Class based view example</title> | ||
</head> | ||
<body> | ||
<h1>Class based view example</h1> | ||
<ul> | ||
<li><a href="/">/</a> This page | ||
<li><a href="/get">/get</a> Returns GET data. | ||
<li><a href="/post">/post</a> Returns POST data. | ||
</ul> | ||
</body> | ||
</html> | ||
""" | ||
return Response(text=txt, content_type='text/html') | ||
|
||
|
||
async def init(loop): | ||
app = Application(loop=loop) | ||
app.router.add_route('GET', '/', index) | ||
app.router.add_route('GET', '/get', MyView) | ||
app.router.add_route('POST', '/post', MyView) | ||
|
||
handler = app.make_handler() | ||
srv = await loop.create_server(handler, '127.0.0.1', 8080) | ||
print("Server started at http://127.0.0.1:8080") | ||
return srv, handler | ||
|
||
|
||
loop = asyncio.get_event_loop() | ||
srv, handler = loop.run_until_complete(init(loop)) | ||
try: | ||
loop.run_forever() | ||
except KeyboardInterrupt: | ||
loop.run_until_complete(handler.finish_connections()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import asyncio | ||
import pytest | ||
|
||
from aiohttp import web | ||
from aiohttp.web_urldispatcher import View | ||
from unittest import mock | ||
|
||
|
||
def test_ctor(): | ||
request = mock.Mock() | ||
view = View(request) | ||
assert view.request is request | ||
|
||
|
||
@pytest.mark.run_loop | ||
def test_render_ok(): | ||
resp = web.Response(text='OK') | ||
|
||
class MyView(View): | ||
@asyncio.coroutine | ||
def get(self): | ||
return resp | ||
|
||
request = mock.Mock() | ||
request.method = 'GET' | ||
resp2 = yield from MyView(request) | ||
assert resp is resp2 | ||
|
||
|
||
@pytest.mark.run_loop | ||
def test_render_unknown_method(): | ||
|
||
class MyView(View): | ||
@asyncio.coroutine | ||
def get(self): | ||
return web.Response(text='OK') | ||
|
||
request = mock.Mock() | ||
request.method = 'UNKNOWN' | ||
with pytest.raises(web.HTTPMethodNotAllowed) as ctx: | ||
yield from MyView(request) | ||
assert ctx.value.status == 405 | ||
|
||
|
||
@pytest.mark.run_loop | ||
def test_render_unsupported_method(): | ||
|
||
class MyView(View): | ||
@asyncio.coroutine | ||
def get(self): | ||
return web.Response(text='OK') | ||
|
||
request = mock.Mock() | ||
request.method = 'POST' | ||
with pytest.raises(web.HTTPMethodNotAllowed) as ctx: | ||
yield from MyView(request) | ||
assert ctx.value.status == 405 |