File tree 2 files changed +24
-5
lines changed
src/buildkite_test_collector/collector
tests/buildkite_test_collector/collector
2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change 5
5
from sys import stderr
6
6
import traceback
7
7
from requests import post , Response
8
- from requests .exceptions import InvalidHeader
8
+ from requests .exceptions import InvalidHeader , HTTPError
9
9
from .payload import Payload
10
10
11
11
@@ -29,13 +29,15 @@ def submit(payload: Payload, batch_size=100) -> Optional[Response]:
29
29
"Authorization" : f"Token token=\" { token } \" "
30
30
},
31
31
timeout = 60 )
32
- if response .status_code >= 300 :
33
- return response
32
+ response .raise_for_status ()
33
+ return response
34
34
except InvalidHeader as error :
35
35
print ("Warning: Invalid `BUILDKITE_ANALYTICS_TOKEN` environment variable" , file = stderr )
36
36
print (error , file = stderr )
37
+ except HTTPError as err :
38
+ print ("Warning: Failed to uploads test results to buildkite" , file = stderr )
39
+ print (err , file = stderr )
37
40
except Exception : # pylint: disable=broad-except
38
41
error_message = traceback .format_exc ()
39
42
print (error_message , file = stderr )
40
-
41
- return response
43
+ return None
Original file line number Diff line number Diff line change @@ -93,6 +93,23 @@ def test_submit_with_payload_returns_an_api_response(successful_test):
93
93
assert len (json ["errors" ]) == 0
94
94
assert json ['queued' ] == 1
95
95
96
+ @responses .activate
97
+ def test_submit_with_bad_response (successful_test ):
98
+ responses .add (
99
+ responses .POST ,
100
+ "https://analytics-api.buildkite.com/v1/uploads" ,
101
+ json = {'error' : str (uuid4 ())},
102
+ status = 401 )
103
+
104
+ with mock .patch .dict (os .environ , {"CI" : "true" , "BUILDKITE_ANALYTICS_TOKEN" : str (uuid4 ())}):
105
+ payload = Payload .init (detect_env ())
106
+ payload = Payload .started (payload )
107
+
108
+ payload = payload .push_test_data (successful_test )
109
+
110
+ result = submit (payload )
111
+
112
+ assert result is None
96
113
97
114
@responses .activate
98
115
def test_submit_with_large_payload_batches_requests (successful_test , failed_test ):
You can’t perform that action at this time.
0 commit comments