-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtest_decorators.py
30 lines (26 loc) · 886 Bytes
/
test_decorators.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
from examples.with_decorators import app
from tests._utils import CustomTestCase
class TestDecorators(CustomTestCase):
public_uri = "/cmd/public/echo"
private_uri = "/cmd/protected/echo"
uri = public_uri # default
@staticmethod
def create_app():
app.config["TESTING"] = True
return app
def test_decorators(self):
data = {"args": ["hello", "world"]}
# make request
r1 = self.client.post(self.public_uri, json=data)
self.assertStatus(
r1,
202,
message="202 status code because `login_required` decorator not applied",
)
r2 = self.client.post(self.private_uri, json=data)
print(r1.json, r2.json)
self.assertStatus(
r2,
401,
message="401 status code because `login_required` decorator was applied",
)