1
1
import uuid
2
2
from datetime import datetime , timedelta , timezone
3
- from unittest import skip
4
3
5
4
from sentry .testutils .cases import UptimeCheckSnubaTestCase
6
5
from sentry .testutils .helpers .datetime import freeze_time
@@ -166,7 +165,9 @@ def test_simple_with_date_cutoff_rounded_resolution_past_cutoff(self):
166
165
}
167
166
168
167
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
+ """
170
171
response = self .get_response (
171
172
self .organization .slug ,
172
173
project = [self .project .id ],
@@ -176,9 +177,13 @@ def test_invalid_uptime_subscription_id(self):
176
177
resolution = "1d" ,
177
178
)
178
179
assert response .status_code == 400
180
+ assert response .json () == "Invalid project uptime subscription ids provided"
179
181
180
182
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
+ """
182
187
response = self .get_response (
183
188
self .organization .slug ,
184
189
project = [self .project .id ],
@@ -188,23 +193,28 @@ def test_no_uptime_subscription_id(self):
188
193
resolution = "1d" ,
189
194
)
190
195
assert response .status_code == 400
196
+ assert response .json () == "No project uptime subscription ids provided"
191
197
192
- @skip ("vgrozdanic: This test is flaky and should be skipped" )
193
198
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
+ """
196
203
response = self .get_response (
197
204
self .organization .slug ,
198
205
project = [self .project .id ],
199
206
projectUptimeSubscriptionId = [str (self .project_uptime_subscription .id )],
200
207
since = (datetime .now (timezone .utc ) - timedelta (days = 90 )).timestamp (),
201
208
until = datetime .now (timezone .utc ).timestamp (),
202
- resolution = "1h " ,
209
+ resolution = "1m " ,
203
210
)
204
211
assert response .status_code == 400
212
+ assert response .json () == "error making request"
205
213
206
214
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
+ """
208
218
209
219
response = self .get_response (
210
220
self .organization .slug ,
@@ -215,6 +225,9 @@ def test_too_many_uptime_subscription_ids(self):
215
225
resolution = "1h" ,
216
226
)
217
227
assert response .status_code == 400
228
+ assert (
229
+ response .json () == "Too many project uptime subscription ids provided. Maximum is 100"
230
+ )
218
231
219
232
220
233
# TODO(jferg): remove after 90 days
0 commit comments