Mocking a subprocess call in Python(在 Python 中模拟子进程调用)
问题描述
我有一个方法 (run_script
) 想要测试.具体来说,我想测试对 subprocess.Popen
的调用是否发生.测试是否使用某些参数调用 subprocess.Popen
会更好.但是,当我运行测试时,我得到 TypeError: 'tuple' object is not callable
.
I have a method (run_script
) would like to test. Specifically I want to test that a call to subprocess.Popen
occurs. It would be even better to test that subprocess.Popen
is called with certain parameters. When I run the test however I get TypeError: 'tuple' object is not callable
.
如何测试我的方法以确保 subprocess 确实是使用模拟调用的?
How can I test my method to ensure that subprocess is actually being called using mocks?
@mock.patch('subprocess.Popen')
def run_script(file_path):
process = subprocess.Popen(['myscript', -M, file_path], stdout=subprocess.PIPE)
output,err = process.communicate()
return process.returncode
def test_run_script(self, mock_subproc_popen):
mock_subproc_popen.return_value = mock.Mock(communicate=('ouput','error'), returncode=0)
am.account_manager("path")
self.assertTrue(mock_subproc_popen.called)
推荐答案
你在 run_script
函数上使用补丁装饰器对我来说似乎很不寻常,因为你没有在那里传递模拟参数.
It seems unusual to me that you use the patch decorator over the run_script
function, since you don't pass a mock argument there.
这个怎么样:
def run_script(file_path):
process = subprocess.Popen(['myscript', -M, file_path], stdout=subprocess.PIPE)
output,err = process.communicate()
return process.returncode
@mock.patch('subprocess.Popen')
def test_run_script(self, mock_subproc_popen):
process_mock = mock.Mock()
attrs = {'communicate.return_value': ('output', 'error')}
process_mock.configure_mock(**attrs)
mock_subproc_popen.return_value = process_mock
am.account_manager("path") # this calls run_script somewhere, is that right?
self.assertTrue(mock_subproc_popen.called)
现在,您模拟的 subprocess.Popen 似乎返回一个元组,导致 process.communicate() 引发 TypeError: 'tuple' object is not callable.
.所以最重要的是将mock_subproc_popen上的return_value弄的恰到好处.
Right now, your mocked subprocess.Popen seems to return a tuple, causeing process.communicate() to raise TypeError: 'tuple' object is not callable.
. Therefore it's most important to get the return_value on mock_subproc_popen just right.
这篇关于在 Python 中模拟子进程调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Python 中模拟子进程调用
基础教程推荐
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01