diff --git a/docs_src/sql_databases/sql_app/tests/test_sql_app.py b/docs_src/sql_databases/sql_app/tests/test_sql_app.py index 01c11a863..c60c3356f 100644 --- a/docs_src/sql_databases/sql_app/tests/test_sql_app.py +++ b/docs_src/sql_databases/sql_app/tests/test_sql_app.py @@ -34,14 +34,14 @@ def test_create_user(): "/users/", json={"email": "deadpool@example.com", "password": "chimichangas4life"}, ) - assert response.status_code == 200 + assert response.status_code == 200, response.text data = response.json() assert data["email"] == "deadpool@example.com" assert "id" in data user_id = data["id"] response = client.get(f"/users/{user_id}") - assert response.status_code == 200 + assert response.status_code == 200, response.text data = response.json() assert data["email"] == "deadpool@example.com" assert data["id"] == user_id diff --git a/tests/test_additional_properties.py b/tests/test_additional_properties.py index de38ce050..9e15e6ed0 100644 --- a/tests/test_additional_properties.py +++ b/tests/test_additional_properties.py @@ -100,11 +100,11 @@ openapi_schema = { def test_additional_properties_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_additional_properties_post(): response = client.post("/foo", json={"items": {"foo": 1, "bar": 2}}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"foo": 1, "bar": 2} diff --git a/tests/test_additional_response_extra.py b/tests/test_additional_response_extra.py index a20036cc7..1df1891e0 100644 --- a/tests/test_additional_response_extra.py +++ b/tests/test_additional_response_extra.py @@ -42,11 +42,11 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_path_operation(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"id": "foo"} diff --git a/tests/test_additional_responses_custom_validationerror.py b/tests/test_additional_responses_custom_validationerror.py index ce21bca24..811fe6922 100644 --- a/tests/test_additional_responses_custom_validationerror.py +++ b/tests/test_additional_responses_custom_validationerror.py @@ -96,5 +96,5 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_additional_responses_default_validationerror.py b/tests/test_additional_responses_default_validationerror.py index c7f56367b..6ea372ce8 100644 --- a/tests/test_additional_responses_default_validationerror.py +++ b/tests/test_additional_responses_default_validationerror.py @@ -81,5 +81,5 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_additional_responses_response_class.py b/tests/test_additional_responses_response_class.py index 4d4e1db89..aa549b163 100644 --- a/tests/test_additional_responses_response_class.py +++ b/tests/test_additional_responses_response_class.py @@ -113,5 +113,5 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_additional_responses_router.py b/tests/test_additional_responses_router.py index bc5efeb03..d2b73058f 100644 --- a/tests/test_additional_responses_router.py +++ b/tests/test_additional_responses_router.py @@ -89,23 +89,23 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_a(): response = client.get("/a") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == "a" def test_b(): response = client.get("/b") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == "b" def test_c(): response = client.get("/c") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == "c" diff --git a/tests/test_application.py b/tests/test_application.py index f4d294e1b..f6d77460a 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -1128,7 +1128,7 @@ def test_get_path(path, expected_status, expected_response): def test_swagger_ui(): response = client.get("/docs") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["content-type"] == "text/html; charset=utf-8" assert "swagger-ui-dist" in response.text assert ( @@ -1139,13 +1139,13 @@ def test_swagger_ui(): def test_swagger_ui_oauth2_redirect(): response = client.get("/docs/oauth2-redirect") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["content-type"] == "text/html; charset=utf-8" assert "window.opener.swaggerUIRedirectOauth2" in response.text def test_redoc(): response = client.get("/redoc") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["content-type"] == "text/html; charset=utf-8" assert "redoc@next" in response.text diff --git a/tests/test_custom_swagger_ui_redirect.py b/tests/test_custom_swagger_ui_redirect.py index ac724f8fb..996734be2 100644 --- a/tests/test_custom_swagger_ui_redirect.py +++ b/tests/test_custom_swagger_ui_redirect.py @@ -16,7 +16,7 @@ client = TestClient(app) def test_swagger_ui(): response = client.get("/docs") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["content-type"] == "text/html; charset=utf-8" assert "swagger-ui-dist" in response.text print(client.base_url) @@ -28,7 +28,7 @@ def test_swagger_ui(): def test_swagger_ui_oauth2_redirect(): response = client.get(swagger_ui_oauth2_redirect_url) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["content-type"] == "text/html; charset=utf-8" assert "window.opener.swaggerUIRedirectOauth2" in response.text diff --git a/tests/test_dependency_cache.py b/tests/test_dependency_cache.py index dc7a14cd4..65ed7f946 100644 --- a/tests/test_dependency_cache.py +++ b/tests/test_dependency_cache.py @@ -41,28 +41,28 @@ client = TestClient(app) def test_normal_counter(): counter_holder["counter"] = 0 response = client.get("/counter/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"counter": 1} response = client.get("/counter/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"counter": 2} def test_sub_counter(): counter_holder["counter"] = 0 response = client.get("/sub-counter/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"counter": 1, "subcounter": 1} response = client.get("/sub-counter/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"counter": 2, "subcounter": 2} def test_sub_counter_no_cache(): counter_holder["counter"] = 0 response = client.get("/sub-counter-no-cache/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"counter": 2, "subcounter": 1} response = client.get("/sub-counter-no-cache/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"counter": 4, "subcounter": 3} diff --git a/tests/test_dependency_class.py b/tests/test_dependency_class.py index 4b3bd7243..ba2e3cfcf 100644 --- a/tests/test_dependency_class.py +++ b/tests/test_dependency_class.py @@ -66,5 +66,5 @@ client = TestClient(app) ) def test_class_dependency(route, value): response = client.get(route, params={"value": value}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == value diff --git a/tests/test_dependency_contextmanager.py b/tests/test_dependency_contextmanager.py index 5090e5459..847a41dce 100644 --- a/tests/test_dependency_contextmanager.py +++ b/tests/test_dependency_contextmanager.py @@ -206,7 +206,7 @@ client = TestClient(app) def test_async_state(): assert state["/async"] == f"asyncgen not started" response = client.get("/async") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == f"asyncgen started" assert state["/async"] == f"asyncgen completed" @@ -214,7 +214,7 @@ def test_async_state(): def test_sync_state(): assert state["/sync"] == f"generator not started" response = client.get("/sync") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == f"generator started" assert state["/sync"] == f"generator completed" @@ -237,7 +237,7 @@ def test_sync_raise_other(): def test_async_raise(): response = client.get("/async_raise") - assert response.status_code == 500 + assert response.status_code == 500, response.text assert state["/async_raise"] == "asyncgen raise finalized" assert "/async_raise" in errors errors.clear() @@ -272,7 +272,7 @@ def test_background_tasks(): def test_sync_raise(): response = client.get("/sync_raise") - assert response.status_code == 500 + assert response.status_code == 500, response.text assert state["/sync_raise"] == "generator raise finalized" assert "/sync_raise" in errors errors.clear() @@ -280,14 +280,14 @@ def test_sync_raise(): def test_sync_async_state(): response = client.get("/sync_async") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == f"asyncgen started" assert state["/async"] == f"asyncgen completed" def test_sync_sync_state(): response = client.get("/sync_sync") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == f"generator started" assert state["/sync"] == f"generator completed" @@ -308,7 +308,7 @@ def test_sync_sync_raise_other(): def test_sync_async_raise(): response = client.get("/sync_async_raise") - assert response.status_code == 500 + assert response.status_code == 500, response.text assert state["/async_raise"] == "asyncgen raise finalized" assert "/async_raise" in errors errors.clear() @@ -316,7 +316,7 @@ def test_sync_async_raise(): def test_sync_sync_raise(): response = client.get("/sync_sync_raise") - assert response.status_code == 500 + assert response.status_code == 500, response.text assert state["/sync_raise"] == "generator raise finalized" assert "/sync_raise" in errors errors.clear() diff --git a/tests/test_dependency_duplicates.py b/tests/test_dependency_duplicates.py index 0462b43c8..5e15812b6 100644 --- a/tests/test_dependency_duplicates.py +++ b/tests/test_dependency_duplicates.py @@ -190,13 +190,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_no_duplicates_invalid(): response = client.post("/no-duplicates", json={"item": {"data": "myitem"}}) - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == { "detail": [ { @@ -213,19 +213,19 @@ def test_no_duplicates(): "/no-duplicates", json={"item": {"data": "myitem"}, "item2": {"data": "myitem2"}}, ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"data": "myitem"}, {"data": "myitem2"}] def test_duplicates(): response = client.post("/with-duplicates", json={"data": "myitem"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"data": "myitem"}, {"data": "myitem"}] def test_sub_duplicates(): response = client.post("/with-duplicates-sub", json={"data": "myitem"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [ {"data": "myitem"}, [{"data": "myitem"}, {"data": "myitem"}], diff --git a/tests/test_empty_router.py b/tests/test_empty_router.py index ccca5dbd3..186ceb347 100644 --- a/tests/test_empty_router.py +++ b/tests/test_empty_router.py @@ -21,11 +21,11 @@ client = TestClient(app) def test_use_empty(): with client: response = client.get("/prefix") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == ["OK"] response = client.get("/prefix/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == ["OK"] diff --git a/tests/test_extra_routes.py b/tests/test_extra_routes.py index 150ae1e07..a2459b358 100644 --- a/tests/test_extra_routes.py +++ b/tests/test_extra_routes.py @@ -314,47 +314,47 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_api_route(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo"} def test_get_api_route_not_decorated(): response = client.get("/items-not-decorated/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo"} def test_delete(): response = client.delete("/items/foo", json={"name": "Foo"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo", "item": {"name": "Foo", "price": None}} def test_head(): response = client.head("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["x-fastapi-item-id"] == "foo" def test_options(): response = client.options("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["x-fastapi-item-id"] == "foo" def test_patch(): response = client.patch("/items/foo", json={"name": "Foo"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo", "item": {"name": "Foo", "price": None}} def test_trace(): response = client.request("trace", "/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["content-type"] == "message/http" diff --git a/tests/test_filter_pydantic_sub_model.py b/tests/test_filter_pydantic_sub_model.py index 9d631cc02..9ce753d1e 100644 --- a/tests/test_filter_pydantic_sub_model.py +++ b/tests/test_filter_pydantic_sub_model.py @@ -127,13 +127,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_filter_sub_model(): response = client.get("/model/modelA") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "name": "modelA", "description": "model-a-desc", diff --git a/tests/test_forms_from_non_typing_sequences.py b/tests/test_forms_from_non_typing_sequences.py index a34ec44c2..be917eab7 100644 --- a/tests/test_forms_from_non_typing_sequences.py +++ b/tests/test_forms_from_non_typing_sequences.py @@ -26,7 +26,7 @@ def test_python_list_param_as_form(): response = client.post( "/form/python-list", data={"items": ["first", "second", "third"]} ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == ["first", "second", "third"] @@ -34,7 +34,7 @@ def test_python_set_param_as_form(): response = client.post( "/form/python-set", data={"items": ["first", "second", "third"]} ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert set(response.json()) == {"first", "second", "third"} @@ -42,5 +42,5 @@ def test_python_tuple_param_as_form(): response = client.post( "/form/python-tuple", data={"items": ["first", "second", "third"]} ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == ["first", "second", "third"] diff --git a/tests/test_include_route.py b/tests/test_include_route.py index 61bf34f40..88696e2ba 100644 --- a/tests/test_include_route.py +++ b/tests/test_include_route.py @@ -18,5 +18,5 @@ client = TestClient(app) def test_sub_router(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"hello": "world"} diff --git a/tests/test_infer_param_optionality.py b/tests/test_infer_param_optionality.py index 6d1899897..166c3fcc7 100644 --- a/tests/test_infer_param_optionality.py +++ b/tests/test_infer_param_optionality.py @@ -46,21 +46,21 @@ client = TestClient(app) def test_get_users(): """Check that /users returns expected data""" response = client.get("/users") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"user_id": "u1"}, {"user_id": "u2"}] def test_get_user(): """Check that /users/{user_id} returns expected data""" response = client.get("/users/abc123") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"user_id": "abc123"} def test_get_items_1(): """Check that /items returns expected data""" response = client.get("/items") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [ {"item_id": "i1", "user_id": "u1"}, {"item_id": "i2", "user_id": "u2"}, @@ -70,42 +70,42 @@ def test_get_items_1(): def test_get_items_2(): """Check that /items returns expected data with user_id specified""" response = client.get("/items?user_id=abc123") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"item_id": "i2", "user_id": "abc123"}] def test_get_item_1(): """Check that /items/{item_id} returns expected data""" response = client.get("/items/item01") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "item01"} def test_get_item_2(): """Check that /items/{item_id} returns expected data with user_id specified""" response = client.get("/items/item01?user_id=abc123") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "item01", "user_id": "abc123"} def test_get_users_items(): """Check that /users/{user_id}/items returns expected data""" response = client.get("/users/abc123/items") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"item_id": "i2", "user_id": "abc123"}] def test_get_users_item(): """Check that /users/{user_id}/items returns expected data""" response = client.get("/users/abc123/items/item01") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "item01", "user_id": "abc123"} def test_schema_1(): """Check that the user_id is a required path parameter under /users""" response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text r = response.json() d = { @@ -122,7 +122,7 @@ def test_schema_1(): def test_schema_2(): """Check that the user_id is an optional query parameter under /items""" response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text r = response.json() d = { diff --git a/tests/test_modules_same_name_body/test_main.py b/tests/test_modules_same_name_body/test_main.py index e73b5c408..b0d3330c7 100644 --- a/tests/test_modules_same_name_body/test_main.py +++ b/tests/test_modules_same_name_body/test_main.py @@ -125,31 +125,31 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_post_a(): data = {"a": 2, "b": "foo"} response = client.post("/a/compute", json=data) - assert response.status_code == 200 + assert response.status_code == 200, response.text data = response.json() def test_post_a_invalid(): data = {"a": "bar", "b": "foo"} response = client.post("/a/compute", json=data) - assert response.status_code == 422 + assert response.status_code == 422, response.text def test_post_b(): data = {"a": 2, "b": "foo"} response = client.post("/b/compute/", json=data) - assert response.status_code == 200 + assert response.status_code == 200, response.text data = response.json() def test_post_b_invalid(): data = {"a": "bar", "b": "foo"} response = client.post("/b/compute/", json=data) - assert response.status_code == 422 + assert response.status_code == 422, response.text diff --git a/tests/test_multi_body_errors.py b/tests/test_multi_body_errors.py index 23e6b64d5..f19804261 100644 --- a/tests/test_multi_body_errors.py +++ b/tests/test_multi_body_errors.py @@ -139,23 +139,23 @@ multiple_errors = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_put_correct_body(): response = client.post("/items/", json=[{"name": "Foo", "age": 5}]) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": [{"name": "Foo", "age": 5}]} def test_jsonable_encoder_requiring_error(): response = client.post("/items/", json=[{"name": "Foo", "age": -1.0}]) - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == single_error def test_put_incorrect_body_multiple(): response = client.post("/items/", json=[{"age": "five"}, {"age": "six"}]) - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == multiple_errors diff --git a/tests/test_multi_query_errors.py b/tests/test_multi_query_errors.py index 467ed9f4f..69ea87a9b 100644 --- a/tests/test_multi_query_errors.py +++ b/tests/test_multi_query_errors.py @@ -102,17 +102,17 @@ multiple_errors = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_multi_query(): response = client.get("/items/?q=5&q=6") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": [5, 6]} def test_multi_query_incorrect(): response = client.get("/items/?q=five&q=six") - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == multiple_errors diff --git a/tests/test_no_swagger_ui_redirect.py b/tests/test_no_swagger_ui_redirect.py index b403fa64c..0df9a46e5 100644 --- a/tests/test_no_swagger_ui_redirect.py +++ b/tests/test_no_swagger_ui_redirect.py @@ -14,7 +14,7 @@ client = TestClient(app) def test_swagger_ui(): response = client.get("/docs") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["content-type"] == "text/html; charset=utf-8" assert "swagger-ui-dist" in response.text print(client.base_url) @@ -23,7 +23,7 @@ def test_swagger_ui(): def test_swagger_ui_no_oauth2_redirect(): response = client.get("/docs/oauth2-redirect") - assert response.status_code == 404 + assert response.status_code == 404, response.text def test_response(): diff --git a/tests/test_param_class.py b/tests/test_param_class.py index 3066f22bf..bbb9eefcc 100644 --- a/tests/test_param_class.py +++ b/tests/test_param_class.py @@ -15,11 +15,11 @@ client = TestClient(app) def test_default_param_query_none(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": None} def test_default_param_query(): response = client.get("/items/?q=foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": "foo"} diff --git a/tests/test_param_in_path_and_dependency.py b/tests/test_param_in_path_and_dependency.py index 214d90174..0a94c2151 100644 --- a/tests/test_param_in_path_and_dependency.py +++ b/tests/test_param_in_path_and_dependency.py @@ -90,4 +90,4 @@ def test_reused_param(): def test_read_users(): response = client.get("/users/42") - assert response.status_code == 200 + assert response.status_code == 200, response.text diff --git a/tests/test_path.py b/tests/test_path.py index 26b65e695..d1a58bc66 100644 --- a/tests/test_path.py +++ b/tests/test_path.py @@ -8,13 +8,13 @@ client = TestClient(app) def test_text_get(): response = client.get("/text") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == "Hello World" def test_nonexistent(): response = client.get("/nonexistent") - assert response.status_code == 404 + assert response.status_code == 404, response.text assert response.json() == {"detail": "Not Found"} diff --git a/tests/test_put_no_body.py b/tests/test_put_no_body.py index 95dbf03d2..1c2cfac89 100644 --- a/tests/test_put_no_body.py +++ b/tests/test_put_no_body.py @@ -81,17 +81,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_put_no_body(): response = client.put("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo"} def test_put_no_body_with_body(): response = client.put("/items/foo", json={"name": "Foo"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo"} diff --git a/tests/test_request_body_parameters_media_type.py b/tests/test_request_body_parameters_media_type.py index 2eecd45ea..e3bd91672 100644 --- a/tests/test_request_body_parameters_media_type.py +++ b/tests/test_request_body_parameters_media_type.py @@ -55,7 +55,7 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text openapi_schema = response.json() assert ( openapi_schema["paths"]["/products"]["post"]["requestBody"] diff --git a/tests/test_response_change_status_code.py b/tests/test_response_change_status_code.py index d401b81b0..377ce7897 100644 --- a/tests/test_response_change_status_code.py +++ b/tests/test_response_change_status_code.py @@ -22,5 +22,5 @@ client = TestClient(app) def test_dependency_set_status_code(): response = client.get("/") - assert response.status_code == 201 + assert response.status_code == 201, response.text assert response.json() == {"msg": "Hello World"} diff --git a/tests/test_response_class_no_mediatype.py b/tests/test_response_class_no_mediatype.py index ab869c3c5..eb8500f3a 100644 --- a/tests/test_response_class_no_mediatype.py +++ b/tests/test_response_class_no_mediatype.py @@ -110,5 +110,5 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_response_code_no_body.py b/tests/test_response_code_no_body.py index 7d658d0cf..45e2fabc7 100644 --- a/tests/test_response_code_no_body.py +++ b/tests/test_response_code_no_body.py @@ -104,5 +104,5 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_response_model_sub_types.py b/tests/test_response_model_sub_types.py index 3f1464812..fd972e6a3 100644 --- a/tests/test_response_model_sub_types.py +++ b/tests/test_response_model_sub_types.py @@ -145,16 +145,16 @@ client = TestClient(app) def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_path_operations(): response = client.get("/valid1") - assert response.status_code == 200 + assert response.status_code == 200, response.text response = client.get("/valid2") - assert response.status_code == 200 + assert response.status_code == 200, response.text response = client.get("/valid3") - assert response.status_code == 200 + assert response.status_code == 200, response.text response = client.get("/valid4") - assert response.status_code == 200 + assert response.status_code == 200, response.text diff --git a/tests/test_router_events.py b/tests/test_router_events.py index 5aeb966f3..5ff1fdf9f 100644 --- a/tests/test_router_events.py +++ b/tests/test_router_events.py @@ -77,7 +77,7 @@ def test_router_events(): assert state.router_shutdown is False assert state.sub_router_shutdown is False response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"message": "Hello World"} assert state.app_startup is True assert state.router_startup is True diff --git a/tests/test_router_prefix_with_template.py b/tests/test_router_prefix_with_template.py index b331c24bd..163b213ff 100644 --- a/tests/test_router_prefix_with_template.py +++ b/tests/test_router_prefix_with_template.py @@ -19,5 +19,5 @@ client = TestClient(app) def test_get(): response = client.get("/seg/users/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"segment": "seg", "id": "foo"} diff --git a/tests/test_security_api_key_cookie.py b/tests/test_security_api_key_cookie.py index 6b9642988..a5b2e44f0 100644 --- a/tests/test_security_api_key_cookie.py +++ b/tests/test_security_api_key_cookie.py @@ -52,17 +52,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_api_key(): response = client.get("/users/me", cookies={"key": "secret"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "secret"} def test_security_api_key_no_key(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} diff --git a/tests/test_security_api_key_cookie_optional.py b/tests/test_security_api_key_cookie_optional.py index 0f3da9ad5..96a64f09a 100644 --- a/tests/test_security_api_key_cookie_optional.py +++ b/tests/test_security_api_key_cookie_optional.py @@ -59,17 +59,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_api_key(): response = client.get("/users/me", cookies={"key": "secret"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "secret"} def test_security_api_key_no_key(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_security_api_key_header.py b/tests/test_security_api_key_header.py index a871a65fe..d53395f99 100644 --- a/tests/test_security_api_key_header.py +++ b/tests/test_security_api_key_header.py @@ -52,17 +52,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_api_key(): response = client.get("/users/me", headers={"key": "secret"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "secret"} def test_security_api_key_no_key(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} diff --git a/tests/test_security_api_key_header_optional.py b/tests/test_security_api_key_header_optional.py index f71bac9cf..4ab599c2d 100644 --- a/tests/test_security_api_key_header_optional.py +++ b/tests/test_security_api_key_header_optional.py @@ -58,17 +58,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_api_key(): response = client.get("/users/me", headers={"key": "secret"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "secret"} def test_security_api_key_no_key(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_security_api_key_query.py b/tests/test_security_api_key_query.py index 228f2a7a3..4844c65e2 100644 --- a/tests/test_security_api_key_query.py +++ b/tests/test_security_api_key_query.py @@ -52,17 +52,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_api_key(): response = client.get("/users/me?key=secret") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "secret"} def test_security_api_key_no_key(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} diff --git a/tests/test_security_api_key_query_optional.py b/tests/test_security_api_key_query_optional.py index ddbdd5567..9339b7b3a 100644 --- a/tests/test_security_api_key_query_optional.py +++ b/tests/test_security_api_key_query_optional.py @@ -58,17 +58,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_api_key(): response = client.get("/users/me?key=secret") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "secret"} def test_security_api_key_no_key(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_security_http_base.py b/tests/test_security_http_base.py index 7e2c191ef..894716279 100644 --- a/tests/test_security_http_base.py +++ b/tests/test_security_http_base.py @@ -40,17 +40,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_base(): response = client.get("/users/me", headers={"Authorization": "Other foobar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"scheme": "Other", "credentials": "foobar"} def test_security_http_base_no_credentials(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} diff --git a/tests/test_security_http_base_optional.py b/tests/test_security_http_base_optional.py index 4cc757dfb..5a50f9b88 100644 --- a/tests/test_security_http_base_optional.py +++ b/tests/test_security_http_base_optional.py @@ -46,17 +46,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_base(): response = client.get("/users/me", headers={"Authorization": "Other foobar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"scheme": "Other", "credentials": "foobar"} def test_security_http_base_no_credentials(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_security_http_basic_optional.py b/tests/test_security_http_basic_optional.py index b80fadff3..289bd5c74 100644 --- a/tests/test_security_http_basic_optional.py +++ b/tests/test_security_http_basic_optional.py @@ -46,20 +46,20 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_basic(): auth = HTTPBasicAuth(username="john", password="secret") response = client.get("/users/me", auth=auth) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "john", "password": "secret"} def test_security_http_basic_no_credentials(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} @@ -67,7 +67,7 @@ def test_security_http_basic_invalid_credentials(): response = client.get( "/users/me", headers={"Authorization": "Basic notabase64token"} ) - assert response.status_code == 401 + assert response.status_code == 401, response.text assert response.headers["WWW-Authenticate"] == "Basic" assert response.json() == {"detail": "Invalid authentication credentials"} @@ -76,6 +76,6 @@ def test_security_http_basic_non_basic_credentials(): payload = b64encode(b"johnsecret").decode("ascii") auth_header = f"Basic {payload}" response = client.get("/users/me", headers={"Authorization": auth_header}) - assert response.status_code == 401 + assert response.status_code == 401, response.text assert response.headers["WWW-Authenticate"] == "Basic" assert response.json() == {"detail": "Invalid authentication credentials"} diff --git a/tests/test_security_http_basic_realm.py b/tests/test_security_http_basic_realm.py index 117c9ef02..54867c2e0 100644 --- a/tests/test_security_http_basic_realm.py +++ b/tests/test_security_http_basic_realm.py @@ -43,21 +43,21 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_basic(): auth = HTTPBasicAuth(username="john", password="secret") response = client.get("/users/me", auth=auth) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "john", "password": "secret"} def test_security_http_basic_no_credentials(): response = client.get("/users/me") assert response.json() == {"detail": "Not authenticated"} - assert response.status_code == 401 + assert response.status_code == 401, response.text assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"' @@ -65,7 +65,7 @@ def test_security_http_basic_invalid_credentials(): response = client.get( "/users/me", headers={"Authorization": "Basic notabase64token"} ) - assert response.status_code == 401 + assert response.status_code == 401, response.text assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"' assert response.json() == {"detail": "Invalid authentication credentials"} @@ -74,6 +74,6 @@ def test_security_http_basic_non_basic_credentials(): payload = b64encode(b"johnsecret").decode("ascii") auth_header = f"Basic {payload}" response = client.get("/users/me", headers={"Authorization": auth_header}) - assert response.status_code == 401 + assert response.status_code == 401, response.text assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"' assert response.json() == {"detail": "Invalid authentication credentials"} diff --git a/tests/test_security_http_bearer.py b/tests/test_security_http_bearer.py index a05fbf447..39d8c8402 100644 --- a/tests/test_security_http_bearer.py +++ b/tests/test_security_http_bearer.py @@ -40,23 +40,23 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_bearer(): response = client.get("/users/me", headers={"Authorization": "Bearer foobar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"scheme": "Bearer", "credentials": "foobar"} def test_security_http_bearer_no_credentials(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} def test_security_http_bearer_incorrect_scheme_credentials(): response = client.get("/users/me", headers={"Authorization": "Basic notreally"}) - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Invalid authentication credentials"} diff --git a/tests/test_security_http_bearer_optional.py b/tests/test_security_http_bearer_optional.py index f1f202abb..2e7dfb8a4 100644 --- a/tests/test_security_http_bearer_optional.py +++ b/tests/test_security_http_bearer_optional.py @@ -46,23 +46,23 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_bearer(): response = client.get("/users/me", headers={"Authorization": "Bearer foobar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"scheme": "Bearer", "credentials": "foobar"} def test_security_http_bearer_no_credentials(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} def test_security_http_bearer_incorrect_scheme_credentials(): response = client.get("/users/me", headers={"Authorization": "Basic notreally"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_security_http_digest.py b/tests/test_security_http_digest.py index e6b991991..8388824ff 100644 --- a/tests/test_security_http_digest.py +++ b/tests/test_security_http_digest.py @@ -40,19 +40,19 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_digest(): response = client.get("/users/me", headers={"Authorization": "Digest foobar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"scheme": "Digest", "credentials": "foobar"} def test_security_http_digest_no_credentials(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} @@ -60,5 +60,5 @@ def test_security_http_digest_incorrect_scheme_credentials(): response = client.get( "/users/me", headers={"Authorization": "Other invalidauthorization"} ) - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Invalid authentication credentials"} diff --git a/tests/test_security_http_digest_optional.py b/tests/test_security_http_digest_optional.py index 83c453935..2177b819f 100644 --- a/tests/test_security_http_digest_optional.py +++ b/tests/test_security_http_digest_optional.py @@ -46,19 +46,19 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_http_digest(): response = client.get("/users/me", headers={"Authorization": "Digest foobar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"scheme": "Digest", "credentials": "foobar"} def test_security_http_digest_no_credentials(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} @@ -66,5 +66,5 @@ def test_security_http_digest_incorrect_scheme_credentials(): response = client.get( "/users/me", headers={"Authorization": "Other invalidauthorization"} ) - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Invalid authentication credentials"} diff --git a/tests/test_security_oauth2.py b/tests/test_security_oauth2.py index 3f96846d4..266dab6e5 100644 --- a/tests/test_security_oauth2.py +++ b/tests/test_security_oauth2.py @@ -156,25 +156,25 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_oauth2(): response = client.get("/users/me", headers={"Authorization": "Bearer footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Bearer footokenbar"} def test_security_oauth2_password_other_header(): response = client.get("/users/me", headers={"Authorization": "Other footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Other footokenbar"} def test_security_oauth2_password_bearer_no_header(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} diff --git a/tests/test_security_oauth2_authorization_code_bearer.py b/tests/test_security_oauth2_authorization_code_bearer.py index ab088d67c..3e0155e1f 100644 --- a/tests/test_security_oauth2_authorization_code_bearer.py +++ b/tests/test_security_oauth2_authorization_code_bearer.py @@ -55,23 +55,23 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_no_token(): response = client.get("/items") - assert response.status_code == 401 + assert response.status_code == 401, response.text assert response.json() == {"detail": "Not authenticated"} def test_incorrect_token(): response = client.get("/items", headers={"Authorization": "Non-existent testtoken"}) - assert response.status_code == 401 + assert response.status_code == 401, response.text assert response.json() == {"detail": "Not authenticated"} def test_token(): response = client.get("/items", headers={"Authorization": "Bearer testtoken"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"token": "testtoken"} diff --git a/tests/test_security_oauth2_optional.py b/tests/test_security_oauth2_optional.py index 8732dd037..06967bd76 100644 --- a/tests/test_security_oauth2_optional.py +++ b/tests/test_security_oauth2_optional.py @@ -160,25 +160,25 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_oauth2(): response = client.get("/users/me", headers={"Authorization": "Bearer footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Bearer footokenbar"} def test_security_oauth2_password_other_header(): response = client.get("/users/me", headers={"Authorization": "Other footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Other footokenbar"} def test_security_oauth2_password_bearer_no_header(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_security_oauth2_password_bearer_optional.py b/tests/test_security_oauth2_password_bearer_optional.py index 0c36796ae..3d6637d4a 100644 --- a/tests/test_security_oauth2_password_bearer_optional.py +++ b/tests/test_security_oauth2_password_bearer_optional.py @@ -49,23 +49,23 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_no_token(): response = client.get("/items") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} def test_token(): response = client.get("/items", headers={"Authorization": "Bearer testtoken"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"token": "testtoken"} def test_incorrect_token(): response = client.get("/items", headers={"Authorization": "Notexistent testtoken"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_security_openid_connect.py b/tests/test_security_openid_connect.py index 07596ecfe..8203961be 100644 --- a/tests/test_security_openid_connect.py +++ b/tests/test_security_openid_connect.py @@ -52,23 +52,23 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_oauth2(): response = client.get("/users/me", headers={"Authorization": "Bearer footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Bearer footokenbar"} def test_security_oauth2_password_other_header(): response = client.get("/users/me", headers={"Authorization": "Other footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Other footokenbar"} def test_security_oauth2_password_bearer_no_header(): response = client.get("/users/me") - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "Not authenticated"} diff --git a/tests/test_security_openid_connect_optional.py b/tests/test_security_openid_connect_optional.py index 8aff16f28..4577dfebb 100644 --- a/tests/test_security_openid_connect_optional.py +++ b/tests/test_security_openid_connect_optional.py @@ -58,23 +58,23 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_security_oauth2(): response = client.get("/users/me", headers={"Authorization": "Bearer footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Bearer footokenbar"} def test_security_oauth2_password_other_header(): response = client.get("/users/me", headers={"Authorization": "Other footokenbar"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"username": "Other footokenbar"} def test_security_oauth2_password_bearer_no_header(): response = client.get("/users/me") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Create an account first"} diff --git a/tests/test_starlette_exception.py b/tests/test_starlette_exception.py index 6cd9b8208..c83af6ca5 100644 --- a/tests/test_starlette_exception.py +++ b/tests/test_starlette_exception.py @@ -126,31 +126,31 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_item(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": "The Foo Wrestlers"} def test_get_item_not_found(): response = client.get("/items/bar") - assert response.status_code == 404 + assert response.status_code == 404, response.text assert response.headers.get("x-error") == "Some custom header" assert response.json() == {"detail": "Item not found"} def test_get_starlette_item(): response = client.get("/starlette-items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": "The Foo Wrestlers"} def test_get_starlette_item_not_found(): response = client.get("/starlette-items/bar") - assert response.status_code == 404 + assert response.status_code == 404, response.text assert response.headers.get("x-error") is None assert response.json() == {"detail": "Item not found"} diff --git a/tests/test_starlette_urlconvertors.py b/tests/test_starlette_urlconvertors.py index 97fa41f29..1ea22116c 100644 --- a/tests/test_starlette_urlconvertors.py +++ b/tests/test_starlette_urlconvertors.py @@ -25,7 +25,7 @@ client = TestClient(app) def test_route_converters_int(): # Test integer conversion response = client.get("/int/5") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"int": 5} assert app.url_path_for("int_convertor", param=5) == "/int/5" @@ -33,7 +33,7 @@ def test_route_converters_int(): def test_route_converters_float(): # Test float conversion response = client.get("/float/25.5") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"float": 25.5} assert app.url_path_for("float_convertor", param=25.5) == "/float/25.5" @@ -41,7 +41,7 @@ def test_route_converters_float(): def test_route_converters_path(): # Test path conversion response = client.get("/path/some/example") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"path": "some/example"} diff --git a/tests/test_sub_callbacks.py b/tests/test_sub_callbacks.py index c5a22e8b7..3de3cea99 100644 --- a/tests/test_sub_callbacks.py +++ b/tests/test_sub_callbacks.py @@ -221,7 +221,7 @@ def test_get(): response = client.post( "/invoices/", json={"id": "fooinvoice", "customer": "John", "total": 5.3} ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Invoice received"} diff --git a/tests/test_swagger_ui_init_oauth.py b/tests/test_swagger_ui_init_oauth.py index fc6b265db..371cd72fb 100644 --- a/tests/test_swagger_ui_init_oauth.py +++ b/tests/test_swagger_ui_init_oauth.py @@ -16,7 +16,7 @@ client = TestClient(app) def test_swagger_ui(): response = client.get("/docs") - assert response.status_code == 200 + assert response.status_code == 200, response.text print(response.text) assert f"ui.initOAuth" in response.text assert f'"appName": "The Predendapp"' in response.text diff --git a/tests/test_tutorial/test_additional_responses/test_tutorial001.py b/tests/test_tutorial/test_additional_responses/test_tutorial001.py index b6ba63f5a..82dec78ad 100644 --- a/tests/test_tutorial/test_additional_responses/test_tutorial001.py +++ b/tests/test_tutorial/test_additional_responses/test_tutorial001.py @@ -100,17 +100,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_path_operation(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"id": "foo", "value": "there goes my hero"} def test_path_operation_not_found(): response = client.get("/items/bar") - assert response.status_code == 404 + assert response.status_code == 404, response.text assert response.json() == {"message": "Item not found"} diff --git a/tests/test_tutorial/test_additional_responses/test_tutorial002.py b/tests/test_tutorial/test_additional_responses/test_tutorial002.py index 998070b3d..274c95663 100644 --- a/tests/test_tutorial/test_additional_responses/test_tutorial002.py +++ b/tests/test_tutorial/test_additional_responses/test_tutorial002.py @@ -96,20 +96,20 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_path_operation(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"id": "foo", "value": "there goes my hero"} def test_path_operation_img(): shutil.copy("./docs/en/docs/img/favicon.png", "./image.png") response = client.get("/items/foo?img=1") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["Content-Type"] == "image/png" assert len(response.content) os.remove("./image.png") diff --git a/tests/test_tutorial/test_additional_responses/test_tutorial003.py b/tests/test_tutorial/test_additional_responses/test_tutorial003.py index 52144f7ae..6787f9d29 100644 --- a/tests/test_tutorial/test_additional_responses/test_tutorial003.py +++ b/tests/test_tutorial/test_additional_responses/test_tutorial003.py @@ -101,17 +101,17 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_path_operation(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"id": "foo", "value": "there goes my hero"} def test_path_operation_not_found(): response = client.get("/items/bar") - assert response.status_code == 404 + assert response.status_code == 404, response.text assert response.json() == {"message": "Item not found"} diff --git a/tests/test_tutorial/test_additional_responses/test_tutorial004.py b/tests/test_tutorial/test_additional_responses/test_tutorial004.py index 11f1227e4..d7456630e 100644 --- a/tests/test_tutorial/test_additional_responses/test_tutorial004.py +++ b/tests/test_tutorial/test_additional_responses/test_tutorial004.py @@ -99,20 +99,20 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_path_operation(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"id": "foo", "value": "there goes my hero"} def test_path_operation_img(): shutil.copy("./docs/en/docs/img/favicon.png", "./image.png") response = client.get("/items/foo?img=1") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.headers["Content-Type"] == "image/png" assert len(response.content) os.remove("./image.png") diff --git a/tests/test_tutorial/test_additional_status_codes/test_tutorial001.py b/tests/test_tutorial/test_additional_status_codes/test_tutorial001.py index ccfe343dc..e2131c71b 100644 --- a/tests/test_tutorial/test_additional_status_codes/test_tutorial001.py +++ b/tests/test_tutorial/test_additional_status_codes/test_tutorial001.py @@ -7,11 +7,11 @@ client = TestClient(app) def test_update(): response = client.put("/items/foo", json={"name": "Wrestlers"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"name": "Wrestlers", "size": None} def test_create(): response = client.put("/items/red", json={"name": "Chillies"}) - assert response.status_code == 201 + assert response.status_code == 201, response.text assert response.json() == {"name": "Chillies", "size": None} diff --git a/tests/test_tutorial/test_advanced_middleware/test_tutorial001.py b/tests/test_tutorial/test_advanced_middleware/test_tutorial001.py index f49f50f0c..fb5058bcd 100644 --- a/tests/test_tutorial/test_advanced_middleware/test_tutorial001.py +++ b/tests/test_tutorial/test_advanced_middleware/test_tutorial001.py @@ -6,9 +6,9 @@ from advanced_middleware.tutorial001 import app def test_middleware(): client = TestClient(app, base_url="https://testserver") response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text client = TestClient(app) response = client.get("/", allow_redirects=False) - assert response.status_code == 307 + assert response.status_code == 307, response.text assert response.headers["location"] == "https://testserver/" diff --git a/tests/test_tutorial/test_advanced_middleware/test_tutorial002.py b/tests/test_tutorial/test_advanced_middleware/test_tutorial002.py index da1d60ba8..bac2dea8b 100644 --- a/tests/test_tutorial/test_advanced_middleware/test_tutorial002.py +++ b/tests/test_tutorial/test_advanced_middleware/test_tutorial002.py @@ -6,10 +6,10 @@ from advanced_middleware.tutorial002 import app def test_middleware(): client = TestClient(app, base_url="http://example.com") response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text client = TestClient(app, base_url="http://subdomain.example.com") response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text client = TestClient(app, base_url="http://invalidhost") response = client.get("/") - assert response.status_code == 400 + assert response.status_code == 400, response.text diff --git a/tests/test_tutorial/test_advanced_middleware/test_tutorial003.py b/tests/test_tutorial/test_advanced_middleware/test_tutorial003.py index 0d482b81c..230a5742d 100644 --- a/tests/test_tutorial/test_advanced_middleware/test_tutorial003.py +++ b/tests/test_tutorial/test_advanced_middleware/test_tutorial003.py @@ -14,9 +14,9 @@ client = TestClient(app) def test_middleware(): response = client.get("/large", headers={"accept-encoding": "gzip"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.text == "x" * 4000 assert response.headers["Content-Encoding"] == "gzip" assert int(response.headers["Content-Length"]) < 4000 response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text diff --git a/tests/test_tutorial/test_async_sql_databases/test_tutorial001.py b/tests/test_tutorial/test_async_sql_databases/test_tutorial001.py index 553f42c2f..17214f874 100644 --- a/tests/test_tutorial/test_async_sql_databases/test_tutorial001.py +++ b/tests/test_tutorial/test_async_sql_databases/test_tutorial001.py @@ -113,7 +113,7 @@ openapi_schema = { def test_openapi_schema(): with TestClient(app) as client: response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema @@ -121,11 +121,11 @@ def test_create_read(): with TestClient(app) as client: note = {"text": "Foo bar", "completed": False} response = client.post("/notes/", json=note) - assert response.status_code == 200 + assert response.status_code == 200, response.text data = response.json() assert data["text"] == note["text"] assert data["completed"] == note["completed"] assert "id" in data response = client.get(f"/notes/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert data in response.json() diff --git a/tests/test_tutorial/test_background_tasks/test_tutorial001.py b/tests/test_tutorial/test_background_tasks/test_tutorial001.py index a1381a9d5..8c8628982 100644 --- a/tests/test_tutorial/test_background_tasks/test_tutorial001.py +++ b/tests/test_tutorial/test_background_tasks/test_tutorial001.py @@ -13,7 +13,7 @@ def test(): if log.is_file(): os.remove(log) # pragma: no cover response = client.post("/send-notification/foo@example.com") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"message": "Notification sent in the background"} with open("./log.txt") as f: assert "notification for foo@example.com: some notification" in f.read() diff --git a/tests/test_tutorial/test_background_tasks/test_tutorial002.py b/tests/test_tutorial/test_background_tasks/test_tutorial002.py index 861e83aef..d3ad37271 100644 --- a/tests/test_tutorial/test_background_tasks/test_tutorial002.py +++ b/tests/test_tutorial/test_background_tasks/test_tutorial002.py @@ -13,7 +13,7 @@ def test(): if log.is_file(): os.remove(log) # pragma: no cover response = client.post("/send-notification/foo@example.com?q=some-query") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"message": "Message sent"} with open("./log.txt") as f: assert "found query: some-query\nmessage to foo@example.com" in f.read() diff --git a/tests/test_tutorial/test_bigger_applications/test_main.py b/tests/test_tutorial/test_bigger_applications/test_main.py index b60bd6499..1a90ba05b 100644 --- a/tests/test_tutorial/test_bigger_applications/test_main.py +++ b/tests/test_tutorial/test_bigger_applications/test_main.py @@ -270,7 +270,7 @@ def test_get_path(path, expected_status, expected_response, headers): def test_put_no_header(): response = client.put("/items/foo") - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == { "detail": [ { @@ -284,17 +284,17 @@ def test_put_no_header(): def test_put_invalid_header(): response = client.put("/items/foo", headers={"X-Token": "invalid"}) - assert response.status_code == 400 + assert response.status_code == 400, response.text assert response.json() == {"detail": "X-Token header invalid"} def test_put(): response = client.put("/items/foo", headers={"X-Token": "fake-super-secret-token"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo", "name": "The Fighters"} def test_put_forbidden(): response = client.put("/items/bar", headers={"X-Token": "fake-super-secret-token"}) - assert response.status_code == 403 + assert response.status_code == 403, response.text assert response.json() == {"detail": "You can only update the item: foo"} diff --git a/tests/test_tutorial/test_body/test_tutorial001.py b/tests/test_tutorial/test_body/test_tutorial001.py index f3aded151..293981a09 100644 --- a/tests/test_tutorial/test_body/test_tutorial001.py +++ b/tests/test_tutorial/test_body/test_tutorial001.py @@ -85,7 +85,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema @@ -176,5 +176,5 @@ def test_post_body(path, body, expected_status, expected_response): def test_post_broken_body(): response = client.post("/items/", data={"name": "Foo", "price": 50.5}) - assert response.status_code == 400 + assert response.status_code == 400, response.text assert response.json() == {"detail": "There was an error parsing the body"} diff --git a/tests/test_tutorial/test_body_fields/test_tutorial001.py b/tests/test_tutorial/test_body_fields/test_tutorial001.py index a437c62ec..b5e95a3cf 100644 --- a/tests/test_tutorial/test_body_fields/test_tutorial001.py +++ b/tests/test_tutorial/test_body_fields/test_tutorial001.py @@ -120,7 +120,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_body_multiple_params/test_tutorial001.py b/tests/test_tutorial/test_body_multiple_params/test_tutorial001.py index 6241396f3..19972668d 100644 --- a/tests/test_tutorial/test_body_multiple_params/test_tutorial001.py +++ b/tests/test_tutorial/test_body_multiple_params/test_tutorial001.py @@ -103,7 +103,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_body_multiple_params/test_tutorial003.py b/tests/test_tutorial/test_body_multiple_params/test_tutorial003.py index d93da39fc..d228f9f67 100644 --- a/tests/test_tutorial/test_body_multiple_params/test_tutorial003.py +++ b/tests/test_tutorial/test_body_multiple_params/test_tutorial003.py @@ -114,7 +114,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_body_nested_models/test_tutorial009.py b/tests/test_tutorial/test_body_nested_models/test_tutorial009.py index 7ea7e5c74..8a9f39533 100644 --- a/tests/test_tutorial/test_body_nested_models/test_tutorial009.py +++ b/tests/test_tutorial/test_body_nested_models/test_tutorial009.py @@ -77,21 +77,21 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_post_body(): data = {"2": 2.2, "3": 3.3} response = client.post("/index-weights/", json=data) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == data def test_post_invalid_body(): data = {"foo": 2.2, "3": 3.3} response = client.post("/index-weights/", json=data) - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == { "detail": [ { diff --git a/tests/test_tutorial/test_body_updates/test_tutorial001.py b/tests/test_tutorial/test_body_updates/test_tutorial001.py index d07776556..b5f77af12 100644 --- a/tests/test_tutorial/test_body_updates/test_tutorial001.py +++ b/tests/test_tutorial/test_body_updates/test_tutorial001.py @@ -133,13 +133,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get(): response = client.get("/items/baz") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "name": "Baz", "description": None, diff --git a/tests/test_tutorial/test_cors/test_tutorial001.py b/tests/test_tutorial/test_cors/test_tutorial001.py index dc3078e48..e3f6b7350 100644 --- a/tests/test_tutorial/test_cors/test_tutorial001.py +++ b/tests/test_tutorial/test_cors/test_tutorial001.py @@ -12,7 +12,7 @@ def test_cors(): "Access-Control-Request-Headers": "X-Example", } response = client.options("/", headers=headers) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.text == "OK" assert ( response.headers["access-control-allow-origin"] @@ -23,7 +23,7 @@ def test_cors(): # Test standard response headers = {"Origin": "https://localhost.tiangolo.com"} response = client.get("/", headers=headers) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"message": "Hello World"} assert ( response.headers["access-control-allow-origin"] @@ -32,6 +32,6 @@ def test_cors(): # Test non-CORS response response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"message": "Hello World"} assert "access-control-allow-origin" not in response.headers diff --git a/tests/test_tutorial/test_custom_response/test_tutorial001b.py b/tests/test_tutorial/test_custom_response/test_tutorial001b.py index 08f372897..b061ef20b 100644 --- a/tests/test_tutorial/test_custom_response/test_tutorial001b.py +++ b/tests/test_tutorial/test_custom_response/test_tutorial001b.py @@ -26,11 +26,11 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_custom_response(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"item_id": "Foo"}] diff --git a/tests/test_tutorial/test_custom_response/test_tutorial004.py b/tests/test_tutorial/test_custom_response/test_tutorial004.py index c9d120058..9cc27705f 100644 --- a/tests/test_tutorial/test_custom_response/test_tutorial004.py +++ b/tests/test_tutorial/test_custom_response/test_tutorial004.py @@ -37,11 +37,11 @@ html_contents = """ def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_custom_response(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.text == html_contents diff --git a/tests/test_tutorial/test_custom_response/test_tutorial005.py b/tests/test_tutorial/test_custom_response/test_tutorial005.py index 4755408e2..d5a74308c 100644 --- a/tests/test_tutorial/test_custom_response/test_tutorial005.py +++ b/tests/test_tutorial/test_custom_response/test_tutorial005.py @@ -26,11 +26,11 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get(): response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.text == "Hello World" diff --git a/tests/test_tutorial/test_custom_response/test_tutorial006.py b/tests/test_tutorial/test_custom_response/test_tutorial006.py index 2a90568c4..07daf2cf2 100644 --- a/tests/test_tutorial/test_custom_response/test_tutorial006.py +++ b/tests/test_tutorial/test_custom_response/test_tutorial006.py @@ -7,5 +7,5 @@ client = TestClient(app) def test_get(): response = client.get("/typer", allow_redirects=False) - assert response.status_code == 307 + assert response.status_code == 307, response.text assert response.headers["location"] == "https://typer.tiangolo.com" diff --git a/tests/test_tutorial/test_dependencies/test_tutorial001.py b/tests/test_tutorial/test_dependencies/test_tutorial001.py index 353e5c8ab..73d65cf50 100644 --- a/tests/test_tutorial/test_dependencies/test_tutorial001.py +++ b/tests/test_tutorial/test_dependencies/test_tutorial001.py @@ -128,7 +128,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_dependencies/test_tutorial004.py b/tests/test_tutorial/test_dependencies/test_tutorial004.py index 7e41bbd3b..bf62e9cbc 100644 --- a/tests/test_tutorial/test_dependencies/test_tutorial004.py +++ b/tests/test_tutorial/test_dependencies/test_tutorial004.py @@ -86,7 +86,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_dependencies/test_tutorial006.py b/tests/test_tutorial/test_dependencies/test_tutorial006.py index 62f13f07a..f3279bfe6 100644 --- a/tests/test_tutorial/test_dependencies/test_tutorial006.py +++ b/tests/test_tutorial/test_dependencies/test_tutorial006.py @@ -79,13 +79,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_no_headers(): response = client.get("/items/") - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == { "detail": [ { @@ -104,7 +104,7 @@ def test_get_no_headers(): def test_get_invalid_one_header(): response = client.get("/items/", headers={"X-Token": "invalid"}) - assert response.status_code == 400 + assert response.status_code == 400, response.text assert response.json() == {"detail": "X-Token header invalid"} @@ -112,7 +112,7 @@ def test_get_invalid_second_header(): response = client.get( "/items/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"} ) - assert response.status_code == 400 + assert response.status_code == 400, response.text assert response.json() == {"detail": "X-Key header invalid"} @@ -124,5 +124,5 @@ def test_get_valid_headers(): "X-Key": "fake-super-secret-key", }, ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"item": "Foo"}, {"item": "Bar"}] diff --git a/tests/test_tutorial/test_events/test_tutorial001.py b/tests/test_tutorial/test_events/test_tutorial001.py index ebd3550af..2ab89b069 100644 --- a/tests/test_tutorial/test_events/test_tutorial001.py +++ b/tests/test_tutorial/test_events/test_tutorial001.py @@ -72,8 +72,8 @@ openapi_schema = { def test_events(): with TestClient(app) as client: response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"name": "Fighters"} diff --git a/tests/test_tutorial/test_events/test_tutorial002.py b/tests/test_tutorial/test_events/test_tutorial002.py index bb1880247..c06ea3f1c 100644 --- a/tests/test_tutorial/test_events/test_tutorial002.py +++ b/tests/test_tutorial/test_events/test_tutorial002.py @@ -25,10 +25,10 @@ openapi_schema = { def test_events(): with TestClient(app) as client: response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"name": "Foo"}] with open("log.txt") as log: assert "Application shutdown" in log.read() diff --git a/tests/test_tutorial/test_extending_openapi/test_tutorial001.py b/tests/test_tutorial/test_extending_openapi/test_tutorial001.py index c0cb8ddaa..88997f59d 100644 --- a/tests/test_tutorial/test_extending_openapi/test_tutorial001.py +++ b/tests/test_tutorial/test_extending_openapi/test_tutorial001.py @@ -31,14 +31,14 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"name": "Foo"}] diff --git a/tests/test_tutorial/test_extending_openapi/test_tutorial002.py b/tests/test_tutorial/test_extending_openapi/test_tutorial002.py index 592fd8420..06fb62f85 100644 --- a/tests/test_tutorial/test_extending_openapi/test_tutorial002.py +++ b/tests/test_tutorial/test_extending_openapi/test_tutorial002.py @@ -19,24 +19,24 @@ def client(): def test_swagger_ui_html(client: TestClient): response = client.get("/docs") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert "/static/swagger-ui-bundle.js" in response.text assert "/static/swagger-ui.css" in response.text def test_swagger_ui_oauth2_redirect_html(client: TestClient): response = client.get("/docs/oauth2-redirect") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert "window.opener.swaggerUIRedirectOauth2" in response.text def test_redoc_html(client: TestClient): response = client.get("/redoc") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert "/static/redoc.standalone.js" in response.text def test_api(client: TestClient): response = client.get("/users/john") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json()["message"] == "Hello john" diff --git a/tests/test_tutorial/test_extra_data_types/test_tutorial001.py b/tests/test_tutorial/test_extra_data_types/test_tutorial001.py index 9695bce26..72de6308b 100644 --- a/tests/test_tutorial/test_extra_data_types/test_tutorial001.py +++ b/tests/test_tutorial/test_extra_data_types/test_tutorial001.py @@ -113,7 +113,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema @@ -134,5 +134,5 @@ def test_extra_types(): } ) response = client.put(f"/items/{item_id}", json=data) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == expected_response diff --git a/tests/test_tutorial/test_extra_models/test_tutorial003.py b/tests/test_tutorial/test_extra_models/test_tutorial003.py index 2662a5710..150b899c6 100644 --- a/tests/test_tutorial/test_extra_models/test_tutorial003.py +++ b/tests/test_tutorial/test_extra_models/test_tutorial003.py @@ -102,13 +102,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_car(): response = client.get("/items/item1") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "description": "All my friends drive a low rider", "type": "car", @@ -117,7 +117,7 @@ def test_get_car(): def test_get_plane(): response = client.get("/items/item2") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "description": "Music is my aeroplane, it's my aeroplane", "type": "plane", diff --git a/tests/test_tutorial/test_extra_models/test_tutorial004.py b/tests/test_tutorial/test_extra_models/test_tutorial004.py index cb3bb3360..08f859656 100644 --- a/tests/test_tutorial/test_extra_models/test_tutorial004.py +++ b/tests/test_tutorial/test_extra_models/test_tutorial004.py @@ -47,13 +47,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_items(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [ {"name": "Foo", "description": "There comes my hero"}, {"name": "Red", "description": "It's my aeroplane"}, diff --git a/tests/test_tutorial/test_extra_models/test_tutorial005.py b/tests/test_tutorial/test_extra_models/test_tutorial005.py index 413c14775..bce5efece 100644 --- a/tests/test_tutorial/test_extra_models/test_tutorial005.py +++ b/tests/test_tutorial/test_extra_models/test_tutorial005.py @@ -34,11 +34,11 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_items(): response = client.get("/keyword-weights/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"foo": 2.3, "bar": 3.4} diff --git a/tests/test_tutorial/test_handling_errors/test_tutorial001.py b/tests/test_tutorial/test_handling_errors/test_tutorial001.py index da8ee9864..5a80bc5f6 100644 --- a/tests/test_tutorial/test_handling_errors/test_tutorial001.py +++ b/tests/test_tutorial/test_handling_errors/test_tutorial001.py @@ -73,18 +73,18 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_item(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": "The Foo Wrestlers"} def test_get_item_not_found(): response = client.get("/items/bar") - assert response.status_code == 404 + assert response.status_code == 404, response.text assert response.headers.get("x-error") is None assert response.json() == {"detail": "Item not found"} diff --git a/tests/test_tutorial/test_handling_errors/test_tutorial002.py b/tests/test_tutorial/test_handling_errors/test_tutorial002.py index f822ae0a1..4ffce6b2c 100644 --- a/tests/test_tutorial/test_handling_errors/test_tutorial002.py +++ b/tests/test_tutorial/test_handling_errors/test_tutorial002.py @@ -73,18 +73,18 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_item_header(): response = client.get("/items-header/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": "The Foo Wrestlers"} def test_get_item_not_found_header(): response = client.get("/items-header/bar") - assert response.status_code == 404 + assert response.status_code == 404, response.text assert response.headers.get("x-error") == "There goes my error" assert response.json() == {"detail": "Item not found"} diff --git a/tests/test_tutorial/test_handling_errors/test_tutorial003.py b/tests/test_tutorial/test_handling_errors/test_tutorial003.py index f63dc10d2..48da5db7c 100644 --- a/tests/test_tutorial/test_handling_errors/test_tutorial003.py +++ b/tests/test_tutorial/test_handling_errors/test_tutorial003.py @@ -73,19 +73,19 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get(): response = client.get("/unicorns/shinny") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"unicorn_name": "shinny"} def test_get_exception(): response = client.get("/unicorns/yolo") - assert response.status_code == 418 + assert response.status_code == 418, response.text assert response.json() == { "message": "Oops! yolo did something. There goes a rainbow..." } diff --git a/tests/test_tutorial/test_handling_errors/test_tutorial004.py b/tests/test_tutorial/test_handling_errors/test_tutorial004.py index eb8d629ec..58b97c003 100644 --- a/tests/test_tutorial/test_handling_errors/test_tutorial004.py +++ b/tests/test_tutorial/test_handling_errors/test_tutorial004.py @@ -73,13 +73,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_validation_error(): response = client.get("/items/foo") - assert response.status_code == 400 + assert response.status_code == 400, response.text validation_error_str_lines = [ b"1 validation error for Request", b"path -> item_id", @@ -90,11 +90,11 @@ def test_get_validation_error(): def test_get_http_error(): response = client.get("/items/3") - assert response.status_code == 418 + assert response.status_code == 418, response.text assert response.content == b"Nope! I don't like 3." def test_get(): response = client.get("/items/2") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": 2} diff --git a/tests/test_tutorial/test_handling_errors/test_tutorial005.py b/tests/test_tutorial/test_handling_errors/test_tutorial005.py index f62c05ae5..f974466d1 100644 --- a/tests/test_tutorial/test_handling_errors/test_tutorial005.py +++ b/tests/test_tutorial/test_handling_errors/test_tutorial005.py @@ -82,13 +82,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_post_validation_error(): response = client.post("/items/", json={"title": "towel", "size": "XL"}) - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == { "detail": [ { @@ -104,5 +104,5 @@ def test_post_validation_error(): def test_post(): data = {"title": "towel", "size": 5} response = client.post("/items/", json=data) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == data diff --git a/tests/test_tutorial/test_handling_errors/test_tutorial006.py b/tests/test_tutorial/test_handling_errors/test_tutorial006.py index 87d9df4e1..2b945fe90 100644 --- a/tests/test_tutorial/test_handling_errors/test_tutorial006.py +++ b/tests/test_tutorial/test_handling_errors/test_tutorial006.py @@ -73,13 +73,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get_validation_error(): response = client.get("/items/foo") - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == { "detail": [ { @@ -93,11 +93,11 @@ def test_get_validation_error(): def test_get_http_error(): response = client.get("/items/3") - assert response.status_code == 418 + assert response.status_code == 418, response.text assert response.json() == {"detail": "Nope! I don't like 3."} def test_get(): response = client.get("/items/2") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": 2} diff --git a/tests/test_tutorial/test_metadata/test_tutorial001.py b/tests/test_tutorial/test_metadata/test_tutorial001.py index 0cef510b3..5f00d3957 100644 --- a/tests/test_tutorial/test_metadata/test_tutorial001.py +++ b/tests/test_tutorial/test_metadata/test_tutorial001.py @@ -30,11 +30,11 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_items(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"name": "Foo"}] diff --git a/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py b/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py index 8340542f6..337e703d2 100644 --- a/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py +++ b/tests/test_tutorial/test_openapi_callbacks/test_tutorial001.py @@ -165,7 +165,7 @@ def test_get(): response = client.post( "/invoices/", json={"id": "fooinvoice", "customer": "John", "total": 5.3} ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"msg": "Invoice received"} diff --git a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py index 9ec8bf2e9..ca94ff1f1 100644 --- a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py +++ b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial001.py @@ -26,11 +26,11 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"item_id": "Foo"}] diff --git a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py index 036ea138a..1aa001ad4 100644 --- a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py +++ b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial002.py @@ -26,11 +26,11 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"item_id": "Foo"}] diff --git a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial003.py b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial003.py index f5c26c767..16559a33e 100644 --- a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial003.py +++ b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial003.py @@ -13,11 +13,11 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_get(): response = client.get("/items/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == [{"item_id": "Foo"}] diff --git a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py index 099710e92..f092703df 100644 --- a/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py +++ b/tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial004.py @@ -96,13 +96,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_query_params_str_validations(): response = client.post("/items/", json={"name": "Foo", "price": 42}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "name": "Foo", "price": 42, diff --git a/tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py b/tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py index b78263c8e..107fae09c 100644 --- a/tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py +++ b/tests/test_tutorial/test_path_operation_configurations/test_tutorial005.py @@ -96,13 +96,13 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_query_params_str_validations(): response = client.post("/items/", json={"name": "Foo", "price": 42}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "name": "Foo", "price": 42, diff --git a/tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py b/tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py index 5534cb570..bfcd45411 100644 --- a/tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py +++ b/tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py @@ -55,7 +55,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_path_params/test_tutorial004.py b/tests/test_tutorial/test_path_params/test_tutorial004.py index 52edbf1b5..a3343744f 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial004.py +++ b/tests/test_tutorial/test_path_params/test_tutorial004.py @@ -73,19 +73,19 @@ openapi_schema = { def test_openapi(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_file_path(): response = client.get("/files/home/johndoe/myfile.txt") print(response.content) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"file_path": "home/johndoe/myfile.txt"} def test_root_file_path(): response = client.get("/files//home/johndoe/myfile.txt") print(response.content) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"file_path": "/home/johndoe/myfile.txt"} diff --git a/tests/test_tutorial/test_path_params/test_tutorial005.py b/tests/test_tutorial/test_path_params/test_tutorial005.py index b7eac1fd2..bdf0a9e59 100644 --- a/tests/test_tutorial/test_path_params/test_tutorial005.py +++ b/tests/test_tutorial/test_path_params/test_tutorial005.py @@ -78,7 +78,7 @@ openapi_schema = { def test_openapi(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_query_params/test_tutorial007.py b/tests/test_tutorial/test_query_params/test_tutorial007.py index 3dc4f1803..335c103a1 100644 --- a/tests/test_tutorial/test_query_params/test_tutorial007.py +++ b/tests/test_tutorial/test_query_params/test_tutorial007.py @@ -79,17 +79,17 @@ openapi_schema = { def test_openapi(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_read_item(): response = client.get("/items/foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo", "limit": None} def test_read_item_query(): response = client.get("/items/foo?limit=5") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item_id": "foo", "limit": 5} diff --git a/tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py b/tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py index cce30d8a0..8bdba00b7 100644 --- a/tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py +++ b/tests/test_tutorial/test_query_params_str_validations/test_tutorial001.py @@ -83,7 +83,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py b/tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py index a498bca82..fb37f4be2 100644 --- a/tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py +++ b/tests/test_tutorial/test_query_params_str_validations/test_tutorial011.py @@ -77,19 +77,19 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_multi_query_values(): url = "/items/?q=foo&q=bar" response = client.get(url) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": ["foo", "bar"]} def test_query_no_values(): url = "/items/" response = client.get(url) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": None} diff --git a/tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py b/tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py index f7fcfe5e2..c05d8ac21 100644 --- a/tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py +++ b/tests/test_tutorial/test_query_params_str_validations/test_tutorial012.py @@ -78,19 +78,19 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_default_query_values(): url = "/items/" response = client.get(url) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": ["foo", "bar"]} def test_multi_query_values(): url = "/items/?q=baz&q=foobar" response = client.get(url) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": ["baz", "foobar"]} diff --git a/tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py b/tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py index d645c4a69..7b1eab2b7 100644 --- a/tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py +++ b/tests/test_tutorial/test_query_params_str_validations/test_tutorial013.py @@ -73,19 +73,19 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema def test_multi_query_values(): url = "/items/?q=foo&q=bar" response = client.get(url) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": ["foo", "bar"]} def test_query_no_values(): url = "/items/" response = client.get(url) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"q": None} diff --git a/tests/test_tutorial/test_request_files/test_tutorial001.py b/tests/test_tutorial/test_request_files/test_tutorial001.py index fdf4eb254..9aea331f3 100644 --- a/tests/test_tutorial/test_request_files/test_tutorial001.py +++ b/tests/test_tutorial/test_request_files/test_tutorial001.py @@ -125,7 +125,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema @@ -142,13 +142,13 @@ file_required = { def test_post_form_no_body(): response = client.post("/files/") - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == file_required def test_post_body_json(): response = client.post("/files/", json={"file": "Foo"}) - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == file_required @@ -159,7 +159,7 @@ def test_post_file(tmpdir): client = TestClient(app) response = client.post("/files/", files={"file": open(path, "rb")}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"file_size": 14} @@ -171,7 +171,7 @@ def test_post_large_file(tmpdir): client = TestClient(app) response = client.post("/files/", files={"file": open(path, "rb")}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"file_size": default_pydantic_max_size + 1} @@ -182,5 +182,5 @@ def test_post_upload_file(tmpdir): client = TestClient(app) response = client.post("/uploadfile/", files={"file": open(path, "rb")}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"filename": "test.txt"} diff --git a/tests/test_tutorial/test_request_files/test_tutorial002.py b/tests/test_tutorial/test_request_files/test_tutorial002.py index 811e0f1c7..24e9eae2f 100644 --- a/tests/test_tutorial/test_request_files/test_tutorial002.py +++ b/tests/test_tutorial/test_request_files/test_tutorial002.py @@ -145,7 +145,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema @@ -162,13 +162,13 @@ file_required = { def test_post_form_no_body(): response = client.post("/files/") - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == file_required def test_post_body_json(): response = client.post("/files/", json={"file": "Foo"}) - assert response.status_code == 422 + assert response.status_code == 422, response.text assert response.json() == file_required @@ -188,7 +188,7 @@ def test_post_files(tmpdir): ("files", ("test2.txt", open(path2, "rb"))), ), ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"file_sizes": [14, 15]} @@ -208,12 +208,12 @@ def test_post_upload_file(tmpdir): ("files", ("test2.txt", open(path2, "rb"))), ), ) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"filenames": ["test.txt", "test2.txt"]} def test_get_root(): client = TestClient(app) response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert b"Item ID: foo" in response.content response = client.get("/static/styles.css") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert b"color: green;" in response.content shutil.rmtree("./templates") shutil.rmtree("./static") diff --git a/tests/test_tutorial/test_testing/test_main.py b/tests/test_tutorial/test_testing/test_main.py index 36e8069a5..6ef800f6e 100644 --- a/tests/test_tutorial/test_testing/test_main.py +++ b/tests/test_tutorial/test_testing/test_main.py @@ -22,7 +22,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_testing/test_tutorial001.py b/tests/test_tutorial/test_testing/test_tutorial001.py index adc6928c6..66863b945 100644 --- a/tests/test_tutorial/test_testing/test_tutorial001.py +++ b/tests/test_tutorial/test_testing/test_tutorial001.py @@ -22,7 +22,7 @@ openapi_schema = { def test_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == openapi_schema diff --git a/tests/test_tutorial/test_testing_dependencies/test_tutorial001.py b/tests/test_tutorial/test_testing_dependencies/test_tutorial001.py index 093c6499a..dccace562 100644 --- a/tests/test_tutorial/test_testing_dependencies/test_tutorial001.py +++ b/tests/test_tutorial/test_testing_dependencies/test_tutorial001.py @@ -21,7 +21,7 @@ def test_override_in_items_with_params_run(): def test_override_in_users(): response = client.get("/users/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "message": "Hello Users!", "params": {"q": None, "skip": 5, "limit": 10}, @@ -30,7 +30,7 @@ def test_override_in_users(): def test_override_in_users_with_q(): response = client.get("/users/?q=foo") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "message": "Hello Users!", "params": {"q": "foo", "skip": 5, "limit": 10}, @@ -39,7 +39,7 @@ def test_override_in_users_with_q(): def test_override_in_users_with_params(): response = client.get("/users/?q=foo&skip=100&limit=200") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "message": "Hello Users!", "params": {"q": "foo", "skip": 5, "limit": 10}, @@ -49,7 +49,7 @@ def test_override_in_users_with_params(): def test_normal_app(): app.dependency_overrides = None response = client.get("/items/?q=foo&skip=100&limit=200") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "message": "Hello Items!", "params": {"q": "foo", "skip": 100, "limit": 200}, diff --git a/tests/test_tutorial/test_websockets/test_tutorial001.py b/tests/test_tutorial/test_websockets/test_tutorial001.py index b30ecf477..6c715b194 100644 --- a/tests/test_tutorial/test_websockets/test_tutorial001.py +++ b/tests/test_tutorial/test_websockets/test_tutorial001.py @@ -8,7 +8,7 @@ client = TestClient(app) def test_main(): response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert b"" in response.content diff --git a/tests/test_tutorial/test_websockets/test_tutorial002.py b/tests/test_tutorial/test_websockets/test_tutorial002.py index 9e3e45edb..640691cd3 100644 --- a/tests/test_tutorial/test_websockets/test_tutorial002.py +++ b/tests/test_tutorial/test_websockets/test_tutorial002.py @@ -8,7 +8,7 @@ client = TestClient(app) def test_main(): response = client.get("/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert b"" in response.content diff --git a/tests/test_tutorial/test_wsgi/test_tutorial001.py b/tests/test_tutorial/test_wsgi/test_tutorial001.py index e5390fced..8eee4d465 100644 --- a/tests/test_tutorial/test_wsgi/test_tutorial001.py +++ b/tests/test_tutorial/test_wsgi/test_tutorial001.py @@ -7,11 +7,11 @@ client = TestClient(app) def test_flask(): response = client.get("/v1/") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.text == "Hello, World from Flask!" def test_app(): response = client.get("/v2") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"message": "Hello World"} diff --git a/tests/test_union_body.py b/tests/test_union_body.py index e04304170..d1dfd5efb 100644 --- a/tests/test_union_body.py +++ b/tests/test_union_body.py @@ -108,17 +108,17 @@ item_openapi_schema = { def test_item_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == item_openapi_schema def test_post_other_item(): response = client.post("/items/", json={"price": 100}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": {"price": 100}} def test_post_item(): response = client.post("/items/", json={"name": "Foo"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": {"name": "Foo"}} diff --git a/tests/test_union_inherited_body.py b/tests/test_union_inherited_body.py index b901f28e7..a1a3f0ed5 100644 --- a/tests/test_union_inherited_body.py +++ b/tests/test_union_inherited_body.py @@ -121,19 +121,19 @@ inherited_item_openapi_schema = { @skip_py36 def test_inherited_item_openapi_schema(): response = client.get("/openapi.json") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == inherited_item_openapi_schema @skip_py36 def test_post_extended_item(): response = client.post("/items/", json={"name": "Foo", "age": 5}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": {"name": "Foo", "age": 5}} @skip_py36 def test_post_item(): response = client.post("/items/", json={"name": "Foo"}) - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == {"item": {"name": "Foo"}} diff --git a/tests/test_validate_response_recursive.py b/tests/test_validate_response_recursive.py index 8b77ed14a..3a4b10e0c 100644 --- a/tests/test_validate_response_recursive.py +++ b/tests/test_validate_response_recursive.py @@ -56,14 +56,14 @@ client = TestClient(app) def test_recursive(): response = client.get("/items/recursive") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "sub_items": [{"name": "subitem", "sub_items": []}], "name": "item", } response = client.get("/items/recursive-submodel") - assert response.status_code == 200 + assert response.status_code == 200, response.text assert response.json() == { "name": "item", "sub_items1": [