栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

【Pytest:Python 单元测试工具学习】

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

【Pytest:Python 单元测试工具学习】

【Pytest:Python 单元测试工具学习】
  • Brief Introduction to Pytest
  • Installation
  • A Simple Testing
  • Testing Whether Throws an Exception
  • Test Classes
  • Some Basic API For Pytest
  • Conclusion about Pytest
  • References

  • 由于是课程作业,所以是全英文的,词汇量不是很难吧。
Brief Introduction to Pytest
  • Pytest is a very mature and full-featured Python testing framework. It is simple, flexible and easy to use.
    It supports simple unit testing and complex function testing, and can also cooperate with third-party plug-ins for automatic testing.
    There are many third-party plug-ins that can be customized and extended.
    We can see more details in the official documents of pytest:
    https://www.osgeo.cn/pytest/contents.html
Installation
  • In CMD, enter the following command to install pytest:
    pip install -U pytest
    We can check the installed version of pytest by entering the following command. My running results are as follows:
A Simple Testing
  • Firstly write a simple two functions, the second functions is for testing the first function.

    Then, in the cmd or console (because I use Visual Studio Code, I will run in console), run pytest command to see whether the assert runs well.

    Cause 1 not equal to 2, so assert(False) turns the FAILURES, gives us AssertionError.
    Change the line5, and rerun the pytest, then will pass the test.

Testing Whether Throws an Exception
  • We could use pytest.raises(Exception) to check whether this Exception is raised.

    As we expected, the test_1() passed and test_2() failed because it didn’t raise the ‘SystemExit’ Exception.
Test Classes
  • If we have several tests, we could class them together, but we need to add prefix ‘Test’ for class name , or we will skip test the class.


    It’s beneficial for us to make several relevant tests into one class.
Some Basic API For Pytest
  • According to the official document, I will introduce several important API here.
  1. Fail(msg,pytrace) -> NoReturn

    It means if we use ‘pytest.fail(mes)’ , it will show the error message.
    If we let second argument be false, then the trace will not show the fail message.


    See, only test_1 shows the trace, but test_2 only shows ‘Special Error2’
  2. Pytest.raises
    It declares that the code blocks will raise expected exception. Otherwise, it will cause fail exception.
    It could use like I mentioned above:

    Also, could detect the defined exception, for example, ValueError
  3. Pytest.approx
    Some times, we want to compare two float numbers whether they are equal, we may write in the form of ‘0.1 + 0.2 == 0.3’. However, this may be wrong due to the storage way of floating numbers.
    So, we may write ‘abs((0.1 + 0.2) - 0.3) < 1e-6’. However, it’s more complicated for us to understand. And, 1e-6 seems good for number 1, but bad for number 1e18.
    So , we use approx so that it’s better to check the equality of two numbers, or even list and etc.

Conclusion about Pytest
  • Pytest has many advantages:
  1. Automatically find test functions and cases.
  2. Convenient declarations to match exceptions.
  3. Run testing cases, modules, and classes smoothly.
  4. Various pluggable units are available.
  5. Compatible with unnitest or nose.

For testing part, it will show all the traces so that we could know which testing cases are not pass, as well as their exceptions.

References
  1. Pytest 官方文档:https://www.osgeo.cn/pytest/contents.html
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/664666.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号