from sqlmodel import Session from app import crud from app.models import Location, LocationCreate from tests.utils.user import create_random_user from tests.utils.utils import random_lower_string def create_random_location(db: Session) -> Location: user = create_random_user(db) owner_id = user.id assert owner_id is not None title = random_lower_string() description = random_lower_string() location_in = LocationCreate(title=title, description=description) return crud.create_location(session=db, location_in=location_in, owner_id=owner_id)