长话短说,我完全能够模拟类方法,当它只是被模拟对象替换的方法时,但我无法模仿该方法时我试图用模拟对象替换整个类
@mock.patch.object
成功模仿了scan
方法,但@mock.patch
未能这样做。我跟着这个例子
https://docs.python.org/3/library/unittest.mock.html#unittest.mock.patch
但显然我做错了什么。
我在两种情况下都在同一名称空间中嘲笑词典模块(它由import lexicon
中的sentence_parser
导入但是mock_lexicon is lexicon.lexicon
检查失败< / p>
#!python
import sys;
sys.path.append('D:\python\lexicon');
import lexicon;
import sentence_parser;
import unittest2 as unittest;
import mock;
class ParserTestCases(unittest.TestCase) :
def setUp(self) :
self.Parser = sentence_parser.Parser();
@mock.patch('lexicon.lexicon')
def test_categorizedWordsAreAssigned_v1(self, mock_lexicon) :
print "mock is lexicon:";
print mock_lexicon is lexicon.lexicon + "\n";
instance = mock_lexicon.return_value;
instance.scan.return_value = "anything";
self.Parser.categorize_words_in_sentence("sentence");
instance.scan.assert_called_once_with("sentence");
@mock.patch.object(lexicon.lexicon, 'scan')
def test_categorizedWordsAreAssigned_v2(self, mock_scan) :
mock_scan.return_value = "anything";
self.Parser.categorize_words_in_sentence("sentence");
mock_scan.assert_called_once_with("sentence");
if (__name__ == '__main__') :
unittest.main()
输出:
mock is lexicon:
False
======================================================================
FAIL: test_categorizedWordsAreAssigned_v1 (__main__.ParserTestCases)
----------------------------------------------------------------------
Traceback (most recent call last):
File "D:\python\get_img\getImage_env\lib\site-packages\mock\mock.py", line 1305, in patched
return func(*args, **keywargs)
File "./test_sentence_parser.py", line 26, in test_categorizedWordsAreAssigned_v1
instance.scan.assert_called_once_with("sentence");
File "D:\python\get_img\getImage_env\lib\site-packages\mock\mock.py", line 947, in assert_called_once_with
raise AssertionError(msg)
AssertionError: Expected 'scan' to be called once. Called 0 times.
----------------------------------------------------------------------
Ran 2 tests in 0.009s
FAILED (failures=1)
编辑:
为了澄清,Parser
定义如下
#!python
import sys;
sys.path.append('D:\python\lexicon');
import lexicon;
class Parser(object) :
my_lexicon = lexicon.lexicon()
def __init__(self) :
self.categorized_words = ['test'];
def categorize_words_in_sentence(self, sentence) :
self.categorized_words = self.my_lexicon.scan(sentence);
if (__name__ == '__main__') :
instance = Parser();
instance.categorize_words_in_sentence("bear");
print instance.categorized_words;
答案 0 :(得分:1)
这里真正相关的是categorize_words_in_sentence
Parser
方法如何使用lexicon
。但首先我们应该消除噪音:
print mock_lexicon is lexicon.lexicon + "\n"
是什么导致我们走向错误的方向:尝试用
替换它self.assertIs(mock_lexicon, lexicon.lexicon)
您将了解到您正在打印False
,因为mock_lexicon
不是lexicon.lexicon + "\n"
而只是lexicon.lexicon
。
现在我无法告诉你为什么第一个测试不起作用,因为答案是在categorize_words_in_sentence
方法中,或者更多可能在sentence_parser
模块中,我可以猜测你可以有类似1} p>
from lexicon import lexicon
在这两种情况下,请查看Where to Patch文档,这些文档可以帮助您了解可能的原因以及您在案例中需要修补的内容。
第二个版本的作用仅仅是因为您要修补对象而不是引用(应该是不同的)。
最后,更简洁和通用的版本可以是:
@mock.patch('lexicon.lexicon.scan', return_value="anything")
def test_categorizedWordsAreAssigned_v3(self, mock_scan) :
self.Parser.categorize_words_in_sentence("sentence")
mock_scan.assert_called_once_with("sentence")
还有一件事:删除unittest2
至少你没有使用python 2.4并且你对backported unittest功能感兴趣。
<强> [编辑] 强>
现在我可以停下来猜测并指出为什么第一个版本不起作用并且永远不会起作用:
class Parser(object) :
my_lexicon = lexicon.lexicon()
在加载时评估 Parser.my_lexicon
属性。这意味着当您导入sentence_parser
时,会创建lexicon
并将引用与Parser.my_lexicon
相关联。修补lexicon.lexicon
时,保持此引用不变,解析器对象仍然使用导入时创建的原始引用。
您可以做的是通过
修补Parser
类中的引用
@patch("sentence_parser.Parser.my_lexicon")
如果您希望为模拟提供相同的lexicon
签名,则可以使用create_autospect
。
@patch("sentence_parser.Parser.my_lexicon", create_autospec("lexicon.lexicon", instance=True))