mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	* Enhance security and safety around user update API - Prevent a regular user from promoting themself to admin - Prevent an admin from demoting themself - Refactor token fixture to admin + regular user tokens * Restrict user CRUD API to admins * Secure admin API routes * Refactor APIrouter into Admin/UserAPIRouter * Secure theme routes * Make 'all recipes' routes public * Secure favorite routes * Remove redundant checks * Fix public routes mistakenly flagged user routes * Make webhooks changeable only by admin * Allow users to create categories and tags * Address lint issues
		
			
				
	
	
		
			98 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from tests.pre_test import DB_URL, settings  # isort:skip
 | |
| 
 | |
| import json
 | |
| 
 | |
| import requests
 | |
| from fastapi.testclient import TestClient
 | |
| from mealie.app import app
 | |
| from mealie.db.db_setup import SessionLocal, generate_session
 | |
| from mealie.db.init_db import main
 | |
| from pytest import fixture
 | |
| 
 | |
| from tests.app_routes import AppRoutes
 | |
| from tests.test_config import TEST_DATA
 | |
| from tests.utils.recipe_data import get_raw_no_image, get_raw_recipe, get_recipe_test_cases
 | |
| 
 | |
| main()
 | |
| 
 | |
| 
 | |
| def override_get_db():
 | |
|     try:
 | |
|         db = SessionLocal()
 | |
|         yield db
 | |
|     finally:
 | |
|         db.close()
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def api_client():
 | |
| 
 | |
|     app.dependency_overrides[generate_session] = override_get_db
 | |
| 
 | |
|     yield TestClient(app)
 | |
| 
 | |
|     DB_URL.unlink(missing_ok=True)
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def api_routes():
 | |
|     return AppRoutes()
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def test_image_jpg():
 | |
|     return TEST_DATA.joinpath("images", "test_image.jpg")
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def test_image_png():
 | |
|     return TEST_DATA.joinpath("images", "test_image.png")
 | |
| 
 | |
| 
 | |
| def login(form_data, api_client: requests, api_routes: AppRoutes):
 | |
|     response = api_client.post(api_routes.auth_token, form_data)
 | |
|     assert response.status_code == 200
 | |
|     token = json.loads(response.text).get("access_token")
 | |
|     return {"Authorization": f"Bearer {token}"}
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def admin_token(api_client: requests, api_routes: AppRoutes):
 | |
|     form_data = {"username": "changeme@email.com", "password": settings.DEFAULT_PASSWORD}
 | |
|     return login(form_data, api_client, api_routes)
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def user_token(admin_token, api_client: requests, api_routes: AppRoutes):
 | |
|     # Create the user
 | |
|     create_data = {
 | |
|         "fullName": "User",
 | |
|         "email": "user@email.com",
 | |
|         "password": "useruser",
 | |
|         "group": "Home",
 | |
|         "admin": False,
 | |
|         "tokens": [],
 | |
|     }
 | |
| 
 | |
|     response = api_client.post(api_routes.users, json=create_data, headers=admin_token)
 | |
|     assert response.status_code == 201
 | |
| 
 | |
|     # Log in as this user
 | |
|     form_data = {"username": "user@email.com", "password": "useruser"}
 | |
|     return login(form_data, api_client, api_routes)
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def raw_recipe():
 | |
|     return get_raw_recipe()
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def raw_recipe_no_image():
 | |
|     return get_raw_no_image()
 | |
| 
 | |
| 
 | |
| @fixture(scope="session")
 | |
| def recipe_store():
 | |
|     return get_recipe_test_cases()
 |