Browse Source

📝 Update examples for tests to replace "inexistent" for "nonexistent" (#11220)

pull/11295/head
bebop 1 year ago
committed by GitHub
parent
commit
478288700a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs_src/app_testing/app_b/test_main.py
  2. 2
      docs_src/app_testing/app_b_an/test_main.py
  3. 2
      docs_src/app_testing/app_b_an_py310/test_main.py
  4. 2
      docs_src/app_testing/app_b_an_py39/test_main.py
  5. 2
      docs_src/app_testing/app_b_py310/test_main.py
  6. 2
      tests/test_tutorial/test_security/test_tutorial005.py
  7. 2
      tests/test_tutorial/test_security/test_tutorial005_an.py
  8. 2
      tests/test_tutorial/test_security/test_tutorial005_an_py310.py
  9. 2
      tests/test_tutorial/test_security/test_tutorial005_an_py39.py
  10. 2
      tests/test_tutorial/test_security/test_tutorial005_py310.py
  11. 2
      tests/test_tutorial/test_security/test_tutorial005_py39.py
  12. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases.py
  13. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_middleware.py
  14. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py310.py
  15. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py39.py
  16. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_py310.py
  17. 2
      tests/test_tutorial/test_sql_databases/test_sql_databases_py39.py
  18. 2
      tests/test_tutorial/test_testing/test_main_b.py
  19. 2
      tests/test_tutorial/test_testing/test_main_b_an.py
  20. 2
      tests/test_tutorial/test_testing/test_main_b_an_py310.py
  21. 2
      tests/test_tutorial/test_testing/test_main_b_an_py39.py
  22. 2
      tests/test_tutorial/test_testing/test_main_b_py310.py

2
docs_src/app_testing/app_b/test_main.py

@ -21,7 +21,7 @@ def test_read_item_bad_token():
assert response.json() == {"detail": "Invalid X-Token header"}
def test_read_inexistent_item():
def test_read_nonexistent_item():
response = client.get("/items/baz", headers={"X-Token": "coneofsilence"})
assert response.status_code == 404
assert response.json() == {"detail": "Item not found"}

2
docs_src/app_testing/app_b_an/test_main.py

@ -21,7 +21,7 @@ def test_read_item_bad_token():
assert response.json() == {"detail": "Invalid X-Token header"}
def test_read_inexistent_item():
def test_read_nonexistent_item():
response = client.get("/items/baz", headers={"X-Token": "coneofsilence"})
assert response.status_code == 404
assert response.json() == {"detail": "Item not found"}

2
docs_src/app_testing/app_b_an_py310/test_main.py

@ -21,7 +21,7 @@ def test_read_item_bad_token():
assert response.json() == {"detail": "Invalid X-Token header"}
def test_read_inexistent_item():
def test_read_nonexistent_item():
response = client.get("/items/baz", headers={"X-Token": "coneofsilence"})
assert response.status_code == 404
assert response.json() == {"detail": "Item not found"}

2
docs_src/app_testing/app_b_an_py39/test_main.py

@ -21,7 +21,7 @@ def test_read_item_bad_token():
assert response.json() == {"detail": "Invalid X-Token header"}
def test_read_inexistent_item():
def test_read_nonexistent_item():
response = client.get("/items/baz", headers={"X-Token": "coneofsilence"})
assert response.status_code == 404
assert response.json() == {"detail": "Item not found"}

2
docs_src/app_testing/app_b_py310/test_main.py

@ -21,7 +21,7 @@ def test_read_item_bad_token():
assert response.json() == {"detail": "Invalid X-Token header"}
def test_read_inexistent_item():
def test_read_nonexistent_item():
response = client.get("/items/baz", headers={"X-Token": "coneofsilence"})
assert response.status_code == 404
assert response.json() == {"detail": "Item not found"}

2
tests/test_tutorial/test_security/test_tutorial005.py

@ -128,7 +128,7 @@ def test_token_no_scope():
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"'
def test_token_inexistent_user():
def test_token_nonexistent_user():
response = client.get(
"/users/me",
headers={

2
tests/test_tutorial/test_security/test_tutorial005_an.py

@ -128,7 +128,7 @@ def test_token_no_scope():
assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"'
def test_token_inexistent_user():
def test_token_nonexistent_user():
response = client.get(
"/users/me",
headers={

2
tests/test_tutorial/test_security/test_tutorial005_an_py310.py

@ -151,7 +151,7 @@ def test_token_no_scope(client: TestClient):
@needs_py310
def test_token_inexistent_user(client: TestClient):
def test_token_nonexistent_user(client: TestClient):
response = client.get(
"/users/me",
headers={

2
tests/test_tutorial/test_security/test_tutorial005_an_py39.py

@ -151,7 +151,7 @@ def test_token_no_scope(client: TestClient):
@needs_py39
def test_token_inexistent_user(client: TestClient):
def test_token_nonexistent_user(client: TestClient):
response = client.get(
"/users/me",
headers={

2
tests/test_tutorial/test_security/test_tutorial005_py310.py

@ -151,7 +151,7 @@ def test_token_no_scope(client: TestClient):
@needs_py310
def test_token_inexistent_user(client: TestClient):
def test_token_nonexistent_user(client: TestClient):
response = client.get(
"/users/me",
headers={

2
tests/test_tutorial/test_security/test_tutorial005_py39.py

@ -151,7 +151,7 @@ def test_token_no_scope(client: TestClient):
@needs_py39
def test_token_inexistent_user(client: TestClient):
def test_token_nonexistent_user(client: TestClient):
response = client.get(
"/users/me",
headers={

2
tests/test_tutorial/test_sql_databases/test_sql_databases.py

@ -54,7 +54,7 @@ def test_get_user(client):
# TODO: pv2 add version with Pydantic v2
@needs_pydanticv1
def test_inexistent_user(client):
def test_nonexistent_user(client):
response = client.get("/users/999")
assert response.status_code == 404, response.text

2
tests/test_tutorial/test_sql_databases/test_sql_databases_middleware.py

@ -50,7 +50,7 @@ def test_get_user(client):
# TODO: pv2 add version with Pydantic v2
@needs_pydanticv1
def test_inexistent_user(client):
def test_nonexistent_user(client):
response = client.get("/users/999")
assert response.status_code == 404, response.text

2
tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py310.py

@ -58,7 +58,7 @@ def test_get_user(client):
@needs_py310
# TODO: pv2 add version with Pydantic v2
@needs_pydanticv1
def test_inexistent_user(client):
def test_nonexistent_user(client):
response = client.get("/users/999")
assert response.status_code == 404, response.text

2
tests/test_tutorial/test_sql_databases/test_sql_databases_middleware_py39.py

@ -58,7 +58,7 @@ def test_get_user(client):
@needs_py39
# TODO: pv2 add version with Pydantic v2
@needs_pydanticv1
def test_inexistent_user(client):
def test_nonexistent_user(client):
response = client.get("/users/999")
assert response.status_code == 404, response.text

2
tests/test_tutorial/test_sql_databases/test_sql_databases_py310.py

@ -57,7 +57,7 @@ def test_get_user(client):
@needs_py310
# TODO: pv2 add version with Pydantic v2
@needs_pydanticv1
def test_inexistent_user(client):
def test_nonexistent_user(client):
response = client.get("/users/999")
assert response.status_code == 404, response.text

2
tests/test_tutorial/test_sql_databases/test_sql_databases_py39.py

@ -57,7 +57,7 @@ def test_get_user(client):
@needs_py39
# TODO: pv2 add version with Pydantic v2
@needs_pydanticv1
def test_inexistent_user(client):
def test_nonexistent_user(client):
response = client.get("/users/999")
assert response.status_code == 404, response.text

2
tests/test_tutorial/test_testing/test_main_b.py

@ -5,6 +5,6 @@ def test_app():
test_main.test_create_existing_item()
test_main.test_create_item()
test_main.test_create_item_bad_token()
test_main.test_read_inexistent_item()
test_main.test_read_nonexistent_item()
test_main.test_read_item()
test_main.test_read_item_bad_token()

2
tests/test_tutorial/test_testing/test_main_b_an.py

@ -5,6 +5,6 @@ def test_app():
test_main.test_create_existing_item()
test_main.test_create_item()
test_main.test_create_item_bad_token()
test_main.test_read_inexistent_item()
test_main.test_read_nonexistent_item()
test_main.test_read_item()
test_main.test_read_item_bad_token()

2
tests/test_tutorial/test_testing/test_main_b_an_py310.py

@ -8,6 +8,6 @@ def test_app():
test_main.test_create_existing_item()
test_main.test_create_item()
test_main.test_create_item_bad_token()
test_main.test_read_inexistent_item()
test_main.test_read_nonexistent_item()
test_main.test_read_item()
test_main.test_read_item_bad_token()

2
tests/test_tutorial/test_testing/test_main_b_an_py39.py

@ -8,6 +8,6 @@ def test_app():
test_main.test_create_existing_item()
test_main.test_create_item()
test_main.test_create_item_bad_token()
test_main.test_read_inexistent_item()
test_main.test_read_nonexistent_item()
test_main.test_read_item()
test_main.test_read_item_bad_token()

2
tests/test_tutorial/test_testing/test_main_b_py310.py

@ -8,6 +8,6 @@ def test_app():
test_main.test_create_existing_item()
test_main.test_create_item()
test_main.test_create_item_bad_token()
test_main.test_read_inexistent_item()
test_main.test_read_nonexistent_item()
test_main.test_read_item()
test_main.test_read_item_bad_token()

Loading…
Cancel
Save