3

我正在尝试为我要使用的 python 脚本模拟用户输入py.test。这是一些代表我要完成的基本代码:

def ask():
    while True:
        age = input("Enter your age: ")
        if int(age) < 13:
            print("You are too young")
        else:
            name = input("Enter your name: ")
            break
    print("Welcome!")

我想模仿用户输入并阅读输出。一个例子可能是这样的:

@mock.patch('builtins.input', side_effect=['11'])
def test_invalid_age():
    ask()
    assert stdout == "You are too young"

我还听说这flexmock可能是内置模拟unittest系统的更好替代方案,但我会在这一点上采取任何解决方案。

更新:

我玩了更多,并进行了以下测试:

@mock.patch('builtins.input', side_effect=['11'])
def test_bad_params(self, input):
    ask()
    output = sys.stdout.getline().strip()
    assert output == "You are too young"

当我运行 py.test 我得到这个结果:

E StopIteration /usr/lib/python3.3/unittest/mock.py:904:
StopIteration

它确实捕获了适当的标准输出调用作为“你太年轻了”。

4

1 回答 1

5

ask在第一个太年轻的年龄之后不会返回;它循环直到输入适当的年龄。如所写,您需要提供它可能读取的所有ask字符串,然后在返回后执行所有断言。

@mock.patch('builtins.input', side_effect=['11', '13', 'Bob'])
def test_bad_params(self, input):
    ask()
    output = sys.stdout.getline().strip()
    assert output == "You are too young"
    # Check the output after "13" and "Bob" are entered as well!
    assert sys.stdout.getline().strip() == "Welcome!"
于 2015-05-04T21:04:04.503 回答