23 lines
798 B
Python
23 lines
798 B
Python
"""
|
|
"""
|
|
import pytest
|
|
from httpx import AsyncClient
|
|
|
|
from src.organisation.models import Organisation as Org
|
|
from src.user.models import User
|
|
|
|
|
|
@pytest.mark.anyio
|
|
async def test_get_org_auth_root_su(default_client: AsyncClient, db_session):
|
|
# If a super admin can access a resource when not the root user
|
|
db_session.add(User(email="admin@test.org", first_name="Admin", last_name="Test", oidc_id="abcd-efgh-ijkl-4321"))
|
|
db_session.flush()
|
|
db_session.add(
|
|
Org(name="Test Org Two", root_user_id=2, billing_contact_id=1, owner_contact_id=2, security_contact_id=3,
|
|
status="approved", intake_questionnaire={}))
|
|
db_session.flush()
|
|
|
|
resp = await default_client.get("/org?org_id=2")
|
|
assert resp.status_code != 422
|
|
assert resp.status_code == 200
|
|
assert resp.json()["name"] == "Test Org Two"
|