From a49e1163939582ce3e7ef14dcb745ba526f42771 Mon Sep 17 00:00:00 2001 From: Mac Chapman Date: Wed, 22 Jul 2015 12:05:36 +0100 Subject: [PATCH] Pull special params from parent object --- steam/webapi.py | 7 ++++--- test/test_webapi.py | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 test/test_webapi.py diff --git a/steam/webapi.py b/steam/webapi.py index ef29d01..41bbe83 100644 --- a/steam/webapi.py +++ b/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(): diff --git a/test/test_webapi.py b/test/test_webapi.py new file mode 100644 index 0000000..acacfb1 --- /dev/null +++ b/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')