Luke Okomilo
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with
6 additions and
6 deletions
-
docs_src/app_testing/app_b_an/main.py
-
docs_src/app_testing/app_b_an/test_main.py
-
docs_src/app_testing/app_b_an_py310/main.py
-
docs_src/app_testing/app_b_an_py310/test_main.py
-
docs_src/app_testing/app_b_an_py39/main.py
-
docs_src/app_testing/app_b_an_py39/test_main.py
|
|
@ -34,6 +34,6 @@ async def create_item(item: Item, x_token: Annotated[str, Header()]): |
|
|
|
if x_token != fake_secret_token: |
|
|
|
raise HTTPException(status_code=400, detail="Invalid X-Token header") |
|
|
|
if item.id in fake_db: |
|
|
|
raise HTTPException(status_code=400, detail="Item already exists") |
|
|
|
raise HTTPException(status_code=409, detail="Item already exists") |
|
|
|
fake_db[item.id] = item |
|
|
|
return item |
|
|
|
|
|
@ -61,5 +61,5 @@ def test_create_existing_item(): |
|
|
|
"description": "There goes my stealer", |
|
|
|
}, |
|
|
|
) |
|
|
|
assert response.status_code == 400 |
|
|
|
assert response.status_code == 409 |
|
|
|
assert response.json() == {"detail": "Item already exists"} |
|
|
|
|
|
@ -33,6 +33,6 @@ async def create_item(item: Item, x_token: Annotated[str, Header()]): |
|
|
|
if x_token != fake_secret_token: |
|
|
|
raise HTTPException(status_code=400, detail="Invalid X-Token header") |
|
|
|
if item.id in fake_db: |
|
|
|
raise HTTPException(status_code=400, detail="Item already exists") |
|
|
|
raise HTTPException(status_code=409, detail="Item already exists") |
|
|
|
fake_db[item.id] = item |
|
|
|
return item |
|
|
|
|
|
@ -61,5 +61,5 @@ def test_create_existing_item(): |
|
|
|
"description": "There goes my stealer", |
|
|
|
}, |
|
|
|
) |
|
|
|
assert response.status_code == 400 |
|
|
|
assert response.status_code == 409 |
|
|
|
assert response.json() == {"detail": "Item already exists"} |
|
|
|
|
|
@ -33,6 +33,6 @@ async def create_item(item: Item, x_token: Annotated[str, Header()]): |
|
|
|
if x_token != fake_secret_token: |
|
|
|
raise HTTPException(status_code=400, detail="Invalid X-Token header") |
|
|
|
if item.id in fake_db: |
|
|
|
raise HTTPException(status_code=400, detail="Item already exists") |
|
|
|
raise HTTPException(status_code=409, detail="Item already exists") |
|
|
|
fake_db[item.id] = item |
|
|
|
return item |
|
|
|
|
|
@ -61,5 +61,5 @@ def test_create_existing_item(): |
|
|
|
"description": "There goes my stealer", |
|
|
|
}, |
|
|
|
) |
|
|
|
assert response.status_code == 400 |
|
|
|
assert response.status_code == 409 |
|
|
|
assert response.json() == {"detail": "Item already exists"} |
|
|
|