Automated CI/CD Tests
netlab uses GitHub Workflows CI/CD pipeline; see .github/workflows/tests.yml
for details. The automated tests executed on every push, pull request, or merge include:
mypy static type checking of all Python code in
netsim/
directoryTransformation tests ran with pytest in
tests/
directory
You can run the same tests with the run-tests.sh
script in tests directory. It’s highly recommended you run them before creating a pull request that modifies Python code, or we’ll have to have a discussion before your PR is merged.
Tip
The CI/CD tests require additional Python modules. Install them with pip3 install -r requirements-dev.txt
Automated Tests
The test_transformation.py test harness runs three types of transformation tests:
Regular transformations (see below)
Error cases – topologies that should generate an error resulting in an aborted transformation attempt. Add tests to this directory only when you need to test error messages in the Python code.
Verbose test cases – identical to regular transformations but with more logging. Used only when measuring code coverage (to ensure all logging printouts are triggered)
Data Transformation Tests
The regular transformation tests:
Take a topology file from tests/topology/input directory
Run the transformation code
Render the resulting data structure (without address pools or system defaults) in YAML format
Compare the results with corresponding file from tests/topology/expected directory
Whenever you’re creating a new test case or modifying an existing one, you HAVE TO create a corresponding expected results file. Please don’t try to create the expected results by hand – the results are compared as strings, not data structures, and it’s just not worth the effort to fix them manually.
To create expected results files run create-transformation-tests.sh
script in the tests directory. The script assumes that your code works flawlessly and that whatever the code does is the correct result. That might not be the case, so it’s highly recommended that you execute git diff topology
after running create-transformation-tests.sh
script and do a thorough check of the differences.
Transformation Error Tests
The transformation error tests:
Take a
.yml
topology file from the tests/errors directoryRun the transformation code that should result in a ‘fatal error’ exit
Collect the error messages generated during the data transformation
Compare the collected error messages with the corresponding
.log
file from tests/errors directory
Whenever you’re creating a new error test case or modifying an existing one, you HAVE TO create a corresponding expected error messages log file.
To create the expected error messages files run create-error-tests.sh
script in the tests directory. The script assumes that your code works flawlessly and that whatever error messages are generated are the expected error messages. That might not be the case, so it’s highly recommended that you execute git diff errors
after running create-errors-tests.sh
script and do a thorough check of the differences.
Before Submitting a PR
If your PR includes modifications to Python code, make sure you follow these steps before submitting it:
Run
create-transformation-tests.sh
scriptCheck the differences (again)
Add modified test results to your commit
Run the
run-tests.sh
script in thetests
directory.Submit a PR
Tip
Automated CI/CD tests will check your expected test results, and we’ll have a discussion if you submit “suboptimal” content ;)
Integration Tests
Integration tests are run by hand; it’s too much hassle to set up an automated test environment with vendor boxes/containers/license files. The latest results are available at https://tests.netlab.tools/.
The test topologies are stored in the tests/integration
directory. If you’re adding new device features or changing device configuration templates, please run the relevant tests before submitting a PR.
Most integration tests include automated validation. The easiest way to use it is to run the netlab up _test_scenario_ --validate
command.