1
+ import asyncio
1
2
from datetime import datetime , timedelta
3
+
2
4
from httpx import Response
3
5
import pytest
4
- import asyncio
5
6
6
- from tests .common import get_response_json
7
7
from xbox .webapi .api .provider .ratelimitedprovider import RateLimitedProvider
8
-
9
8
from xbox .webapi .common .exceptions import RateLimitExceededException , XboxException
10
9
from xbox .webapi .common .ratelimits import CombinedRateLimit
11
10
from xbox .webapi .common .ratelimits .models import TimePeriod
12
11
12
+ from tests .common import get_response_json
13
+
13
14
14
15
def helper_test_combinedratelimit (
15
16
crl : CombinedRateLimit , burstLimit : int , sustainLimit : int
@@ -18,8 +19,8 @@ def helper_test_combinedratelimit(
18
19
sustain = crl .get_limits_by_period (TimePeriod .SUSTAIN )
19
20
20
21
# These functions should return a list with one element
21
- assert type (burst ) == list
22
- assert type (sustain ) == list
22
+ assert isinstance (burst , list )
23
+ assert isinstance (sustain , list )
23
24
24
25
assert len (burst ) == 1
25
26
assert len (sustain ) == 1
@@ -111,7 +112,7 @@ async def make_request():
111
112
route = respx_mock .get ("https://social.xboxlive.com" ).mock (
112
113
return_value = Response (200 , json = get_response_json ("people_summary_own" ))
113
114
)
114
- ret = await xbl_client .people .get_friends_summary_own ()
115
+ await xbl_client .people .get_friends_summary_own ()
115
116
116
117
assert route .called
117
118
@@ -145,7 +146,7 @@ async def helper_reach_and_wait_for_burst(
145
146
make_request , start_time , burst_limit : int , expected_counter : int
146
147
):
147
148
# Make as many requests as possible without exceeding the BURST limit.
148
- for i in range (burst_limit ):
149
+ for _ in range (burst_limit ):
149
150
await make_request ()
150
151
151
152
# Make another request, ensure that it raises the exception.
@@ -175,7 +176,7 @@ async def make_request():
175
176
route = respx_mock .get ("https://social.xboxlive.com" ).mock (
176
177
return_value = Response (200 , json = get_response_json ("people_summary_own" ))
177
178
)
178
- ret = await xbl_client .people .get_friends_summary_own ()
179
+ await xbl_client .people .get_friends_summary_own ()
179
180
180
181
assert route .called
181
182
@@ -201,7 +202,7 @@ async def make_request():
201
202
)
202
203
203
204
# Now, make the rest of the requests (10 left, 20/30 done!)
204
- for i in range (10 ):
205
+ for _ in range (10 ):
205
206
await make_request ()
206
207
207
208
# Wait for the burst limit to 'reset'.
0 commit comments