基于cmd模块编写python3 shell的unittest

时间:2015-12-28 20:25:11

标签: python unit-testing python-3.x cmd python-unittest

我正在尝试为我的项目编写一些单元测试但是我遇到了从cmd模块编写单元测试功能的问题。

我按照这个问题的例子:Create automated tests for interactive shell based on Python's cmd module

让我们考虑一下:

#!/usr/bin/env python3

import cmd
import sys


class Interpreter(cmd.Cmd):
    def __init__(self, stdin=sys.stdin, stdout=sys.stdout):
        cmd.Cmd.__init__(self, stdin=stdin, stdout=stdout)

    def do_show(self, args):
        print("Hello world!")

if __name__ == "__main__":
    interpreter = Interpreter()
    interpreter.onecmd("show")

这是我的单位测试:

import unittest
import unittest.mock
import main
import sys


class CmdUiTest(unittest.TestCase):
    def setUp(self):
        self.mock_stdin = unittest.mock.create_autospec(sys.stdin)
        self.mock_stdout = unittest.mock.create_autospec(sys.stdout)

    def create(self):
        return main.Interpreter(stdin=self.mock_stdin, stdout=self.mock_stdout)

    def _last_write(self, nr=None):
        """:return: last `n` output lines"""
        if nr is None:
            return self.mock_stdout.write.call_args[0][0]
        return "".join(map(lambda c: c[0][0], self.mock_stdout.write.call_args_list[-nr:]))

    def test_show_command(self):
        cli = self.create()
        cli.onecmd("show")
        self.assertEqual("Hello world!", self._last_write(1))

如果我理解正确,在sys.stdin和sys.stdout的unittest模拟中正在创建并使用方法_last_write()我应该能够访问使用self.mock_stdout.write.call_args_list[-nr:]写入模拟stdout的参数列表

测试结果

/home/john/rextenv/bin/python3 /home/john/pycharm/helpers/pycharm/utrunner.py /home/john/PycharmProjects/stackquestion/tests/test_show.py::CmdUiTest::test_show_command true
Testing started at 20:55 ...
Hello world!

Process finished with exit code 0

Failure
Expected :'Hello world!'
Actual   :''
 <Click to see difference>

Traceback (most recent call last):
  File "/home/john/PycharmProjects/stackquestion/tests/test_show.py", line 25, in test_show_command
    self.assertEqual("Hello world!", self._last_write(1))
AssertionError: 'Hello world!' != ''
- Hello world!
+ 

正如你所看到的Hello世界!从do_show()开始实际打印到stdout上。但由于某种原因self.mock_stdout.write.call_args_list总是返回空列表。

(顺便说一下。我正在运行来自Pycharm的测试,但我也试过从shell执行它们,没有区别)

我所需要的只是能够以某种方式测试我的cmd解释器的功能。只需比较打印输出。

我也尝试过模拟内置打印,但这更加破坏了我的测试(实际代码和测试更复杂)。但我不相信模拟打印和检查called_with()实际上是不必要或正确的解决方案。嘲讽stdout应该是可能的。

1 个答案:

答案 0 :(得分:2)

与orld有所不同 不确定这是否是你想要的,last_write肯定不起作用!

F
======================================================================
FAIL: test_show_command (__main__.CmdUiTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "./int.py", line 32, in test_show_command
    self.assertEqual('Hello World!', fakeOutput.getvalue().strip())
AssertionError: 'Hello World!' != 'Hello world!'
- Hello World!
?       ^
+ Hello world!
?       ^


----------------------------------------------------------------------
Ran 1 test in 0.003s

FAILED (failures=1)

更改为使用unitte.mock.patch - 我的python版本是3.5

from unittest.mock import patch
from io import StringIO


    # not working for reasons unknown
    def _last_write(self, nr=None):
        """:return: last `n` output lines"""
        if nr is None:
            return self.mock_stdout.write.call_args[0][0]
        return "".join(map(lambda c: c[0][0], self.mock_stdout.write.call_args_list[-nr:]))

    # modified with unittest.mock.patch
    def test_show_command(self):
        # Interpreter obj
        cli = self.create()
        with patch('sys.stdout', new=StringIO()) as fakeOutput:
            #print ('hello world')
            self.assertFalse(cli.onecmd('show'))
        self.assertEqual('Hello World!', fakeOutput.getvalue().strip())