久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

模擬 urllib2.urlopen().read() 以獲得不同的響應

Mocking urllib2.urlopen().read() for different responses(模擬 urllib2.urlopen().read() 以獲得不同的響應)
本文介紹了模擬 urllib2.urlopen().read() 以獲得不同的響應的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

我正在嘗試以某種方式模擬 urllib2.urlopen 庫,以便對傳遞給函數(shù)的不同 url 獲得不同的響應.

I am trying to mock the urllib2.urlopen library in a way that I should get different responses for different urls I pass into the function.

我現(xiàn)在在測試文件中的做法是這樣的

The way I am doing it in my test file now is like this

@patch(othermodule.urllib2.urlopen)
def mytest(self, mock_of_urllib2_urllopen):
    a = Mock()
    a.read.side_effect = ["response1", "response2"]
    mock_of_urllib2_urlopen.return_value = a
    othermodule.function_to_be_tested()   #this is the function which uses urllib2.urlopen.read

我希望 othermodule.function_to_be_tested 在第一次調(diào)用時獲得值response1",在第二次調(diào)用時獲得值response2",這就是 side_effect 的作用

I expect the the othermodule.function_to_be_tested to get the value "response1" on first call and "response2" on second call which is what side_effect will do

但是 othermodule.function_to_be_tested() 接收

but the othermodule.function_to_be_tested() receives

<MagicMock name='urlopen().read()' id='216621051472'>

而不是實際的響應.請建議我哪里出錯了或更簡單的方法.

and not the actual response. Please suggest where I am going wrong or an easier way to do this.

推薦答案

patch的參數(shù)需要是對象的location的描述,而不是對象本身.因此,您的問題看起來可能只是您需要將參數(shù)字符串化為 patch.

The argument to patch needs to be a description of the location of the object, not the object itself. So your problem looks like it may just be that you need to stringify your argument to patch.

不過,為了完整起見,這里有一個完整的示例.首先,我們的待測模塊:

Just for completeness, though, here's a fully working example. First, our module under test:

# mod_a.py
import urllib2

def myfunc():
    opened_url = urllib2.urlopen()
    return opened_url.read()

現(xiàn)在,設置我們的測試:

Now, set up our test:

# test.py
from mock import patch, Mock
import mod_a

@patch('mod_a.urllib2.urlopen')
def mytest(mock_urlopen):
    a = Mock()
    a.read.side_effect = ['resp1', 'resp2']
    mock_urlopen.return_value = a
    res = mod_a.myfunc()
    print res
    assert res == 'resp1'

    res = mod_a.myfunc()
    print res
    assert res == 'resp2'

mytest()

從 shell 運行測試:

Running the test from the shell:

$ python test.py
resp1
resp2

編輯:糟糕,最初包含原始錯誤.(正在測試以驗證它是如何被破壞的.)現(xiàn)在應該修復代碼.

Edit: Whoops, initially included the original mistake. (Was testing to verify how it was broken.) Code should be fixed now.

這篇關于模擬 urllib2.urlopen().read() 以獲得不同的響應的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權益,請聯(lián)系我們刪除處理,感謝您的支持!

相關文檔推薦

Python 3 Float Decimal Points/Precision(Python 3 浮點小數(shù)點/精度)
Converting Float to Dollars and Cents(將浮點數(shù)轉(zhuǎn)換為美元和美分)
What are some possible calculations with numpy or scipy that can return a NaN?(numpy 或 scipy 有哪些可能的計算可以返回 NaN?)
Python float to ratio(Python浮動比率)
How to manage division of huge numbers in Python?(如何在 Python 中管理大量數(shù)字的除法?)
mean from pandas and numpy differ(pandas 和 numpy 的意思不同)
主站蜘蛛池模板: 色综合天天天天做夜夜夜夜做 | 国产精品123区 | 亚洲一区二区久久久 | 九九热免费在线观看 | 好姑娘影视在线观看高清 | 日韩精品在线一区 | 免费人成在线观看网站 | 国产一区二区影院 | 91精品国产综合久久香蕉麻豆 | 黄网站色大毛片 | 久久久精彩视频 | 亚洲一区 中文字幕 | 欧洲一区二区在线 | 亚洲精品视频网站在线观看 | 日韩精品 电影一区 亚洲 | 久久久精品一区二区三区 | 欧美a在线观看 | 国产在线播放av | 成人激情免费视频 | h片在线看 | 欧美成人二区 | 日韩成年人视频在线 | 亚洲成人精品 | 操久久 | 国产一级精品毛片 | 一区二区三区在线 | 欧 | 97超在线视频 | 午夜视频免费 | 免费永久av | 久久久高清 | 91视频大全| 成人不卡视频 | 亚洲免费精品 | 欧美视频第二页 | 亚洲一区二区三区视频 | 日韩精品一区二区三区高清免费 | 亚洲精品自在在线观看 | 国产福利精品一区 | 免费观看一级毛片 | 国产日韩欧美在线 | 特黄色一级毛片 |