- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,157 for cassert (0.05 sec)
-
tests/test_tutorial/test_generate_clients/test_tutorial003.py
- response = client.post("/items/", json={"name": "Foo", "price": 5})
- assert response.status_code == 200, response.text
- assert response.json() == {"message": "Item received"}
- def test_post_users():
- response = client.post(
- "/users/", json={"username": "Foo", "email": "******@****.***"}
- )
- assert response.status_code == 200, response.text
- assert response.json() == {"message": "User received"}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 7.1K bytes - Viewed (0) -
tests/test_security_api_key_query.py
- def test_security_api_key():
- response = client.get("/users/me?key=secret")
- 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, response.text
- assert response.json() == {"detail": "Not authenticated"}
- def test_openapi_schema():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 1.8K bytes - Viewed (0) -
tests/test_security_http_base_description.py
- response = client.get("/users/me", headers={"Authorization": "Other foobar"})
- 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, response.text
- assert response.json() == {"detail": "Not authenticated"}
- def test_openapi_schema():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 1.9K bytes - Viewed (0) -
tests/test_tutorial/test_request_form_models/test_tutorial002_pv1_an_p39.py
- @needs_pydanticv1
- @needs_py39
- def test_post_body_form(client: TestClient):
- response = client.post("/login/", data={"username": "Foo", "password": "secret"})
- assert response.status_code == 200
- assert response.json() == {"username": "Foo", "password": "secret"}
- # TODO: remove when deprecating Pydantic v1
- @needs_pydanticv1
- @needs_py39
- def test_post_body_extra_form(client: TestClient):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 17:31:18 UTC 2024 - 6.5K bytes - Viewed (0) -
tests/test_regex_deprecated_body.py
- def test_no_query():
- client = get_client()
- response = client.post("/items/")
- assert response.status_code == 200
- assert response.json() == "Hello World"
- @needs_py310
- def test_q_fixedquery():
- client = get_client()
- response = client.post("/items/", data={"q": "fixedquery"})
- assert response.status_code == 200
- assert response.json() == "Hello fixedquery"
- @needs_py310
- def test_query_nonregexquery():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 6.2K bytes - Viewed (0) -
tests/test_tutorial/test_query_params_str_validations/test_tutorial014.py
- def test_hidden_query():
- response = client.get("/items?hidden_query=somevalue")
- assert response.status_code == 200, response.text
- assert response.json() == {"hidden_query": "somevalue"}
- def test_no_hidden_query():
- response = client.get("/items")
- assert response.status_code == 200, response.text
- assert response.json() == {"hidden_query": "Not found"}
- def test_openapi_schema():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2.9K bytes - Viewed (0) -
docs_src/dependency_testing/tutorial001_py310.py
- def test_override_in_items():
- response = client.get("/items/")
- assert response.status_code == 200
- assert response.json() == {
- "message": "Hello Items!",
- "params": {"q": None, "skip": 5, "limit": 10},
- }
- def test_override_in_items_with_q():
- response = client.get("/items/?q=foo")
- assert response.status_code == 200
- assert response.json() == {
- "message": "Hello Items!",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 1.4K bytes - Viewed (0) -
tests/test_security_api_key_header.py
- def test_security_api_key():
- response = client.get("/users/me", headers={"key": "secret"})
- 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, response.text
- assert response.json() == {"detail": "Not authenticated"}
- def test_openapi_schema():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 1.8K bytes - Viewed (0) -
tests/test_tutorial/test_security/test_tutorial001_an_py39.py
- assert response.status_code == 401, response.text
- assert response.json() == {"detail": "Not authenticated"}
- assert response.headers["WWW-Authenticate"] == "Bearer"
- @needs_py39
- def test_openapi_schema(client: TestClient):
- response = client.get("/openapi.json")
- assert response.status_code == 200, response.text
- assert response.json() == {
- "openapi": "3.1.0",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2.1K bytes - Viewed (0) -
tests/test_security_api_key_header_description.py
- def test_security_api_key():
- response = client.get("/users/me", headers={"key": "secret"})
- 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, response.text
- assert response.json() == {"detail": "Not authenticated"}
- def test_openapi_schema():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2K bytes - Viewed (0)