-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtest_face_endpoints.py
271 lines (230 loc) · 8.77 KB
/
test_face_endpoints.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
from __future__ import annotations
import base64
import logging
from unittest.mock import MagicMock, patch
import pytest
from fastapi.testclient import TestClient
from API.route import router
from API.utils import init_logging_config
init_logging_config()
client = TestClient(router)
@pytest.mark.run(order=1)
def test_register_face1():
"""
Test the creation of a face entry.
Verifies that a POST request to /create_new_faceEntry with a valid
JSON body containing an EmployeeCode, Name, gender, Department, and
a list of one or more images creates a new face entry in the database
and returns a message indicating success.
"""
mock_doc = {
"_id": "65e6284d01f95cd96ea334a7",
"EmployeeCode": "1",
"Name": "Devansh",
"gender": "Male",
"Department": "IT",
"Images": ["encoded_string1", "encoded_string2"],
}
mock_find = MagicMock(return_value=[mock_doc, mock_doc])
mock_insert_one = MagicMock(return_value=MagicMock(inserted_id="1"))
mock_find_one = MagicMock(return_value=mock_doc)
mock_update_one = MagicMock(return_value=MagicMock(modified_count=1))
mock_find_one_and_delete = MagicMock(return_value=mock_doc)
with patch("API.database.Database.find", mock_find), patch(
"API.database.Database.insert_one",
mock_insert_one,
), patch("API.database.Database.find_one", mock_find_one), patch(
"API.database.Database.update_one",
mock_update_one,
), patch(
"API.database.Database.find_one_and_delete",
mock_find_one_and_delete,
):
with open("./test-faces/devansh.jpg", "rb") as image_file:
encoded_string1 = base64.b64encode(
image_file.read(),
).decode("utf-8")
response1 = client.post(
"/create_new_faceEntry",
json={
"EmployeeCode": "1",
"Name": "Devansh",
"gender": "Male",
"Department": "IT",
"Images": [encoded_string1, encoded_string1],
},
)
assert response1.status_code == 200
assert response1.json() == {
"message": "Face entry created successfully",
}
@pytest.mark.run(order=2)
def test_register_face2():
"""
Test the creation of a second face entry.
Verifies that a POST request to /create_new_faceEntry with a valid
JSON body containing an EmployeeCode, Name, gender, Department, and
a list of one or more images creates a new face entry in the database
and returns a message indicating success.
"""
mock_doc = {
"_id": "65e6284d01f95cd96ea334a7",
"EmployeeCode": "1",
"Name": "Devansh",
"gender": "Male",
"Department": "IT",
"Images": ["encoded_string1", "encoded_string2"],
}
mock_find = MagicMock(return_value=[mock_doc, mock_doc])
mock_insert_one = MagicMock(return_value=MagicMock(inserted_id="1"))
mock_find_one = MagicMock(return_value=mock_doc)
mock_update_one = MagicMock(return_value=MagicMock(modified_count=1))
mock_find_one_and_delete = MagicMock(return_value=mock_doc)
with patch("API.database.Database.find", mock_find), patch(
"API.database.Database.insert_one",
mock_insert_one,
), patch("API.database.Database.find_one", mock_find_one), patch(
"API.database.Database.update_one",
mock_update_one,
), patch(
"API.database.Database.find_one_and_delete",
mock_find_one_and_delete,
):
with open("./test-faces/devansh.jpg", "rb") as image_file:
encoded_string2 = base64.b64encode(
image_file.read(),
).decode("utf-8")
response2 = client.post(
"/create_new_faceEntry",
json={
"EmployeeCode": "2",
"Name": "test",
"gender": "Female",
"Department": "IT",
"Images": [encoded_string2, encoded_string2],
},
)
assert response2.status_code == 200
assert response2.json() == {
"message": "Face entry created successfully",
}
@pytest.mark.run(order=3)
def test_get_all_faces_after_registration():
"""
Test the retrieval of all face entries after registration.
Verifies that a GET request to /Data returns a list of all face entries
in the database, and that the list contains the two face entries created
in the previous tests.
"""
mock_doc = {
"_id": "65e6284d01f95cd96ea334a7",
"EmployeeCode": "1",
"Name": "Devansh",
"gender": "Male",
"Department": "IT",
"Images": ["encoded_string1", "encoded_string2"],
}
mock_find = MagicMock(return_value=[mock_doc, mock_doc])
with patch("API.database.Database.find", mock_find):
response = client.get("/Data/")
assert response.status_code == 200
logging.debug(response.json())
assert len(response.json()) == 2
@pytest.mark.run(order=4)
def test_update_face():
"""
Test the update of a face entry.
Verifies that a PUT request to /update/{EmployeeCode} with a valid
JSON body containing an EmployeeCode, Name, gender, Department, and
a list of one or more images updates the face entry in the database
and returns a message indicating success.
"""
mock_doc = {
"_id": "65e6284d01f95cd96ea334a7",
"EmployeeCode": "1",
"Name": "Devansh",
"gender": "Male",
"Department": "IT",
"Images": ["encoded_string1", "encoded_string2"],
}
mock_find = MagicMock(return_value=[mock_doc, mock_doc])
mock_insert_one = MagicMock(return_value=MagicMock(inserted_id="1"))
mock_find_one = MagicMock(return_value=mock_doc)
mock_update_one = MagicMock(return_value=MagicMock(modified_count=1))
mock_find_one_and_delete = MagicMock(return_value=mock_doc)
with patch("API.database.Database.find", mock_find), patch(
"API.database.Database.insert_one",
mock_insert_one,
), patch("API.database.Database.find_one", mock_find_one), patch(
"API.database.Database.update_one",
mock_update_one,
), patch(
"API.database.Database.find_one_and_delete",
mock_find_one_and_delete,
):
with open("./test-faces/devansh.jpg", "rb") as image_file:
encoded_string2 = base64.b64encode(
image_file.read(),
).decode("utf-8")
response = client.put(
"/update/1",
json={
"Name": "Test",
"gender": "Male",
"Department": "IT_Test",
"Images": [encoded_string2, encoded_string2],
},
)
assert response.status_code == 200
assert response.json() == "Updated Successfully"
@pytest.mark.run(order=5)
def test_delete_face():
"""
Test the DELETE endpoint to delete a face entry.
This test case asserts that the DELETE endpoint returns a 200 status code and a JSON response with the message 'Successfully Deleted'.
"""
response = client.delete("/delete/1")
assert response.status_code == 200
assert response.json() == {"Message": "Successfully Deleted"}
@pytest.mark.run(order=6)
def test_recognize_face_fail():
"""
Test the POST endpoint to recognize a face when no match is found.
This test case asserts that the POST endpoint returns a 404 status code and a JSON response with the message 'No match found'.
"""
mock_doc = {
"Image": "encoded_string2",
"Name": "Test2",
"score": 0.0,
}
with patch("API.database.Database.vector_search", return_value=[mock_doc]):
with open("./test-faces/devansh.jpg", "rb") as image_file:
response = client.post(
"/recognize_face",
files={"Face": image_file},
)
assert response.status_code == 404
assert response.json() == {"message": "No match found"}
@pytest.mark.run(order=7)
def test_recognize_face_success():
"""
Test the POST endpoint to recognize a face when a match is found.
This test case asserts that the POST endpoint returns a 200 status code and a JSON response with the name, image and score of the matching face entry.
"""
mock_doc = {
"Image": "encoded_string2",
"Name": "Test2",
"score": 1.0,
}
with patch("API.database.Database.vector_search", return_value=[mock_doc]):
with open("./test-faces/devansh.jpg", "rb") as image_file:
response = client.post(
"/recognize_face",
files={"Face": image_file},
)
assert response.status_code == 200
assert response.json() == {
"Name": "Test2",
"Image": "encoded_string2",
"score": 1.0,
}