如何在 Python 中运行单元测试时临时隐藏 stdout 或 stderr

发布于 2024-12-21 04:49:46 字数 261 浏览 0 评论 0原文

我有一个错误的第三方 python 模块,在导入时输出到 stdout 或 stderr,这破坏了我的单元测试的输出。

如何临时重定向 stdout 以隐藏其输出。

仅限于 Python 2.5 语法:)

更新,我忘了提及 sys.stdoutsys.__stderr__ 方法在这种情况下不起作用。据我所知,这个错误模块正在使用本机代码。

I have a faulty third party python module that is outputing to stdout or stderr while it is imported and this is breaking the output of my unittests.

How can I temporary redirect the stdout in order to hide its output.

Limit to Python 2.5 syntax :)

Update, I forgot to mention that sys.stdout and sys.__stderr__ methods do not work in this case. As far as I know this faulty module is using native code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

看透却不说透 2024-12-28 04:49:47

您还可以使用 mock 来修补 sys.stdout< /code> 和 sys.stderr 为您导入模块时提供。使用此策略的测试模块的示例如下:

import os
devnull = open(os.devnull, 'w')

from mock import patch
with patch('sys.stdout', devnull):
    with patch('sys.stderr', devnull):
        import bad_module

# Test cases writen here

其中 bad_module 是打印到 sys.stdoutsys.stderr 的第三方模块code> 何时导入。

You can also use mock to let you patch sys.stdout and sys.stderr for you when the module is imported. An example of a testing module that using this strategy would be:

import os
devnull = open(os.devnull, 'w')

from mock import patch
with patch('sys.stdout', devnull):
    with patch('sys.stderr', devnull):
        import bad_module

# Test cases writen here

where bad_module is the third party module that is printing to sys.stdout and sys.stderr when is being imported.

開玄 2024-12-28 04:49:47

你可以这样做:

>>> import sys, os
>>> _stderr = sys.stderr
>>> _stdout = sys.stdout
>>> null = open(os.devnull,'wb')
>>> sys.stdout = sys.stderr = null
>>> print("Bleh")
>>> sys.stderr = _stderr
>>> sys.stdout = _stdout
>>> print("Bleh")
Bleh

You can do it something like this:

>>> import sys, os
>>> _stderr = sys.stderr
>>> _stdout = sys.stdout
>>> null = open(os.devnull,'wb')
>>> sys.stdout = sys.stderr = null
>>> print("Bleh")
>>> sys.stderr = _stderr
>>> sys.stdout = _stdout
>>> print("Bleh")
Bleh
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文