Browse Source

Pull special params from parent object

pull/1/head
Mac Chapman 10 years ago
parent
commit
a49e116393
  1. 7
      steam/webapi.py
  2. 37
      test/test_webapi.py

7
steam/webapi.py

@ -213,9 +213,10 @@ class WebAPIMethod(object):
params = {}
# process special case kwargs
for param in ('key', 'format', 'raw'):
if param in kwargs:
params[param] = kwargs[param]
del kwargs[param]
if param not in kwargs:
parent_param = getattr(self._parent._parent, param, None)
if parent_param:
kwargs[param] = parent_param
# process method parameters
for param in self.parameters.values():

37
test/test_webapi.py

@ -0,0 +1,37 @@
import mock
from steam import webapi
import unittest
class TestWebAPI(unittest.TestCase):
@mock.patch('steam.webapi.WebAPI._api_request', mock.Mock())
@mock.patch('steam.webapi.WebAPI.load_interfaces', mock.Mock())
def test_with_key(self):
api = webapi.WebAPI(key='testkey')
api.ISteamUser = webapi.WebAPIInterface({
'name': 'ISteamUser',
'methods': [
{
"name": "GetPlayerSummaries",
"version": 2,
"httpmethod": "GET",
"parameters": [
{
"name": "key",
"type": "string",
"optional": False,
"description": "access key"
},
{
"name": "steamids",
"type": "string",
"optional": False,
"description": "Comma-delimited list of SteamIDs (max: 100)"
}
]
},
]
}, parent=api)
api.ISteamUser.GetPlayerSummaries(steamids='76561197960435530')
Loading…
Cancel
Save