aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unittests/sosreport_pexpect.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unittests/sosreport_pexpect.py')
-rw-r--r--tests/unittests/sosreport_pexpect.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/unittests/sosreport_pexpect.py b/tests/unittests/sosreport_pexpect.py
deleted file mode 100644
index 3614fa5b..00000000
--- a/tests/unittests/sosreport_pexpect.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# 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.
-import unittest
-import pexpect
-
-from os import kill
-from signal import SIGINT
-
-
-class PexpectTest(unittest.TestCase):
- def test_plugins_install(self):
- sos = pexpect.spawn('/usr/sbin/sosreport -l')
- try:
- sos.expect('plugin.*does not install, skipping')
- except pexpect.EOF:
- pass
- else:
- self.fail("a plugin does not install or sosreport is too slow")
- kill(sos.pid, SIGINT)
-
- def test_batchmode_removes_questions(self):
- sos = pexpect.spawn('/usr/sbin/sosreport --batch')
- grp = sos.expect('send this file to your support representative.', 15)
- self.assertEquals(grp, 0)
- kill(sos.pid, SIGINT)
-
-
-if __name__ == '__main__':
- unittest.main()
-
-# vim: set et ts=4 sw=4 :