mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-06-03 21:55:22 -04:00
* fix ts types * feat(code-generation): ♻️ update code-generation formats * new scope * add step button * fix linter error * update code-generation tags * feat(backend): ✨ start multi-tenant support * feat(backend): ✨ group invitation token generation and signup * refactor(backend): ♻️ move group admin actions to admin router * set url base to include `/admin` * feat(frontend): ✨ generate user sign-up links * test(backend): ✅ refactor test-suite to further decouple tests (WIP) * feat(backend): 🐛 assign owner on backup import for recipes * fix(backend): 🐛 assign recipe owner on migration from other service Co-authored-by: hay-kot <hay-kot@pm.me>
28 lines
787 B
Python
28 lines
787 B
Python
import json
|
|
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from tests.app_routes import AppRoutes
|
|
|
|
|
|
@pytest.fixture
|
|
def backup_data():
|
|
return {
|
|
"name": "test_backup_2021-Apr-27.zip",
|
|
"force": True,
|
|
"recipes": True,
|
|
"settings": False, # ! Broken
|
|
"groups": False, # ! Also Broken
|
|
"users": False,
|
|
}
|
|
|
|
|
|
def test_import(api_client: TestClient, api_routes: AppRoutes, backup_data, admin_token):
|
|
import_route = api_routes.backups_file_name_import("test_backup_2021-Apr-27.zip")
|
|
response = api_client.post(import_route, json=backup_data, headers=admin_token)
|
|
assert response.status_code == 200
|
|
for _, value in json.loads(response.content).items():
|
|
for v in value:
|
|
assert v["status"] is True
|