diff --git a/.gitignore b/.gitignore index e6097687d..6e00165da 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,6 @@ mealie/temp/* mealie/temp/api.html .temp/ .secret -*.zip dev/data/backups/* dev/data/debug/* diff --git a/tests/integration_tests/test_import_routes.py b/tests/integration_tests/test_import_routes.py index 62125da97..f683a2791 100644 --- a/tests/integration_tests/test_import_routes.py +++ b/tests/integration_tests/test_import_routes.py @@ -8,18 +8,19 @@ from tests.app_routes import AppRoutes @pytest.fixture def backup_data(): return { - "name": "dev_sample_data_2021-Feb-13.zip", - "force": False, + "name": "test_backup_2021-Apr-27.zip", + "force": True, "recipes": True, "settings": False, # ! Broken "themes": True, "groups": True, "users": True, + "pages": True, } def test_import(api_client: TestClient, api_routes: AppRoutes, backup_data, token): - import_route = api_routes.backups_file_name_import("dev_sample_data_2021-Feb-13.zip") + import_route = api_routes.backups_file_name_import("test_backup_2021-Apr-27.zip") response = api_client.post(import_route, json=backup_data, headers=token) assert response.status_code == 200 for _, value in json.loads(response.content).items(): diff --git a/tests/integration_tests/test_recipe_routes.py b/tests/integration_tests/test_recipe_routes.py index 0c886118e..b94d6d5f3 100644 --- a/tests/integration_tests/test_recipe_routes.py +++ b/tests/integration_tests/test_recipe_routes.py @@ -60,7 +60,7 @@ def test_read_update(api_client: TestClient, api_routes: AppRoutes, recipe_data, response = api_client.put(recipe_url, json=recipe, headers=token) assert response.status_code == 200 - assert json.loads(response.text) == recipe_data.expected_slug + assert json.loads(response.text).get("slug") == recipe_data.expected_slug response = api_client.get(recipe_url) @@ -84,7 +84,7 @@ def test_rename(api_client: TestClient, api_routes: AppRoutes, recipe_data, toke response = api_client.put(recipe_url, json=recipe, headers=token) assert response.status_code == 200 - assert json.loads(response.text) == new_slug + assert json.loads(response.text).get("slug") == new_slug recipe_data.expected_slug = new_slug