diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2021-03-29 11:04:46 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2021-04-15 11:33:04 -0400 |
commit | 5e3eb985367c0d945b45a2e07b01e3fc37e7e18e (patch) | |
tree | e4c061c80a27fac259acff2f8e5d11cb3fee0544 /tests/test_data | |
parent | 0fac82c90d6493aef21ef84c3132416ba2c5e9fb (diff) | |
download | sos-5e3eb985367c0d945b45a2e07b01e3fc37e7e18e.tar.gz |
[tests] Add a StageTwo timeout test
Adds a test to ensure our timeout control is working properly.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to 'tests/test_data')
-rw-r--r-- | tests/test_data/fake_plugins/timeout_test.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/test_data/fake_plugins/timeout_test.py b/tests/test_data/fake_plugins/timeout_test.py new file mode 100644 index 00000000..3a027c42 --- /dev/null +++ b/tests/test_data/fake_plugins/timeout_test.py @@ -0,0 +1,21 @@ +# This file is part of the sos project: https://github.com/sosreport/sos +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions of +# version 2 of the GNU General Public License. +# +# See the LICENSE file in the source distribution for further information. + +from sos.report.plugins import Plugin, IndependentPlugin + + +class TimeoutTest(Plugin, IndependentPlugin): + + plugin_name = 'timeout_test' + short_desc = 'Tests timeout functionality in test suite' + + + def setup(self): + self.add_cmd_output('sleep 15') + self.add_cmd_output('echo I slept great', suggest_filename='echo_good') + self.add_cmd_output('sleep 30', timeout=10) |