pytest-api/tests/conftest.py
2024-07-20 16:30:36 +01:00

76 lines
1.9 KiB
Python

import pytest
from apiclient.config import get_cfg
from apiclient.oauth_helper import get_legacy_token
ENV = 'qa' # This would be set in an actual OS env var on the execution platform
CFG = get_cfg(ENV) # needed for the token, and the full api url
application_json = {'Content-Type': 'application/json'}
@pytest.fixture
def role_get_call():
token = get_legacy_token(ENV)
api_call = {
"token": token,
"method": "GET",
"url": CFG["api_url"] + '/data-delivery/role',
"headers": application_json,
"body": {"application_id": 1}
}
return api_call
@pytest.fixture
def acms_redaction_get_call():
token = get_legacy_token(ENV)
api_call = {
"token": token,
"method": "GET",
"url": CFG["api_url"] + '/data-delivery/acmsredaction',
"headers": application_json,
"body": {"redaction_id": 1}
}
return api_call
@pytest.fixture
def client_applications_get_call():
token = get_legacy_token(ENV)
api_call = {
"token": token,
"method": "GET",
"url": CFG["api_url"] + '/data-delivery/client-applications',
"headers": application_json,
"body": {}
}
return api_call
@pytest.fixture
def endpoint_get_call():
token = get_legacy_token(ENV)
api_call = {
"token": token,
"method": "GET",
"url": CFG["api_url"] + '/data-delivery/endpoint',
"headers": application_json,
"body": {
"endpoint_id": 1001
}
}
return api_call
@pytest.fixture
def redaction_type_get_call():
token = get_legacy_token(ENV)
api_call = {
"token": token,
"method": "GET",
"url": CFG["api_url"] + '/data-delivery/redactiontype',
"headers": application_json,
"body": {}
}
return api_call