-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconftest.py
140 lines (119 loc) · 3.21 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import pytest
import pytest_asyncio
from asgi_lifespan import LifespanManager
from fastapi import FastAPI
from httpx import AsyncClient
@pytest.fixture
def app() -> FastAPI:
"""
Sets up an application instance for testing
"""
from app.main import app # local import for testing purpose
return app
@pytest_asyncio.fixture
async def client(app: FastAPI) -> AsyncClient:
"""
Sets up an async test runner client for testing
"""
async with LifespanManager(app):
async with AsyncClient(
app=app,
base_url="http://localhost",
headers={"Content-Type": "application/json"},
) as client:
yield client
@pytest.fixture
def test_post_query_success_mock_202(mocker) -> None:
"""
Test return data for the 202 response from veritable when forwarding a query.
"""
mocker.patch(
"routes.posts.postToVeritable",
return_value=[
"202",
{},
],
)
@pytest.fixture
def test_agent_query_mock(mocker) -> None:
"""
Test return data for the 202 response fromquery agent.
"""
mocker.patch(
"routes.posts.agent_query",
return_value=[
{"text": "Successful query response from the Sample Agent"},
],
)
@pytest.fixture
def test_receive_response_success_mock_200(mocker) -> None:
"""
Test return data for the 200 receive response forwarding to veritable.
"""
mocker.patch(
"routes.posts.postResponseToVeritable",
return_value=[
"200",
{},
],
)
@pytest.fixture
def test_receive_response_fail_mock_500(mocker) -> None:
"""
Test return data for the 500 receive response forwarding to veritable.
"""
mocker.patch(
"routes.posts.postResponseToVeritable",
return_value=[
"500",
{},
],
)
@pytest.fixture
def test_drpc_event_handler_response_success_mock_200(mocker) -> None:
"""
Test return data for forwarding data from the "/webhooks/drpc" endpoint to /receive-response endpoint in peerAPI.
"""
mocker.patch(
"routes.posts.peerReceivesResponse",
return_value=[
"200",
{},
],
)
@pytest.fixture
def test_drpc_event_handler_query_success_mock_200(mocker) -> None:
"""
Test return data for forwarding data from the "/webhooks/drpc" endpoint to /receive-query endpoint in peerAPI.
"""
mocker.patch(
"routes.posts.peerReceivesQuery",
return_value=[
"200",
{},
],
)
@pytest.fixture
def test_drpc_event_handler_query_fail_mock_500(mocker) -> None:
"""
Test failed return data for forwarding data from the "/webhooks/drpc" endpoint to /receive-query endpoint in peerAPI.
"""
mocker.patch(
"routes.posts.peerReceivesQuery",
return_value=[
"500",
{},
],
)
@pytest.fixture
def test_post_query_fail_mock_500(mocker) -> None:
"""
Test return data for 500 response from veritable when forwarding a query.
"""
mocker.patch(
"routes.posts.postToVeritable",
return_value=[
"500",
{},
],
)