我正在尝试为我要使用的 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
它确实捕获了适当的标准输出调用作为“你太年轻了”。