Full API integration test coverage

This commit is contained in:
Donkie
2023-05-21 23:06:23 +02:00
parent 1d87235f9e
commit 5f639b7a89
4 changed files with 935 additions and 6 deletions

View File

@@ -1,12 +1,15 @@
"""Test fixtures for integration tests."""
import time
from typing import Any
import httpx
import pytest
TIMEOUT = 10
URL = "http://spoolman:8000"
@pytest.fixture(scope="session", autouse=True)
def _wait_for_server(): # noqa: ANN202
@@ -21,3 +24,48 @@ def _wait_for_server(): # noqa: ANN202
raise
else:
break
@pytest.fixture()
def random_vendor():
"""Return a random vendor."""
# Add vendor
result = httpx.post(
f"{URL}/api/v1/vendor",
json={"name": "John"},
)
result.raise_for_status()
vendor = result.json()
yield vendor
# Delete vendor
httpx.delete(f"{URL}/api/v1/vendor/{vendor['id']}").raise_for_status()
@pytest.fixture()
def random_filament(random_vendor: dict[str, Any]):
"""Return a random filament."""
# Add filament
result = httpx.post(
f"{URL}/api/v1/filament",
json={
"name": "Filament X",
"vendor_id": random_vendor["id"],
"material": "PLA",
"price": 100,
"density": 1.25,
"diameter": 1.75,
"weight": 1000,
"spool_weight": 250,
"article_number": "123456789",
"comment": "abcdefghåäö",
},
)
result.raise_for_status()
filament = result.json()
yield filament
# Delete filament
httpx.delete(f"{URL}/api/v1/filament/{filament['id']}").raise_for_status()