gpt4 book ai didi

python - 如何使用模拟在 python 中写入和读取模拟文件对象?

转载 作者:太空宇宙 更新时间:2023-11-04 10:24:20 24 4
gpt4 key购买 nike

我正在尝试将字符串写入 python 中的模拟文件对象 mock库,但事实证明,我写入模拟对象的方法似乎不会保留任何内容,即使在内存中也是如此。

我在 ipython shell 中这样尝试:

In [1]: import mock
In [2]: fnopen = mock.mock_open()
In [3]: filehandle = fnopen()
In [4]: filehandle.write('ABC')
In [5]: filehandle.read()
Out[5]: ''

如您所见,在执行 f.read() 时,我没有得到预期的 'ABC',而是一个空字符串。

我在做什么或理解错了什么?

最佳答案

不需要模拟。

如果您想要测试的是内存中的文件,例如对象,您可以使用 StringIO :

>>> import StringIO
>>> file_like = StringIO.StringIO()
>>> file_like.write('ABC')
>>> file_like.seek(0)
>>> file_like.read()
'ABC'

关于python - 如何使用模拟在 python 中写入和读取模拟文件对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30329114/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com