diff options
| author | Martin Winter <mwinter@netdef.org> | 2016-11-25 20:19:10 -0800 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-11-27 20:22:11 -0500 |
| commit | 309c9764c512d39ca404e34dd106ee2d8a3d9a76 (patch) | |
| tree | 194860138ec7d9eeb894477650e6fba2c3e043eb /tests/topotests/example-test/test_example.py | |
| parent | 6b1be61ad89d3e87ef53f875dadbabdf022b447d (diff) | |
example-test: Add simple example pytest for documentation (and exclude it from running in pytest.ini)
Diffstat (limited to 'tests/topotests/example-test/test_example.py')
| -rwxr-xr-x | tests/topotests/example-test/test_example.py | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/tests/topotests/example-test/test_example.py b/tests/topotests/example-test/test_example.py new file mode 100755 index 0000000000..8e37ad11d4 --- /dev/null +++ b/tests/topotests/example-test/test_example.py @@ -0,0 +1,60 @@ +#!/usr/bin/env python + +import subprocess +import sys +import os +import time + +import pytest + +fatal_error = "" + +def setup_module(module): + print ("setup_module module:%s" % module.__name__) + +def teardown_module(module): + print ("teardown_module module:%s" % module.__name__) + +def setup_function(function): + print ("setup_function function:%s" % function.__name__) + +def teardown_function(function): + print ("teardown_function function:%s" % function.__name__) + +def test_numbers_compare(): + a = 12 + print ("Dummy Output") + assert( a == 12 ) + +def test_fail_example(): + assert True, "Some Text with explaination in case of failure" + +def test_ls_exits_zero(): + "Tests for ls command on invalid file" + + global fatal_error + + proc = subprocess.Popen( + ["ls", "/some/nonexistant/file"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + ) + stdout, stderr = proc.communicate() + + if (proc.returncode != 0): + # Mark this as a fatal error which skips some other tests on failure + fatal_error = "test_fail_example failed" + assert proc.returncode == 0, "Return Code is non-Zero:\n%s" % stderr + +def test_skipped_on_fatalerror(): + global fatal_error + + # Skip if previous fatal error condition is raised + if (fatal_error != ""): + pytest.skip(fatal_error) + + assert True, "Some Text with explaination in case of failure" + +if __name__ == '__main__': + retval = pytest.main(["-s"]) + sys.exit(retval) |
