This repository was archived by the owner on Jun 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathtest_test_results_view.py
More file actions
234 lines (219 loc) · 9.47 KB
/
test_test_results_view.py
File metadata and controls
234 lines (219 loc) · 9.47 KB
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
from unittest.mock import patch
from django.test import override_settings
from django.urls import reverse
from freezegun import freeze_time
from rest_framework import status
from shared.django_apps.core.tests.factories import OwnerFactory, RepositoryFactory
from codecov.tests.base_test import InternalAPITest
from reports.tests.factories import TestInstanceFactory
from utils.test_utils import APIClient
@freeze_time("2022-01-01T00:00:00")
class TestResultsViewsetTests(InternalAPITest):
def setUp(self):
self.org = OwnerFactory()
self.repo = RepositoryFactory(author=self.org)
self.current_owner = OwnerFactory(
permission=[self.repo.repoid], organizations=[self.org.ownerid]
)
self.test_instances = [
TestInstanceFactory(repoid=self.repo.repoid, commitid="1234"),
TestInstanceFactory(repoid=self.repo.repoid, commitid="3456"),
]
self.client = APIClient()
self.client.force_login_owner(self.current_owner)
def test_list(self):
url = reverse(
"api-v2-tests-results-list",
kwargs={
"service": self.org.service,
"owner_username": self.org.username,
"repo_name": self.repo.name,
},
)
res = self.client.get(url)
assert res.status_code == status.HTTP_200_OK
assert res.json() == {
"count": 2,
"next": None,
"previous": None,
"results": [
{
"id": self.test_instances[0].id,
"name": self.test_instances[0].test.name,
"test_id": self.test_instances[0].test_id,
"failure_message": self.test_instances[0].failure_message,
"duration_seconds": self.test_instances[0].duration_seconds,
"commitid": self.test_instances[0].commitid,
"outcome": self.test_instances[0].outcome,
"branch": self.test_instances[0].branch,
"repoid": self.test_instances[0].repoid,
"failure_rate": 1.0,
},
{
"id": self.test_instances[1].id,
"name": self.test_instances[1].test.name,
"test_id": self.test_instances[1].test_id,
"failure_message": self.test_instances[1].failure_message,
"duration_seconds": self.test_instances[1].duration_seconds,
"commitid": self.test_instances[1].commitid,
"outcome": self.test_instances[1].outcome,
"branch": self.test_instances[1].branch,
"repoid": self.test_instances[1].repoid,
"failure_rate": 1.0,
},
],
"total_pages": 1,
}
def test_list_filters(self):
url = reverse(
"api-v2-tests-results-list",
kwargs={
"service": self.org.service,
"owner_username": self.org.username,
"repo_name": self.repo.name,
},
)
res = self.client.get(f"{url}?commit_id={self.test_instances[0].commitid}")
assert res.status_code == status.HTTP_200_OK
assert res.json() == {
"count": 1,
"next": None,
"previous": None,
"results": [
{
"id": self.test_instances[0].id,
"name": self.test_instances[0].test.name,
"test_id": self.test_instances[0].test_id,
"failure_message": self.test_instances[0].failure_message,
"duration_seconds": self.test_instances[0].duration_seconds,
"commitid": self.test_instances[0].commitid,
"outcome": self.test_instances[0].outcome,
"branch": self.test_instances[0].branch,
"repoid": self.test_instances[0].repoid,
"failure_rate": 1.0,
},
],
"total_pages": 1,
}
@patch("api.shared.repo.repository_accessors.RepoAccessors.get_repo_permissions")
def test_retrieve(self, get_repo_permissions):
get_repo_permissions.return_value = (True, True)
res = self.client.get(
reverse(
"api-v2-tests-results-detail",
kwargs={
"service": self.org.service,
"owner_username": self.org.username,
"repo_name": self.repo.name,
"pk": self.test_instances[0].pk,
},
)
)
assert res.status_code == status.HTTP_200_OK
assert res.json() == {
"id": self.test_instances[0].id,
"name": self.test_instances[0].test.name,
"test_id": self.test_instances[0].test_id,
"failure_message": self.test_instances[0].failure_message,
"duration_seconds": self.test_instances[0].duration_seconds,
"commitid": self.test_instances[0].commitid,
"outcome": self.test_instances[0].outcome,
"branch": self.test_instances[0].branch,
"repoid": self.test_instances[0].repoid,
"failure_rate": 1.0,
}
@patch("api.shared.permissions.RepositoryArtifactPermissions.has_permission")
@patch("api.shared.permissions.SuperTokenPermissions.has_permission")
def test_no_test_result_if_unauthenticated_token_request(
self,
super_token_permissions_has_permission,
repository_artifact_permissions_has_permission,
):
repository_artifact_permissions_has_permission.return_value = False
super_token_permissions_has_permission.return_value = False
url = reverse(
"api-v2-tests-results-list",
kwargs={
"service": self.org.service,
"owner_username": self.org.username,
"repo_name": self.repo.name,
},
)
res = self.client.get(f"{url}?commit_id={self.test_instances[0].commitid}")
assert res.status_code == 403
assert (
res.data["detail"] == "You do not have permission to perform this action."
)
@override_settings(SUPER_API_TOKEN="testaxs3o76rdcdpfzexuccx3uatui2nw73r")
@patch("api.shared.permissions.RepositoryArtifactPermissions.has_permission")
def test_no_result_if_not_super_token_nor_user_token(
self, repository_artifact_permissions_has_permission
):
repository_artifact_permissions_has_permission.return_value = False
res = self.client.get(
reverse(
"api-v2-tests-results-detail",
kwargs={
"service": self.org.service,
"owner_username": self.org.username,
"repo_name": self.repo.name,
"pk": self.test_instances[0].pk,
},
),
HTTP_AUTHORIZATION="Bearer 73c8d301-2e0b-42c0-9ace-95eef6b68e86",
)
assert res.status_code == 401
assert res.data["detail"] == "Invalid token."
@override_settings(SUPER_API_TOKEN="testaxs3o76rdcdpfzexuccx3uatui2nw73r")
@patch("api.shared.permissions.RepositoryArtifactPermissions.has_permission")
def test_no_result_if_super_token_but_no_GET_request(
self, repository_artifact_permissions_has_permission
):
repository_artifact_permissions_has_permission.return_value = False
res = self.client.post(
reverse(
"api-v2-tests-results-detail",
kwargs={
"service": self.org.service,
"owner_username": self.org.username,
"repo_name": self.repo.name,
"pk": self.test_instances[0].pk,
},
),
HTTP_AUTHORIZATION="Bearer testaxs3o76rdcdpfzexuccx3uatui2nw73r",
)
assert res.status_code == 403
assert (
res.data["detail"] == "You do not have permission to perform this action."
)
@override_settings(SUPER_API_TOKEN="testaxs3o76rdcdpfzexuccx3uatui2nw73r")
@patch("api.shared.permissions.RepositoryArtifactPermissions.has_permission")
def test_result_with_valid_super_token(
self, repository_artifact_permissions_has_permission
):
repository_artifact_permissions_has_permission.return_value = False
res = self.client.get(
reverse(
"api-v2-tests-results-detail",
kwargs={
"service": self.org.service,
"owner_username": self.org.username,
"repo_name": self.repo.name,
"pk": self.test_instances[0].pk,
},
),
HTTP_AUTHORIZATION="Bearer testaxs3o76rdcdpfzexuccx3uatui2nw73r",
)
assert res.status_code == 200
assert res.json() == {
"id": self.test_instances[0].id,
"name": self.test_instances[0].test.name,
"test_id": self.test_instances[0].test_id,
"failure_message": self.test_instances[0].failure_message,
"duration_seconds": self.test_instances[0].duration_seconds,
"commitid": self.test_instances[0].commitid,
"outcome": self.test_instances[0].outcome,
"branch": self.test_instances[0].branch,
"repoid": self.test_instances[0].repoid,
"failure_rate": 1.0,
}