Kenneth Reitz のrequestsライブラリを使用する関数の単体テストで問題が発生しています。
次の関数は単体テストされます。
def getPage(url):
r = requests.get(url)
r.raise_for_status() # raises HTTPError if necessary
dom = fromstring(r.text)
dom.make_links_absolute(url)
return dom
私の単体テストは、現時点では次のとおりです。(明らかにこれは機能しません。)
@patch('requests.Response')
@patch('requests.Response.raise_for_status', return_value=None)
@patch('requests.get', return_value=requests.Response)
def test_getPage(mock_requests_get, mock_RFS, mock_response):
with open("domtest.htm", "r") as testfile:
mock_response.text = testfile.read()
dom = getPage('http://www.test.com')
eq_(dom, dom_test)
結果のトレースバックは次のとおりです。
Traceback (most recent call last):
File "C:\Anaconda\lib\site-packages\nose\case.py", line 197, in runTest
self.test(*self.arg)
File "C:\Anaconda\lib\site-packages\mock.py", line 1201, in patched
return func(*args, **keywargs)
File "C:\...\test_myfile.py", line 79, in test_getPage
dom = getPage('http://www.test.com')
File "C:\...\myfile.py", line 67, in getPage
r.raise_for_status() # raises HTTPError if necessary
TypeError: unbound method raise_for_status() must be called with Response instance as first argument (got nothing instead)
一時的な Web サーバーではなくモッキングを使用して、このような機能を 1 つのユニットでどのようにテストするのでしょうか? 応答をピクルスにして、代わりに requests.get() の戻り値として設定しようとしましたが、ピクルスにすることはできません。