14cc541f7a
* fix #967 and test error to catch * add admin tests
62 lines
1.7 KiB
Python
62 lines
1.7 KiB
Python
from dataclasses import dataclass
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from mealie.schema.group.group_migration import SupportedMigrations
|
|
from tests import data as test_data
|
|
from tests.utils.fixture_schemas import TestUser
|
|
|
|
|
|
class Routes:
|
|
base = "/api/groups/migrations"
|
|
|
|
def report(item_id: str) -> str:
|
|
return f"/api/groups/reports/{item_id}"
|
|
|
|
|
|
@dataclass
|
|
class MigrationTestData:
|
|
typ: SupportedMigrations
|
|
archive: Path
|
|
|
|
|
|
test_cases = [
|
|
MigrationTestData(typ=SupportedMigrations.nextcloud, archive=test_data.migrations_nextcloud),
|
|
MigrationTestData(typ=SupportedMigrations.paprika, archive=test_data.migrations_paprika),
|
|
MigrationTestData(typ=SupportedMigrations.chowdown, archive=test_data.migrations_chowdown),
|
|
MigrationTestData(typ=SupportedMigrations.mealie_alpha, archive=test_data.migrations_mealie),
|
|
]
|
|
|
|
test_ids = [
|
|
"nextcloud_archive",
|
|
"paprika_archive",
|
|
"chowdown_archive",
|
|
"mealie_alpha_archive",
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize("mig", test_cases, ids=test_ids)
|
|
def test_recipe_migration(api_client: TestClient, unique_user: TestUser, mig: MigrationTestData) -> None:
|
|
payload = {
|
|
"migration_type": mig.typ.value,
|
|
}
|
|
|
|
file_payload = {
|
|
"archive": mig.archive.read_bytes(),
|
|
}
|
|
|
|
response = api_client.post(Routes.base, data=payload, files=file_payload, headers=unique_user.token)
|
|
|
|
assert response.status_code == 200
|
|
|
|
report_id = response.json()["id"]
|
|
|
|
# Validate Results
|
|
response = api_client.get(Routes.report(report_id), headers=unique_user.token)
|
|
|
|
assert response.status_code == 200
|
|
|
|
for item in response.json()["entries"]:
|
|
assert item["success"]
|