python在单元测试中模拟原始输入

标签 python unit-testing mocking

假设我有这个 python 代码:

def answer():
    ans = raw_input('enter yes or no')
    if ans == 'yes':
        print 'you entered yes'
    if ans == 'no':
        print 'you entered no'

如何为此编写单元测试?我知道我必须使用“模拟”,但我不明白如何。谁能举个简单的例子?

最佳答案

您无法修补输入,但可以将其包装以使用 mock.patch()。这是一个解决方案:

from unittest.mock import patch
from unittest import TestCase


def get_input(text):
    return input(text)


def answer():
    ans = get_input('enter yes or no')
    if ans == 'yes':
        return 'you entered yes'
    if ans == 'no':
        return 'you entered no'


class Test(TestCase):

    # get_input will return 'yes' during this test
    @patch('yourmodule.get_input', return_value='yes')
    def test_answer_yes(self, input):
        self.assertEqual(answer(), 'you entered yes')

    @patch('yourmodule.get_input', return_value='no')
    def test_answer_no(self, input):
        self.assertEqual(answer(), 'you entered no')

请记住,此代码段仅适用于 Python 3.3+ 版本

关于python在单元测试中模拟原始输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21046717/

相关文章:

Python 双循环

Spring webflux,测试 `ServerResponse`

python - 连接到许多TOR导出节点

python - 如何在 Apache Spark 上部署并在特定时间运行 Python 脚本?

java - 测试 Spring Boot 存储库时不会引发预期的异常

android - 断言 ImageView 已加载特定的可绘制资源 ID

.net - 为什么.Net框架中的每个类都没有对应的接口(interface)?

java - 如何在正在测试的另一个类中模拟类?

unit-testing - 如何使用 Moq 模拟 Microsoft.Extensions.Logging

python - 无效字符串语法错误