forked from sanic-org/sanic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_naming.py
57 lines (39 loc) · 1.6 KB
/
test_naming.py
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
from typing import Type
from sanic import Blueprint, Sanic, text
def factory(sanic_cls: Type[Sanic], blueprint_cls: Type[Blueprint]):
app = sanic_cls("Foo")
bp = blueprint_cls("Bar", url_prefix="/bar")
@app.get("/")
async def handler(request):
return text(request.name)
@bp.get("/")
async def handler(request): # noqa: F811 // Intentionally reused handler name
return text(request.name)
app.blueprint(bp)
return app
def test_vanilla_sanic():
app = factory(Sanic, Blueprint)
_, foo_response = app.test_client.get("/")
_, bar_response = app.test_client.get("/bar/")
assert foo_response.text == "Foo.handler"
assert bar_response.text == "Foo.Bar.handler"
def test_custom_app():
class Custom(Sanic):
def generate_name(self, *objects):
existing = self._generate_name(*objects)
return existing.replace("Foo", "CHANGED_APP")
app = factory(Custom, Blueprint)
_, foo_response = app.test_client.get("/")
_, bar_response = app.test_client.get("/bar/")
assert foo_response.text == "CHANGED_APP.handler"
assert bar_response.text == "CHANGED_APP.Bar.handler"
def test_custom_blueprint():
class Custom(Blueprint):
def generate_name(self, *objects):
existing = self._generate_name(*objects)
return existing.replace("Bar", "CHANGED_BP")
app = factory(Sanic, Custom)
_, foo_response = app.test_client.get("/")
_, bar_response = app.test_client.get("/bar/")
assert foo_response.text == "Foo.handler"
assert bar_response.text == "Foo.CHANGED_BP.handler"