Writing more tests for views and logic
In the last recipe, we got started with writing tests for our Flask application. In this recipe, we will build upon the same test file and add more tests for our application; these tests will cover testing the views for behavior and logic.
Getting ready
We will build upon the test file named app_tests.py
created in the last recipe.
How to do it…
Before we write any tests, we need to add a small bit of configuration to setUp()
to disable the CSRF tokens, as they are not generated by default for test environments:
test_config['WTF_CSRF_ENABLED'] = False
The following are some tests that are created as a part of this recipe. Each test will be described as we go further:
- Firstly, write a test to make a
GET
request to the products list:def test_products(self):
"Test Products list page...