我正在重构一个库以将 importlib.resources 用于 python 3.7+。我正在使用 importlib_resources backport 来实现 python 3.6 的兼容性。该代码适用于 python 3.6-3.8。但是,使用 pyfakefs 的 pytest 测试在 3.6 中失败。在测试条件下,使用 importlib_resources 返回的路径被破坏(但在“真实世界”条件下,它们正确返回)。
一个最小的例子:我有以下库结构:
mypackage
├── mypackage
│ ├── __init__.py
│ ├── bin
│ │ └── __init__.py
│ └── find_bin.py
└── tests
└── test_find_bin.py
在实际库中, bin 文件夹包含二进制文件(加上一个空的__init__
)。库中其他地方的代码需要一个路径。find_bin.py
演示一个将返回路径的函数:
import sys
if sys.version_info >= (3, 7):
from importlib import resources
else:
import importlib_resources as resources
import mypackage.bin
def find_bin():
init_path_context = resources.path(mypackage.bin, '__init__.py')
with init_path_context as p:
init_path = p
bin_path = init_path.parent
return bin_path
pytest 测试test_find_bin.py
:
import pathlib
from mypackage.find_bin import find_bin
def test_findbin(fs):
test_bin = (pathlib.Path(__file__)
.resolve()
.parent.parent
.joinpath('mypackage', 'bin'))
print('test bin is ', test_bin)
expected_bin = find_bin()
print('expected bin is ', expected_bin)
assert not expected_bin.exists()
print('test creating fakefs ', test_bin)
fs.create_dir(test_bin)
assert expected_bin.exists()
Python 3.7+ 按预期工作。在 python 3.6 中,expected_bin 路径被破坏:
test bin is /Users/geoffreysametz/Documents/mypackage/mypackage/bin # correct
expected bin is /var/folders/bv/m5cg5cp15t38sh8rxx244hp00000gn/T # ?!?!?!
我试图跟踪 find_bin 函数的执行,它很长而且很复杂。但是,我看到它importlib_resources
使用了 python 的 FakeFilesystem 类。我的假设是问题出在importlib_resources
pytest 和同时使用假文件系统。
我的假设正确吗?是否有解决方法让 pytest 测试使用 importlib_resources 的代码?