2021年2月23日 星期二

[ Python 文章收集 ] Testing Python Applications with Pytest

 Source From Here

Preface
Testing applications has become a standard skill set required for any competent developer today. The Python community embraces testing, and even the Python standard library has good inbuilt tools to support testing. In the larger Python ecosystem, there are a lot of testing tools. Pytest stands out among them due to its ease of use and its ability to handle increasingly complex testing needs.

This tutorial will demonstrate how to write tests for Python code with pytest, and how to utilize it to cater for a wide range of testing scenarios.

Prerequisites
This tutorial uses Python 3, and we will be working inside a virtualenv.

Fortunately for us, Python 3 has inbuilt support for creating virtual environments. To create and activate a virtual environment for this project, let’s run the following commands:
$ mkdir pytest_project
$ cd pytest_project
$ python3 -m venv pytest-env

This creates a virtual environment called pytest-env in our working directory. To begin using the virtualenv, we need to activate it as follows:
$ source pytest-env/bin/activate

As long as the virtualenv is active, any packages we install will be installed in our virtual environment, rather than in the global Python installation. To get started, let’s install pytest in our virtualenv:
$ pip install pytest
$ python -c "import pytest; print(pytest.__version__)"
6.0.1

Basic Pytest Usage
We will start with a simple test. Pytest expects our tests to be located in files whose names begin with test_ or end with _test.py.

Let’s create a file called test_capitalize.py, and inside it, we will write a function called capital_case which should take a string as its argument and should return a capitalized version of the string. We will also write a test, test_capital_case to ensure that the function does what it says. We’ll prefix our test function names with test_, since this is what pytest expects our test functions to be named:
test_capitalize.py
  1. def capital_case(x):  
  2.     return x.capitalize()  
  3.   
  4. def test_capital_case():  
  5.     assert capital_case('semaphore') == 'Semaphore'  
The immediately noticeable thing is that pytest uses a plain assert statement, which is much easier to remember and use compared to the numerous assertSomething functions found in unittest. To run the test, execute the pytest command:
$ pytest
...
===== 1 passed in 0.00s ======

We should see that our first test passes.

A keen reader will notice that our function could lead to a bug. It does not check the type of the argument to ensure that it is a string. Therefore, if we passed in a number as the argument to the function, it would raise an exception. We would like to handle this case in our function by raising a custom exception with a friendly error message to the user.

Let’s try to capture this in our test (Assert that a certain exception is raised):
  1. import pytest  
  2.   
  3. def capital_case(x):  
  4.     return x.capitalize()  
  5.   
  6. def test_capital_case():  
  7.     assert capital_case('semaphore') == 'Semaphore'  
  8.   
  9. def test_raises_exception_on_non_string_arguments():  
  10.     # Assert certain Exception being raised  
  11.     with pytest.raises(TypeError):  
  12.         capital_case(9)  
The major addition here is the pytest.raises helper, which asserts that our function should raise a TypeError in case the argument passed is not a string. Running the tests at this point should fail with the following error:
$ pytest
  1. ...  
  2.     def capital_case(x):  
  3. >       return x.capitalize()  
  4. E       AttributeError: 'int' object has no attribute 'capitalize'  
  5.   
  6. test_capitalize.py:4: AttributeError  
  7. ====== short test summary info ======  
  8. FAILED test_capitalize.py::test_raises_exception_on_non_string_arguments - AttributeError: 'int' object has no attribute 'capitalize'  
  9. ====== 1 failed, 1 passed in 0.02s =======  

Since we’ve verified that we have not handled such a case, we can go ahead and fix it.

In our capital_case function, we should check that the argument passed is a string or a string subclass before calling the capitalize function. If it is not, we should raise a TypeError with a custom error message.
  1. def capital_case(x):  
  2.     if not isinstance(x, str):  
  3.         raise TypeError('Please provide a string argument')  
  4.   
  5.     return x.capitalize()  
When we rerun our tests, they should be passing once again.

Using Pytest Fixtures
In the following sections, we will explore some more advanced pytest features. To do this, we will need a small project to work with. We will be writing a wallet application that enables its users to add or spend money in the wallet. It will be modeled as a class with two instance methods: spend_cash and add_cash.

We’ll get started by writing our tests first. Create a file called test_wallet.py in the working directory, and add the following contents:
test_wallet.py
  1. import pytest  
  2. from wallet import Wallet, InsufficientAmount  
  3.   
  4. def test_default_initial_amount():  
  5.     wallet = Wallet()  
  6.     assert wallet.balance == 0  
  7.   
  8. def test_setting_initial_amount():  
  9.     wallet = Wallet(100)  
  10.     assert wallet.balance == 100  
  11.   
  12. def test_wallet_add_cash():  
  13.     wallet = Wallet(10)  
  14.     wallet.add_cash(90)  
  15.     assert wallet.balance == 100  
  16.   
  17. def test_wallet_spend_cash():  
  18.     wallet = Wallet(20)  
  19.     wallet.spend_cash(10)  
  20.     assert wallet.balance == 10  
  21.   
  22. def test_wallet_spend_cash_raises_exception_on_insufficient_amount():  
  23.     wallet = Wallet()  
  24.     with pytest.raises(InsufficientAmount):  
  25.         wallet.spend_cash(100)  
First things first, we import the Wallet class and the InsufficientAmount exception that we expect to raise when the user tries to spend more cash than they have in their wallet.

When we initialize the Wallet class, we expect it to have a default balance of 0. However, when we initialize the class with a value, that value should be set as the wallet’s initial balance.

Moving on to the methods we plan to implement, we test that the add_cash method correctly increments the balance with the added amount. On the other hand, we are also ensuring that the spend_cash method reduces the balance by the spent amount and that we can’t spend more cash than we have in the wallet. If we try to do so, an InsufficientAmount exception should be raised.

Running the tests at this point should fail since we have not created our Wallet class yet. We’ll proceed with creating it. Create a file called wallet.py, and we will add our Wallet implementation in it. The file should look as follows:
wallet.py
  1. class InsufficientAmount(Exception):  
  2.     pass  
  3.   
  4.   
  5. class Wallet(object):  
  6.   
  7.     def __init__(self, initial_amount=0):  
  8.         self.balance = initial_amount  
  9.   
  10.     def spend_cash(self, amount):  
  11.         if self.balance < amount:  
  12.             raise InsufficientAmount('Not enough available to spend {}'.format(amount))  
  13.         self.balance -= amount  
  14.   
  15.     def add_cash(self, amount):  
  16.         self.balance += amount  
Once we have this in place, we can rerun our tests, and they should be passing:
$ pytest
...
===== 5 passed in 0.01s ======

Refactoring our Tests with Fixtures
You may have noticed some repetition in the way we initialized the class in each test. This is where pytest fixtures come in. They help us set up some helper code that should run before any tests are executed, and are perfect for setting-up resources that are needed by the tests.

Fixture functions are created by marking them with the @pytest.fixture decorator. Test functions that require fixtures should accept them as arguments. For example, for a test to receive a fixture called wallet, it should have an argument with the fixture name, i.e. wallet.

Let’s see how this works in practice. We will refactor our previous tests to use test fixtures where appropriate:
test_wallet.py
  1. import pytest  
  2. from wallet import Wallet, InsufficientAmount  
  3.   
  4. @pytest.fixture  
  5. def empty_wallet():  
  6.     '''Returns a Wallet instance with a zero balance'''  
  7.     return Wallet()  
  8.   
  9. @pytest.fixture  
  10. def wallet():  
  11.     '''Returns a Wallet instance with a balance of 20'''  
  12.     return Wallet(20)  
  13.   
  14. def test_default_initial_amount(empty_wallet):  
  15.     assert empty_wallet.balance == 0  
  16.   
  17. def test_setting_initial_amount(wallet):  
  18.     assert wallet.balance == 20  
  19.   
  20. def test_wallet_add_cash(wallet):  
  21.     wallet.add_cash(80)  
  22.     assert wallet.balance == 100  
  23.   
  24. def test_wallet_spend_cash(wallet):  
  25.     wallet.spend_cash(10)  
  26.     assert wallet.balance == 10  
  27.   
  28. def test_wallet_spend_cash_raises_exception_on_insufficient_amount(empty_wallet):  
  29.     with pytest.raises(InsufficientAmount):  
  30.         empty_wallet.spend_cash(100)  
In our refactored tests, we can see that we have reduced the amount of boilerplate code by making use of fixtures. We define two fixture functions, wallet and empty_wallet, which will be responsible for initializing the Wallet class in tests where it is needed, with different values.

Utilizing fixtures helps us de-duplicate our code. If you notice a case where a piece of code is used repeatedly in a number of tests, that might be a good candidate to use as a fixture.

Some Pointers on Test Fixtures
Here are some pointers on using test fixtures:
* Each test is provided with a newly-initialized Wallet instance, and not one that has been used in another test.
* It is a good practice to add docstrings for your fixtures. To see all the available fixtures, run the following command:
$ pytest --fixtures
  1. ...  
  2. ------ fixtures defined from test_wallet ------  
  3. wallet  
  4.     Returns a Wallet instance with a balance of 20  
  5.   
  6. empty_wallet  
  7.     Returns a Wallet instance with a zero balance  

Parametrized Test Functions
Having tested the individual methods in the Wallet class, the next step we should take is to test various combinations of these methods. This is to answer questions such as “If I have an initial balance of 30, and spend 20, then add 100, and later on, spend 50, how much should the balance be?”

As you can imagine, writing out those steps in the tests would be tedious, and pytest provides quite a delightful solution: Parametrized test functions

To capture a scenario like the one above, we can write a test:
  1. # test_wallet.py  
  2.   
  3. @pytest.mark.parametrize("earned,spent,expected", [  
  4.     (301020),  
  5.     (20218),  
  6. ])  
  7. def test_transactions(earned, spent, expected):  
  8.     my_wallet = Wallet()  
  9.     my_wallet.add_cash(earned)  
  10.     my_wallet.spend_cash(spent)  
  11.     assert my_wallet.balance == expected  
This enables us to test different scenarios, all in one function. We make use of the @pytest.mark.parametrize decorator, where we can specify the names of the arguments that will be passed to the test function, and a list of arguments corresponding to the names. The test function marked with the decorator will then be run once for each set of parameters.

This elegantly helps us capture the scenario:
* My wallet initially has 0,
* I add 30 units of cash to the wallet,
* I spend 10 units of cash, and
* I should have 20 units of cash remaining after the two transactions.

This is quite a succinct way to test different combinations of values without writing a lot of repeated code.

Combining Test Fixtures and Parametrized Test Functions
To make our tests less repetitive, we can go further and combine test fixtures and parametrize test functions. To demonstrate this, let’s replace the wallet initialization code with a test fixture as we did before. The end result will be:
  1. @pytest.fixture  
  2. def my_wallet():  
  3.     '''Returns a Wallet instance with a zero balance'''  
  4.     return Wallet()  
  5.   
  6. @pytest.mark.parametrize("earned,spent,expected", [  
  7.     (301020),  
  8.     (20218),  
  9. ])  
  10. def test_transactions(my_wallet, earned, spent, expected):  
  11.     my_wallet.add_cash(earned)  
  12.     my_wallet.spend_cash(spent)  
  13.     assert my_wallet.balance == expected  
You can try out this pattern further, e.g. with the wallet instance with a non-empty balance and with other different combinations of the earned and spent amounts.

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...