• pythonunittest(8)


    将晦涩难懂的测试分解成简单的测试

    本篇的目的是解说晦涩的测试不易一目了然,然后用一个例子将晦涩的测试用例化为简单的测试用例,使得测试结果一目了然。

    Breaking down obscure tests into simple ones.

    Unittest provides the means to test the code through a series of assertions. I have often felt
    the temptation to exercise many aspects of a particular piece of code within a single test
    method. If any part fails, it becomes obscured as to which part failed. It is preferable to split
    things up into several smaller test methods, so that when some part of the code under test
    fails, it is obvious.

    1. Create a new file named recipe8.py in which to put our application code for this
    recipe.

    2. Pick a class to test. In this case, we will use an alternative version of the Roman
    numeral converter, which converts both ways.

    3. Create a new file called recipe8_obscure.py in which to put some longer
    test methods.

    4. Create some test methods that combine several test assertions.

    5. Run the obscure tests. Why did it fail? Where is the bug? It reports that II is not
    equal to I, so something appears to be off. If this the only bug?

    6. Create another file called recipe8_clear.py to create a more fine-grained set of
    test methods.

    7. Split up the assertions into separate test methods to give a higher fidelity of output.

    8. Run the clearer test suite. Is it a bit clearer where the bug is? What did we trade in to
    get this higher degree of test failure? Was it worth the effort?

    测试代码1:

    Code
    Code

    结果输出:(这样的结果让人弄不明白倒底哪些用例发生了错误,不如下面用例那样的一目了然)

    .F
    ======================================================================
    FAIL: test_convert_to_roman (__main__.RomanNumeralTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "e:\study\python\4668_Code\Chapter 1\01\recipe8_obscure.py", line 22, in test_convert_to_roman
        self.assertEquals("II", self.cvt.convert_to_roman(2))
    AssertionError: 'II' != 'I'

    ----------------------------------------------------------------------
    Ran 2 tests in 0.001s

    FAILED (failures=1)
    Process terminated with an exit code of 1

    测试代码2:

    Code


    结果输出:

    .FFFFF....
    ======================================================================
    FAIL: test_convert_to_roman2 (__main__.RomanNumeralTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "e:\study\python\4668_Code\Chapter 1\01\recipe8_clear.py", line 30, in test_convert_to_roman2
        self.assertEquals("II", self.cvt.convert_to_roman(2))
    AssertionError: 'II' != 'I'

    ======================================================================
    FAIL: test_convert_to_roman3 (__main__.RomanNumeralTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "e:\study\python\4668_Code\Chapter 1\01\recipe8_clear.py", line 33, in test_convert_to_roman3
        self.assertEquals("V", self.cvt.convert_to_roman(5))
    AssertionError: 'V' != 'IIII'

    ======================================================================
    FAIL: test_convert_to_roman4 (__main__.RomanNumeralTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "e:\study\python\4668_Code\Chapter 1\01\recipe8_clear.py", line 37, in test_convert_to_roman4
        self.cvt.convert_to_roman(12))
    AssertionError: 'XII' != 'XI'

    ======================================================================
    FAIL: test_convert_to_roman5 (__main__.RomanNumeralTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "e:\study\python\4668_Code\Chapter 1\01\recipe8_clear.py", line 41, in test_convert_to_roman5
        self.cvt.convert_to_roman(2010))
    AssertionError: 'MMX' != 'MMVIIII'

    ======================================================================
    FAIL: test_convert_to_roman6 (__main__.RomanNumeralTest)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "e:\study\python\4668_Code\Chapter 1\01\recipe8_clear.py", line 45, in test_convert_to_roman6
        self.cvt.convert_to_roman(4000))
    AssertionError: 'MMMM' != 'MMMDCCCCLXXXXVIIII'

    ----------------------------------------------------------------------
    Ran 10 tests in 0.001s

    FAILED (failures=5)
    Process terminated with an exit code of 1

  • 相关阅读:
    Python基础入门:正则re.sub使用自定义替换方法
    Python基础教程:打印空行的三种方式
    python四种函数类型,必会知识
    写下三个面试遇到的问题
    Linux 部分运维记录
    Openstack安装记录
    关于subprocess的非阻塞问题的回答
    解决:共享文件夹关闭密码保护,还需要输入网络凭据
    无法加载文件XXX,因为在此系统上禁止运行脚本。有关详细信 息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=xxx
    intellij IDEA 全局搜索失效、搜索不到结果解决方法
  • 原文地址:https://www.cnblogs.com/luhouxiang/p/2560298.html
Copyright © 2020-2023  润新知