如何使用nosetest测试while循环(一次)(Python 2.7)
作者:互联网
我对这整个“编程事物”都很陌生,但在34岁时,我认为我想学习基础知识.
我很遗憾不知道任何python程序员.我正在学习编程,因为个人兴趣(而且越来越多的乐趣)但我的“社交栖息地”不是“程序员漫游的地方”;).
我差不多完成了Zed Shaws“艰难学习Python”,这是我第一次找不到问题的解决方案.过去两天我甚至没有偶然发现有用的提示,当我反复改写(和搜寻)我的问题时,在哪里看.
所以stackoverflow似乎是正确的地方.
顺便说一句:我经常缺乏正确的词汇,所以请不要犹豫,纠正我:).这可能是我找不到答案的原因之一.
我使用Python 2.7和nosetests.
我在解决它的步骤中解决了问题(我认为):
功能1:
def inp_1():
s = raw_input(">>> ")
return s
所有测试都导入以下内容以便能够执行以下操作:
from nose.tools import *
import sys
from StringIO import StringIO
from mock import *
import __builtin__
# and of course the module with the functions
以下是inp_1的测试:
import __builtin__
from mock import *
def test_inp_1():
__builtin__.raw_input = Mock(return_value="foo")
assert_equal(inp_1(), 'foo')
这个功能/测试没问题.
相似的是以下功能2:
def inp_2():
s = raw_input(">>> ")
if s == '1':
return s
else:
print "wrong"
测试:
def test_inp_2():
__builtin__.raw_input = Mock(return_value="1")
assert_equal(inp_1(), '1')
__builtin__.raw_input = Mock(return_value="foo")
out = StringIO()
sys.stdout = out
inp_1()
output = out.getvalue().strip()
assert_equal(output, 'wrong')
这个功能/测试也没关系.
当我使用上面的所有内容时,请不要认为我真的知道“幕后”发生了什么.我有一些外行 – 解释这是如何运作的,以及为什么我得到我想要的结果,但我也觉得这些解释可能不完全正确.这不是我第一次想到某事.在我学到更多东西后,工作结果却有所不同.尤其是“__”的一切让我感到困惑,我很害怕使用它,因为我真的不明白发生了什么.无论如何,现在我“只是”想要添加一个while循环来请求输入,直到它是正确的:
def inp_3():
while True:
s = raw_input(">>> ")
if s == '1':
return s
else:
print "wrong"
我认为inp_3的测试与inp_2相同.至少我没有收到错误消息.但输出如下:
$nosetests
......
# <- Here I press ENTER to provoke a reaction
# Nothing is happening though.
^C # <- Keyboard interrupt (is this the correct word for it?)
----------------------------------------------------------------------
Ran 7 tests in 5.464s
OK
$
其他7项测试都是……别的(还可以).
对inp_3的测试将是测试nr. 8.
时间就是我按CTRL-C之前的时间.
我不明白为什么我没有得到错误 – 或“测试失败”-messages但只是一个“确定”.
除此之外,您可以指出错误的语法和其他可以改进的事情(我真的很感激,如果你这样做的话),我的问题是:
如何使用nosetest测试和中止while循环?
来自(黑暗)特隆赫姆的致敬
解决方法:
所以,这里的问题是你第二次在test中调用inp_3,同时用Mock(return_value =“foo”)模拟raw_input.你的inp_3函数运行无限循环(同时为True),你不会以任何方式打断它,除非是s ==’1’条件.因此,对于Mock(return_value =“foo”),该条件永远不会满足,并且循环保持运行,直到您使用外部方式(在示例中为Ctrl C)中断它.如果是故意行为,那么How to limit execution time of a function call in Python将帮助您限制inp_3在测试中的执行时间.但是,在您的示例中输入的情况下,开发人员通常会对用户拥有的输入尝试次数实施限制.您可以使用变量来计算尝试次数,当它达到最大值时,应该停止循环.
def inp_3():
max_attempts = 5
attempts = 0
while True:
s = raw_input(">>> ")
attempts += 1 # this is equal to "attempts = attempts + 1"
if s == '1':
return s
else:
print "wrong"
if attempts == max_attempts:
print "Max attempts used, stopping."
break # this is used to stop loop execution
# and go to next instruction after loop block
print "Stopped."
另外,为了学习python我可以推荐Mark Lutz的书“学习Python”.它极大地解释了python的基础知识.
更新:
我找不到一种方法来模拟python的True(或者是builtin.True)(是的,听起来有点疯狂),看起来python没有(也不会)允许我这样做.但是,为了达到你想要的效果,运行一次无限循环,你可以使用一点点黑客.
定义一个返回True的函数
def true_func():
return True
,在while循环中使用它
while true_func():
然后使用这样的逻辑在测试中模拟它:
def true_once():
yield True
yield False
class MockTrueFunc(object):
def __init__(self):
self.gen = true_once()
def __call__(self):
return self.gen.next()
然后在测试中:
true_func = MockTrueFunc()
这样你的循环只会运行一次.但是,这种结构使用了一些高级的python技巧,比如生成器,“__”方法等.所以要小心使用它.
但无论如何,通常无限循环被认为是糟糕的设计解决方案.最好不要习惯它:).
标签:python,python-2-7,nosetests 来源: https://codeday.me/bug/20190624/1276474.html