Files
spoolman2/tests_integration/tests/vendor/test_update.py
2024-01-23 11:16:57 -08:00

51 lines
1.3 KiB
Python

"""Integration tests for the Vendor API endpoint."""
import httpx
from ..conftest import URL
def test_update_vendor():
"""Test update a vendor in the database."""
# Setup
name = "John"
comment = "abcdefghåäö"
result = httpx.post(
f"{URL}/api/v1/vendor",
json={"name": name, "comment": comment},
)
result.raise_for_status()
added_vendor = result.json()
# Execute
new_name = "Stan"
new_comment = "gfdadfg"
result = httpx.patch(
f"{URL}/api/v1/vendor/{added_vendor['id']}",
json={"name": new_name, "comment": new_comment},
)
result.raise_for_status()
# Verify
vendor = result.json()
assert vendor["name"] == new_name
assert vendor["comment"] == new_comment
assert vendor["id"] == added_vendor["id"]
assert vendor["registered"] == added_vendor["registered"]
# Clean up
httpx.delete(f"{URL}/api/v1/vendor/{vendor['id']}").raise_for_status()
def test_update_vendor_not_found():
"""Test updating a vendor that does not exist."""
# Execute
result = httpx.patch(f"{URL}/api/v1/vendor/123456789", json={"name": "John"})
# Verify
assert result.status_code == 404
message = result.json()["message"].lower()
assert "vendor" in message
assert "id" in message
assert "123456789" in message