Browse Source

Remove urllib3 pin

https://github.com/kevin1024/vcrpy/issues/719

Signed-off-by: Alfred Wingate <[email protected]>
pull/466/head
Alfred Wingate 9 months ago
parent
commit
e313e05d03
No known key found for this signature in database GPG Key ID: A12750536B5E7010
  1. 3
      dev_requirements.txt
  2. 1
      requirements.txt
  3. 1
      setup.py
  4. 2
      tests/test_steamid.py
  5. 14
      tests/test_webapi.py

3
dev_requirements.txt

@ -1,7 +1,8 @@
-r requirements.txt
vcrpy==2.0.1
# https://github.com/kevin1024/vcrpy/issues/719
vcrpy>=4.4.0
PyYAML>=5.4
mock==1.3.0

1
requirements.txt

@ -1,7 +1,6 @@
six>=1.10.0
pycryptodomex>=3.7.0
requests>=2.9.1
urllib3<2
vdf>=3.3
gevent>=1.3.0
protobuf~=3.0; python_version >= '3'

1
setup.py

@ -17,7 +17,6 @@ install_requires = [
'six>=1.10',
'pycryptodomex>=3.7.0',
'requests>=2.9.1',
'urllib3<2',
'vdf>=3.3',
'cachetools>=3.0.0',
"win-inet-pton; python_version == '2.7' and sys_platform == 'win32'",

2
tests/test_steamid.py

@ -351,7 +351,7 @@ class steamid_functions(unittest.TestCase):
mode='once',
serializer='yaml',
filter_query_parameters=['nocache'],
decode_compressed_response=False,
decode_compressed_response=True,
before_record_request=scrub_req,
before_record_response=scrub_resp,
):

14
tests/test_webapi.py

@ -30,7 +30,7 @@ test_vcr = vcr.VCR(
)
class TCwebapi(unittest.TestCase):
@test_vcr.use_cassette('webapi.yaml')
@test_vcr.use_cassette('webapi.yaml', decode_compressed_response=True)
def setUp(self):
self.api = WebAPI(test_api_key)
self.api.session.headers['Accept-Encoding'] = 'identity'
@ -38,27 +38,27 @@ class TCwebapi(unittest.TestCase):
def test_docs(self):
self.assertTrue(len(self.api.doc()) > 0)
@test_vcr.use_cassette('webapi.yaml')
@test_vcr.use_cassette('webapi.yaml', decode_compressed_response=True)
def test_simple_api_call(self):
resp = self.api.ISteamWebAPIUtil.GetServerInfo_v1()
self.assertTrue('servertime' in resp)
@test_vcr.use_cassette('webapi.yaml')
@test_vcr.use_cassette('webapi.yaml', decode_compressed_response=True)
def test_simple_api_call_vdf(self):
resp = self.api.ISteamWebAPIUtil.GetServerInfo(format='vdf')
self.assertTrue('servertime' in resp['response'])
@test_vcr.use_cassette('webapi.yaml')
@test_vcr.use_cassette('webapi.yaml', decode_compressed_response=True)
def test_resolve_vanity(self):
resp = self.api.ISteamUser.ResolveVanityURL(vanityurl='valve', url_type=2)
self.assertEqual(resp['response']['steamid'], '103582791429521412')
@test_vcr.use_cassette('webapi.yaml')
@test_vcr.use_cassette('webapi.yaml', decode_compressed_response=True)
def test_post_publishedfile(self):
resp = self.api.ISteamRemoteStorage.GetPublishedFileDetails(itemcount=5, publishedfileids=[1,1,1,1,1])
self.assertEqual(resp['response']['resultcount'], 5)
@test_vcr.use_cassette('webapi.yaml')
@test_vcr.use_cassette('webapi.yaml', decode_compressed_response=True)
def test_get(self):
resp = webapi.get('ISteamUser', 'ResolveVanityURL', 1,
session=self.api.session, params={
@ -68,7 +68,7 @@ class TCwebapi(unittest.TestCase):
})
self.assertEqual(resp['response']['steamid'], '103582791429521412')
@test_vcr.use_cassette('webapi.yaml')
@test_vcr.use_cassette('webapi.yaml', decode_compressed_response=True)
def test_post(self):
resp = webapi.post('ISteamRemoteStorage', 'GetPublishedFileDetails', 1,
session=self.api.session, params={

Loading…
Cancel
Save