Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

natest-0.9-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page