mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 13:05:21 +02:00
105 lines
3.3 KiB
Python
105 lines
3.3 KiB
Python
import json
|
|||
|
|||
import pytest
|
|||
from fastapi.testclient import TestClient
|
|||
from tests.app_routes import AppRoutes
|
|||
from tests.utils.recipe_data import RecipeTestData
|
|||
|
|||
|
|||
def get_meal_plan_template(first=None, second=None):
|
|||
return {
|
|||
"group": "Home",
|
|||
"startDate": "2021-01-18",
|
|||
"endDate": "2021-01-19",
|
|||
"meals": [
|
|||
{
|
|||
"slug": first,
|
|||
"date": "2021-1-17",
|
|||
},
|
|||
{
|
|||
"slug": second,
|
|||
"date": "2021-1-18",
|
|||
},
|
|||
],
|
|||
}
|
|||
|
|||
|
|||
@pytest.fixture(scope="session")
|
|||
def slug_1(api_client: TestClient, api_routes: AppRoutes, token, recipe_store: list[RecipeTestData]):
|
|||
# Slug 1
|
|||
slug_1 = api_client.post(api_routes.recipes_create_url, json={"url": recipe_store[0].url}, headers=token)
|
|||
slug_1 = json.loads(slug_1.content)
|
|||
|
|||
yield slug_1
|
|||
|
|||
api_client.delete(api_routes.recipes_recipe_slug(slug_1))
|
|||
|
|||
|
|||
@pytest.fixture(scope="session")
|
|||
def slug_2(api_client: TestClient, api_routes: AppRoutes, token, recipe_store: list[RecipeTestData]):
|
|||
# Slug 2
|
|||
slug_2 = api_client.post(api_routes.recipes_create_url, json={"url": recipe_store[1].url}, headers=token)
|
|||
slug_2 = json.loads(slug_2.content)
|
|||
|
|||
yield slug_2
|
|||
|
|||
api_client.delete(api_routes.recipes_recipe_slug(slug_2))
|
|||
|
|||
|
|||
def test_create_mealplan(api_client: TestClient, api_routes: AppRoutes, slug_1, slug_2, token):
|
|||
meal_plan = get_meal_plan_template(slug_1, slug_2)
|
|||
|
|||
response = api_client.post(api_routes.meal_plans_create, json=meal_plan, headers=token)
|
|||
assert response.status_code == 200
|
|||
|
|||
|
|||
def test_read_mealplan(api_client: TestClient, api_routes: AppRoutes, slug_1, slug_2, token):
|
|||
response = api_client.get(api_routes.meal_plans_all, headers=token)
|
|||
|
|||
assert response.status_code == 200
|
|||
|
|||
meal_plan = get_meal_plan_template(slug_1, slug_2)
|
|||
|
|||
new_meal_plan = json.loads(response.text)
|
|||
meals = new_meal_plan[0]["meals"]
|
|||
|
|||
assert meals[0]["slug"] == meal_plan["meals"][0]["slug"]
|
|||
assert meals[1]["slug"] == meal_plan["meals"][1]["slug"]
|
|||
|
|||
|
|||
def test_update_mealplan(api_client: TestClient, api_routes: AppRoutes, slug_1, slug_2, token):
|
|||
|
|||
response = api_client.get(api_routes.meal_plans_all, headers=token)
|
|||
|
|||
existing_mealplan = json.loads(response.text)
|
|||
existing_mealplan = existing_mealplan[0]
|
|||
|
|||
# Swap
|
|||
plan_uid = existing_mealplan.get("uid")
|
|||
existing_mealplan["meals"][0]["slug"] = slug_2
|
|||
existing_mealplan["meals"][1]["slug"] = slug_1
|
|||
|
|||
response = api_client.put(api_routes.meal_plans_plan_id(plan_uid), json=existing_mealplan, headers=token)
|
|||
|
|||
assert response.status_code == 200
|
|||
|
|||
response = api_client.get(api_routes.meal_plans_all, headers=token)
|
|||
existing_mealplan = json.loads(response.text)
|
|||
existing_mealplan = existing_mealplan[0]
|
|||
|
|||
assert existing_mealplan["meals"][0]["slug"] == slug_2
|
|||
assert existing_mealplan["meals"][1]["slug"] == slug_1
|
|||
|
|||
|
|||
def test_delete_mealplan(api_client: TestClient, api_routes: AppRoutes, token):
|
|||
response = api_client.get(api_routes.meal_plans_all, headers=token)
|
|||
|
|||
assert response.status_code == 200
|
|||
existing_mealplan = json.loads(response.text)
|
|||
existing_mealplan = existing_mealplan[0]
|
|||
|
|||
plan_uid = existing_mealplan.get("uid")
|
|||
response = api_client.delete(api_routes.meal_plans_plan_id(plan_uid), headers=token)
|
|||
|
|||
assert response.status_code == 200
|