python unit test for network automation code
Project description
Simple package to run unit test for network automation python3 code.
Explanation by examples:
INPUT can be either a file or a return str() or list() Usually is the output of a show command
input = open('../fixtures/ssh_input', 'r')
HAVE is the return of you code run on top of INPUT
have = open('../fixtures/have', 'r')
WANT must be a file where you have your expected output
want = open('../fixtures/want', 'r')
Create an instance of NaTest
my_test = NaTest()
print the input. Ideally the input is saved in a variable and use to run your code (instead of run real ssh commands)
print(my_test.read(input))
print diff between what we HAVE and what we WANT
print(my_test.result(want, have))
Result (compared WANT against HAVE after running code using INPUT):
['+ This is an extra line\n']
['- This is a missing line\n']
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file natest-0.9-py3-none-any.whl
.
File metadata
- Download URL: natest-0.9-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 261f8acbcf0391221398736b2d77730130af2a56b939a97a96925c73f3bbcd7e |
|
MD5 | 269742e0fc3b690ba31e6ace64f2b8f9 |
|
BLAKE2b-256 | 9d7e742f823104ca3289879c6439e451e66e48706f3647e5bcd2136e804a13d0 |