From 08339229db6da6e76726162ba325a625b558cfb6 Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Sat, 26 Mar 2022 06:22:34 +0000 Subject: Feature/16 dependencies --- test_api/test_api.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'test_api/test_api.py') diff --git a/test_api/test_api.py b/test_api/test_api.py index cce55f4..02eb491 100644 --- a/test_api/test_api.py +++ b/test_api/test_api.py @@ -1,4 +1,4 @@ -from bottle import get, post, run, HTTPError +from bottle import get, post, run, HTTPError, request @get("/") def get_root(): @@ -24,4 +24,16 @@ def error_404(): def error_500(): raise HTTPError(500, body={"error": "server error"}) +@post("/auth") +def post_auth(): + return {"token": "blah1234"} + +@get("/profile") +def get_profile(): + if request.headers.get("TOKEN") != "blah1234": + raise HTTPError(401, body={"error": "Not Authorized"}) + return { + "user": "John Doe" + } + run(host="localhost", port=8080) -- cgit v1.2.3