Python:如何在变量中捕获单元测试的stdout / stderr?

时间:2019-05-08 16:56:00

标签: python python-3.x python-2.7 python-unittest

如何在变量中捕获单元测试的stdout / stderr?我需要捕获以下单元测试的全部输出输出,并将其发送到SQS。我已经尝试过了:

import unittest, io
from contextlib import redirect_stdout, redirect_stderr


class LogProcessorTests(unittest.TestCase):
    def setUp(self):
        self.var = 'this value'

    def test_var_value(self):
        with io.StringIO() as buf, redirect_stderr(buf):
            print('Running LogProcessor tests...')
            print('Inside test_var_value')
            self.assertEqual(self.var, 'that value')
            print('-----------------------')
            print(buf.getvalue())

但是,它不起作用,并且以下输出仅出现在stdout / stderr上。

Testing started at 20:32 ...
/Users/myuser/Documents/virtualenvs/app-venv3/bin/python3 "/Applications/PyCharm CE.app/Contents/helpers/pycharm/_jb_unittest_runner.py" --path /Users/myuser/Documents/projects/application/LogProcessor/tests/test_processor_tests.py
Launching unittests with arguments python -m unittest /Users/myuser/Documents/projects/application/LogProcessor/tests/test_processor_tests.py in /Users/myuser/Documents/projects/application/LogProcessor/tests
Running LogProcessor tests...
Inside test_var_value

that value != this value

Expected :this value
Actual   :that value
<Click to see difference>

Traceback (most recent call last):
  File "/Applications/PyCharm CE.app/Contents/helpers/pycharm/teamcity/diff_tools.py", line 32, in _patched_equals
    old(self, first, second, msg)
  File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 839, in assertEqual
    assertion_func(first, second, msg=msg)
  File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 1220, in assertMultiLineEqual
    self.fail(self._formatMessage(msg, standardMsg))
  File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 680, in fail
    raise self.failureException(msg)
AssertionError: 'this value' != 'that value'
- this value
?   ^^
+ that value
?   ^^

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 59, in testPartExecutor
    yield
  File "/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/lib/python3.7/unittest/case.py", line 615, in run
    testMethod()
  File "/Users/myuser/Documents/projects/application/LogProcessor/tests/test_processor_tests.py", line 15, in test_var_value
    self.assertEqual(self.var, 'that value')



Ran 1 test in 0.004s

FAILED (failures=1)

Process finished with exit code 1

Assertion failed

Assertion failed

有什么主意吗?请让我知道是否需要更多信息。

3 个答案:

答案 0 :(得分:2)

基于contextlib.redirect_stdout文档,这是重定向stderrstdout的方式:

import io
import contextlib

f = io.StringIO()
with contextlib.redirect_stderr(f):
    parser = target.parse_args([])
self.assertTrue("error: one of the arguments -p/--propagate -cu/--cleanup is required" in f.getvalue())

您还可以将其与另一个上下文管理器(例如assertRaises)结合使用,

f = io.StringIO()
with self.assertRaises(SystemExit) as cm, contextlib.redirect_stderr(f):
    parser = target.parse_args([])
self.assertEqual(cm.exception.code, 2)
self.assertTrue("error: one of the arguments -p/--propagate -cu/--cleanup is required" in f.getvalue())

答案 1 :(得分:1)

如果您手动实例化测试运行器(例如const { awssvc } = require ('./aws.js')),则可以指定其写入的(文件)流。默认情况下,它是unittest.TextTestRunner,但是您可以改用StringIO。这将捕获单元测试本身的输出。您自己的打印语句的输出将不会被捕获,但是您可以使用sys.stderr上下文管理器,并使用相同的StringIO对象。

请注意,我建议避免使用打印语句,因为它们会干扰unittest框架的输出(您的测试输出将破坏unittest框架的输出行),并且重定向重定向stdout / stderr流。更好的解决方案是改用redirect_stdout模块。然后,您可以添加一个日志记录处理程序,将所有日志消息写入StringIO以进行进一步处理(在您的情况下:发送到SQS)。

下面是使用打印语句基于您的代码的示例代码。

logging

此打印:

#!/usr/bin/env python3

import contextlib
import io
import unittest


class LogProcessorTests(unittest.TestCase):

    def setUp(self):
        self.var = 'this value'

    def test_var_value(self):
        print('Running LogProcessor tests...')
        print('Inside test_var_value')
        self.assertEqual(self.var, 'that value')
        print('-----------------------')


if __name__ == '__main__':
    # find all tests in this module
    import __main__
    suite = unittest.TestLoader().loadTestsFromModule(__main__)
    with io.StringIO() as buf:
        # run the tests
        with contextlib.redirect_stdout(buf):
            unittest.TextTestRunner(stream=buf).run(suite)
        # process (in this case: print) the results
        print('*** CAPTURED TEXT***:\n%s' % buf.getvalue())

这确认所有输出(来自unittest框架和测试用例本身)都已捕获到StringIO对象中。

答案 2 :(得分:-1)

老实说,最简单的方法可能是在OS级别重定向输出-从命令行运行测试,然后将其输出到文件中。

如果您正在使用构建系统来执行这些操作,那么构建系统应该为您捕获输出,并且您可以从其构建工件中提取输出。