Browse Source

tests/test_tutorial/test_middleware/: tests updated: new assertion added

pull/13525/head
alv2017 2 weeks ago
parent
commit
dd343f2a5b
  1. 5
      tests/test_tutorial/test_middleware/test_tutorial001.py
  2. 3
      tests/test_tutorial/test_middleware/test_tutorial002.py

5
tests/test_tutorial/test_middleware/test_tutorial001.py

@ -10,3 +10,8 @@ def test_add_process_time_header_middleware():
assert response.json() == {"hello": "world"}
assert "X-Process-Time" in response.headers
assert len(response.headers["X-Process-Time"]) > 0
# request/response process time
process_time = response.headers["X-Process-Time"]
assert float(process_time) > 0

3
tests/test_tutorial/test_middleware/test_tutorial002.py

@ -10,3 +10,6 @@ def test_add_process_time_header_middleware():
assert response.json() == {"hello": "world"}
assert "X-Process-Time" in response.headers
assert len(response.headers["X-Process-Time"]) > 0
# request/response process time
process_time = response.headers["X-Process-Time"]
assert float(process_time) > 0

Loading…
Cancel
Save