4

我正在测试一个包含以下代码片段的 Python 模块。

        r, w = os.pipe()
        pid = os.fork()
        if pid:
            os.close(w)        # use os.close() to close a file descriptor
            r = os.fdopen(r)   # turn r into a file object
            # read serialized object from ``r`` and persists onto storage medium
            self.ofs.put_stream(bucket, label, r, metadata)
            os.waitpid(pid, 0) # make sure the child process gets cleaned up
        else:
            os.close(r)
            w = os.fdopen(w, 'w')
            # serialize object onto ``w``
            pickle.dump(obj, w)
            w.close()
            sys.exit(0)
        return result

所有的测试都通过了,但是关于sys.exit(0). 执行时sys.exit(0)会引发SystemExit,被py.test控制台拦截并报错。

我不详细了解py.test内部做了什么,但看起来它继续进行并最终忽略了子进程引发的此类事件。最后,所有测试都通过了,这很好。

但我想在控制台中有一个干净的输出。

有没有办法py.test产生干净的输出?

供您参考:

  • Debian Jessie,内核 3.12.6
  • Python 2.7.6
  • pytest 2.5.2

谢谢 :)

4

3 回答 3

2

(回答我自己的问题)

您可以在不引发与这些事件关联的信号的情况下终止执行。因此,不是sys.exit(n), 使用os._exit(n),n所需的状态代码在哪里。

例子:

import os
os._exit(0)

学分: 有没有办法防止从 sys.exit() 引发的 SystemExit 异常被捕获?

于 2014-02-11T15:14:09.033 回答
1
def test_mytest():

    try:
        # code goes here
        # like
        # import my_packaage.__main__
        # which can raise
        # a SystemExit 
    except SystemExit:
        pass

    assert(True)

我在这里找到了。

于 2017-05-11T04:33:10.897 回答
0

这就是我使用模拟解决问题的方法 - 使用这种方法,您可以利用sys.exit为我们做的所有清理工作

@mock.patch('your.module.sys.exit')
def test_func(mock_sys_exit):
    mock_sys_exit.side_effect = SystemExit("system is exiting")
    with pytest.raises(SystemExit):
        # run function that supposed to trigger SystemExit
于 2017-05-04T16:28:36.183 回答