Testing¶
As Cadwyn allows you to keep the same business logic, database schemas, etc -- you should have a single set of common tests that test your current latest version. These tests are going to work like the regular tests that you would have if you did not have any API versioning.
Here's one of the possible file structures for tests:
└── tests
├── __init__.py
├── conftest.py
├── head
│ ├── __init__.py
│ ├── conftest.py
│ ├── test_users.py
│ ├── test_admins.py
│ └── test_invoices.py
├── v2022_11_16
│ ├── __init__.py
│ ├── conftest.py
│ └── test_invoices.py
└── v2023_03_11
├── __init__.py
├── conftest.py
└── test_users.py
Each time you create a new version, I advise you to follow the following process:
- Before creating a new version, apply the changes you want to your logic and schemas in the latest version (i.e., make the desired breaking changes), and then run the tests in the head folder. The tests that fail indicate the broken contracts
- Create a new folder in your tests named after the previous version (e.g., v2024_05_04), and copy only the failing tests into it. Ensure these tests invoke the old version of the API
- Write a VersionChange that fixes the tests in this outdated version through converters. In the new version, these same tests should still fail
- Modify the tests in the head folder so that they correspond to the new API contract and pass successfully
This approach will make it easy to keep the old versions covered by tests and will keep the duplication in tests minimal.