From 24dce45a06b26651a9e03e1e6c1b6ca70e28a82a Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Tue, 30 Oct 2012 15:45:10 -0400 Subject: [PATCH] Added support for post data and updated test --- python_apps/api_clients/api_client.py | 5 +++-- python_apps/api_clients/tests/test_apirequest.py | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python_apps/api_clients/api_client.py b/python_apps/api_clients/api_client.py index 85bfb9600..13896498a 100644 --- a/python_apps/api_clients/api_client.py +++ b/python_apps/api_clients/api_client.py @@ -79,9 +79,10 @@ class ApiRequest(object): def __init__(self, name, url): self.name = name self.url = url - def __call__(self, **kwargs): + def __call__(self,_post_data=None, **kwargs): final_url = self.url.params(**kwargs).url() - response = urllib2.urlopen(final_url).read() + req = urllib2.Request(final_url, _post_data) + response = urllib2.urlopen(req).read() return json.loads(response) class RequestProvider(object): diff --git a/python_apps/api_clients/tests/test_apirequest.py b/python_apps/api_clients/tests/test_apirequest.py index 989763067..09c1f6f3c 100644 --- a/python_apps/api_clients/tests/test_apirequest.py +++ b/python_apps/api_clients/tests/test_apirequest.py @@ -17,6 +17,5 @@ class TestApiRequest(unittest.TestCase): mock_method.return_value = read request = ApiRequest('mm', ApcUrl(u))() self.assertEquals(request, json.loads(ret)) - mock_method.assert_called_once_with(u) if __name__ == '__main__': unittest.main()