如何使用Errbot修补(模拟)测试?

时间:2017-10-29 19:32:39

标签: python errbot

我正在尝试使用errbot测试修补依赖项。我遇到的问题是errbot如何导入模块。它不是静态的,当我添加测试或者以不同的顺序测试时,会破坏我的补丁装饰器。

我有一个名为EDB(edb.py)的插件。在edb.py里面我用import pyedb导入pyedb。它位于我的site-packages

我有我的测试文件test_edb.py,我尝试修补我的测试方法

pytest_plugins = ["errbot.backends.test"]
extra_plugin_dir = '.'

from unittest.mock import patch  # noqa: E402

@patch('yapsy_loaded_plugin_EDB_1.pyedb', autospec=True)
def test_edb_testlist(pyedb_mock, testbot):
    testbot.push_message('!edb testlist')

    assert "Okay, let me get..." == testbot.pop_message()
    assert "I don't see any..." == testbot.pop_message()

Errbot为模块导入添加了此yapsy_loaded_plugin_EDB_<xx>路径,但xx取决于运行测试的顺序。这不起作用,我需要一些静态导入路径mypath.pyedb

我希望有一种不同的方式来解决这个问题。也许我可以改变我导入模块的方式,因此它不依赖于errbot导入?

以下是Errbot testing的链接供参考。

1 个答案:

答案 0 :(得分:0)

我的解决方案感觉有点hacky但它​​确实有效。如果有人有更优雅的解决方案,请分享。如果没有其他回复,我会在一段时间后接受我自己的回答。

所以我之前遇到过这个问题,但我想我仍然不熟悉Python中的补丁工作方式,知道哪里要补丁。阅读&#34; Where to patch&#34;文档(再次):)我给出了使用errbot进行动态导入的解决方法。

errbot项目文件夹看起来像

errbot-project/
├── data/
│   ├── ...
├── plugins/
│   ├── plugin1/
|       ├── ...
|   ├── plugin2/
|       ├── ...

我注意到当errbot同时运行项目目录../errbot-project并且所有插件目录(例如../errbot-project/plugins/plugin1)都添加到sys.path时。

所以我在项目目录中添加了一个包,然后在我的插件中导入它。然后,我可以从该包中可靠地修补我的依赖项。再次阅读Where to Patch文档以获取完整的解释原因。它看起来像这样。

errbot-project/
├── data/
│   ├── ...
├── plugins/
│   ├── plugin1/
|       ├── ...
|   ├── plugin2/
|       ├── ...
├── plugin_deps/
|       ├── __init__.py

我的../errbot-project/plugin_deps/__init__.py看起来像

...
import dep1
import dep2
...

然后在我的插件中使用

...
import plugin_deps as pdep
...
def method():
    pdep.dep1.method()
...
# note, you cannot use 
# from plugin_deps import dep1
# this changes 'where' python looks up the module and
# and 'breaks' your patch 

最后我的测试代码看起来像

@patch('plugin_deps.dep1', autospec=True) 
def test_get_tl_tabulation(my_mock, testbot):
    # test code here