mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 18:37:23 -08:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
140 lines
4.5 KiB
Python
140 lines
4.5 KiB
Python
from datetime import UTC, datetime
|
|
|
|
import pytest
|
|
from sqlalchemy.orm import Session
|
|
|
|
from mealie.repos.all_repositories import get_repositories
|
|
from mealie.repos.repository_factory import AllRepositories
|
|
from mealie.schema.recipe.recipe_ingredient import IngredientUnit, SaveIngredientUnit
|
|
from mealie.schema.response.pagination import OrderDirection, PaginationQuery
|
|
from mealie.schema.user.user import GroupBase
|
|
from tests.utils.factories import random_int, random_string
|
|
|
|
|
|
@pytest.fixture()
|
|
def unique_local_group_id(unfiltered_database: AllRepositories) -> str:
|
|
return str(unfiltered_database.groups.create(GroupBase(name=random_string())).id)
|
|
|
|
|
|
@pytest.fixture()
|
|
def unique_db(session: Session, unique_local_group_id: str):
|
|
return get_repositories(session, group_id=unique_local_group_id)
|
|
|
|
|
|
@pytest.fixture()
|
|
def search_units(unique_db: AllRepositories, unique_local_group_id: str) -> list[IngredientUnit]:
|
|
units = [
|
|
SaveIngredientUnit(
|
|
group_id=unique_local_group_id,
|
|
name="Tea Spoon",
|
|
abbreviation="tsp",
|
|
),
|
|
SaveIngredientUnit(
|
|
group_id=unique_local_group_id,
|
|
name="Table Spoon",
|
|
abbreviation="tbsp",
|
|
),
|
|
SaveIngredientUnit(
|
|
group_id=unique_local_group_id,
|
|
name="Cup",
|
|
),
|
|
SaveIngredientUnit(
|
|
group_id=unique_local_group_id,
|
|
name="Píñch",
|
|
),
|
|
SaveIngredientUnit(
|
|
group_id=unique_local_group_id,
|
|
name="Unit with a very cool name",
|
|
),
|
|
SaveIngredientUnit(
|
|
group_id=unique_local_group_id,
|
|
name="Unit with a pretty cool name",
|
|
),
|
|
SaveIngredientUnit(
|
|
group_id=unique_local_group_id,
|
|
name="Unit with a correct horse battery staple",
|
|
),
|
|
]
|
|
|
|
# Add a bunch of units for stable randomization
|
|
units.extend(
|
|
[
|
|
SaveIngredientUnit(group_id=unique_local_group_id, name=f"{random_string()} unit")
|
|
for _ in range(random_int(12, 20))
|
|
]
|
|
)
|
|
|
|
return unique_db.ingredient_units.create_many(units)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"search, expected_names",
|
|
[
|
|
(random_string(), []),
|
|
("Cup", ["Cup"]),
|
|
("tbsp", ["Table Spoon"]),
|
|
("very cool name", ["Unit with a very cool name", "Unit with a pretty cool name"]),
|
|
('"Tea Spoon"', ["Tea Spoon"]),
|
|
("correct staple", ["Unit with a correct horse battery staple"]),
|
|
],
|
|
ids=[
|
|
"no_match",
|
|
"search_by_name",
|
|
"search_by_unit",
|
|
"match_order",
|
|
"literal_search",
|
|
"token_separation",
|
|
],
|
|
)
|
|
def test_basic_search(
|
|
search: str,
|
|
expected_names: list[str],
|
|
unique_db: AllRepositories,
|
|
search_units: list[IngredientUnit], # required so database is populated
|
|
):
|
|
repo = unique_db.ingredient_units
|
|
pagination = PaginationQuery(page=1, per_page=-1, order_by="created_at", order_direction=OrderDirection.asc)
|
|
results = repo.page_all(pagination, search=search).items
|
|
|
|
if len(expected_names) == 0:
|
|
assert len(results) == 0
|
|
else:
|
|
# if more results are returned, that's acceptable, as long as they are ranked correctly
|
|
assert len(results) >= len(expected_names)
|
|
for unit, name in zip(results, expected_names, strict=False):
|
|
assert unit.name == name
|
|
|
|
|
|
def test_fuzzy_search(
|
|
unique_db: AllRepositories,
|
|
search_units: list[IngredientUnit], # required so database is populated
|
|
):
|
|
# this only works on postgres
|
|
if unique_db.session.get_bind().name != "postgresql":
|
|
return
|
|
|
|
repo = unique_db.ingredient_units
|
|
pagination = PaginationQuery(page=1, per_page=-1, order_by="created_at", order_direction=OrderDirection.asc)
|
|
results = repo.page_all(pagination, search="tabel spoone").items
|
|
|
|
assert results and results[0].name == "Table Spoon"
|
|
|
|
|
|
def test_random_order_search(
|
|
unique_db: AllRepositories,
|
|
search_units: list[IngredientUnit], # required so database is populated
|
|
):
|
|
repo = unique_db.ingredient_units
|
|
pagination = PaginationQuery(
|
|
page=1,
|
|
per_page=-1,
|
|
order_by="random",
|
|
pagination_seed=str(datetime.now(UTC)),
|
|
order_direction=OrderDirection.asc,
|
|
)
|
|
random_ordered = []
|
|
for _ in range(5):
|
|
pagination.pagination_seed = str(datetime.now(UTC))
|
|
random_ordered.append(repo.page_all(pagination, search="unit").items)
|
|
assert not all(i == random_ordered[0] for i in random_ordered)
|