mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-22 03:51:21 -08:00
7a107584c7
* bumped pydantic
84 lines
3.0 KiB
Python
84 lines
3.0 KiB
Python
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from mealie.schema.recipe.recipe_ingredient import CreateIngredientUnit
|
|
from tests.utils import api_routes
|
|
from tests.utils.factories import random_bool, random_string
|
|
from tests.utils.fixture_schemas import TestUser
|
|
|
|
|
|
@pytest.fixture(scope="function")
|
|
def unit(api_client: TestClient, unique_user: TestUser):
|
|
data = CreateIngredientUnit(
|
|
name=random_string(10),
|
|
description=random_string(10),
|
|
fraction=random_bool(),
|
|
abbreviation=f"{random_string(3)}.",
|
|
use_abbreviation=random_bool(),
|
|
).model_dump(by_alias=True)
|
|
|
|
response = api_client.post(api_routes.units, json=data, headers=unique_user.token)
|
|
|
|
assert response.status_code == 201
|
|
|
|
yield response.json()
|
|
|
|
response = api_client.delete(api_routes.units_item_id(response.json()["id"]), headers=unique_user.token)
|
|
|
|
|
|
def test_create_unit(api_client: TestClient, unique_user: TestUser):
|
|
data = CreateIngredientUnit(
|
|
name=random_string(10),
|
|
description=random_string(10),
|
|
).model_dump(by_alias=True)
|
|
|
|
response = api_client.post(api_routes.units, json=data, headers=unique_user.token)
|
|
assert response.status_code == 201
|
|
|
|
|
|
def test_read_unit(api_client: TestClient, unit: dict, unique_user: TestUser):
|
|
response = api_client.get(api_routes.units_item_id(unit["id"]), headers=unique_user.token)
|
|
assert response.status_code == 200
|
|
|
|
as_json = response.json()
|
|
|
|
assert as_json["id"] == unit["id"]
|
|
assert as_json["name"] == unit["name"]
|
|
assert as_json["description"] == unit["description"]
|
|
assert as_json["fraction"] == unit["fraction"]
|
|
assert as_json["abbreviation"] == unit["abbreviation"]
|
|
assert as_json["useAbbreviation"] == unit["useAbbreviation"]
|
|
|
|
|
|
def test_update_unit(api_client: TestClient, unit: dict, unique_user: TestUser):
|
|
update_data = {
|
|
"id": unit["id"],
|
|
"name": random_string(10),
|
|
"description": random_string(10),
|
|
"fraction": not unit["fraction"],
|
|
"abbreviation": f"{random_string(3)}.",
|
|
"useAbbreviation": not unit["useAbbreviation"],
|
|
}
|
|
|
|
response = api_client.put(api_routes.units_item_id(unit["id"]), json=update_data, headers=unique_user.token)
|
|
assert response.status_code == 200
|
|
as_json = response.json()
|
|
|
|
assert as_json["id"] == unit["id"]
|
|
assert as_json["name"] == update_data["name"]
|
|
assert as_json["description"] == update_data["description"]
|
|
assert as_json["fraction"] == update_data["fraction"]
|
|
assert as_json["abbreviation"] == update_data["abbreviation"]
|
|
assert as_json["useAbbreviation"] == update_data["useAbbreviation"]
|
|
|
|
|
|
def test_delete_unit(api_client: TestClient, unit: dict, unique_user: TestUser):
|
|
item_id = unit["id"]
|
|
|
|
response = api_client.delete(api_routes.units_item_id(item_id), headers=unique_user.token)
|
|
|
|
assert response.status_code == 200
|
|
|
|
response = api_client.get(api_routes.units_item_id(item_id), headers=unique_user.token)
|
|
assert response.status_code == 404
|