Skip to content

Commit a3ab02d

Browse files
evanpurkhiserandrewshie-sentry
authored andcommitted
fix(uptime): Improve organization_uptime_stats tests (#88032)
Fixes GH-86606
1 parent 9f3610f commit a3ab02d

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

tests/sentry/uptime/endpoints/test_organization_uptime_stats.py

+21-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import uuid
22
from datetime import datetime, timedelta, timezone
3-
from unittest import skip
43

54
from sentry.testutils.cases import UptimeCheckSnubaTestCase
65
from sentry.testutils.helpers.datetime import freeze_time
@@ -166,7 +165,9 @@ def test_simple_with_date_cutoff_rounded_resolution_past_cutoff(self):
166165
}
167166

168167
def test_invalid_uptime_subscription_id(self):
169-
"""Test that the endpoint returns data for a simple uptime check."""
168+
"""
169+
Test that an invalid uptime_subscription_id produces a 400 response.
170+
"""
170171
response = self.get_response(
171172
self.organization.slug,
172173
project=[self.project.id],
@@ -176,9 +177,13 @@ def test_invalid_uptime_subscription_id(self):
176177
resolution="1d",
177178
)
178179
assert response.status_code == 400
180+
assert response.json() == "Invalid project uptime subscription ids provided"
179181

180182
def test_no_uptime_subscription_id(self):
181-
"""Test that the endpoint returns data for a simple uptime check."""
183+
"""
184+
Test that not sending any uptime_subscription_id produces a 400
185+
response.
186+
"""
182187
response = self.get_response(
183188
self.organization.slug,
184189
project=[self.project.id],
@@ -188,23 +193,28 @@ def test_no_uptime_subscription_id(self):
188193
resolution="1d",
189194
)
190195
assert response.status_code == 400
196+
assert response.json() == "No project uptime subscription ids provided"
191197

192-
@skip("vgrozdanic: This test is flaky and should be skipped")
193198
def test_too_many_periods(self):
194-
"""Test that the endpoint returns data for a simple uptime check."""
195-
199+
"""
200+
Test that requesting a high resolution across a large period of time
201+
produces a 400 response.
202+
"""
196203
response = self.get_response(
197204
self.organization.slug,
198205
project=[self.project.id],
199206
projectUptimeSubscriptionId=[str(self.project_uptime_subscription.id)],
200207
since=(datetime.now(timezone.utc) - timedelta(days=90)).timestamp(),
201208
until=datetime.now(timezone.utc).timestamp(),
202-
resolution="1h",
209+
resolution="1m",
203210
)
204211
assert response.status_code == 400
212+
assert response.json() == "error making request"
205213

206214
def test_too_many_uptime_subscription_ids(self):
207-
"""Test that the endpoint returns data for a simple uptime check."""
215+
"""
216+
Test that sending a large nubmer of subscription IDs produces a 400
217+
"""
208218

209219
response = self.get_response(
210220
self.organization.slug,
@@ -215,6 +225,9 @@ def test_too_many_uptime_subscription_ids(self):
215225
resolution="1h",
216226
)
217227
assert response.status_code == 400
228+
assert (
229+
response.json() == "Too many project uptime subscription ids provided. Maximum is 100"
230+
)
218231

219232

220233
# TODO(jferg): remove after 90 days

0 commit comments

Comments
 (0)