aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utilities_tests.py
diff options
context:
space:
mode:
authorJesse Jaggars <jhjaggars@gmail.com>2012-03-21 07:04:59 -0700
committerJesse Jaggars <jhjaggars@gmail.com>2012-03-21 07:04:59 -0700
commit3a09cb48bc8781f4d8693debec33e8c304096e08 (patch)
tree7c8f5e3b21f3af87f5b66f21cb7d612253b2a799 /tests/utilities_tests.py
parent79b22b9dcca60f5d2b8d455d226a2bdb30c15fe2 (diff)
parent550a9574348fcf09099610ba1501b17cb7477f0d (diff)
downloadsos-3a09cb48bc8781f4d8693debec33e8c304096e08.tar.gz
Merge pull request #54 from jhjaggars/timeouts
Timeouts
Diffstat (limited to 'tests/utilities_tests.py')
-rw-r--r--tests/utilities_tests.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/utilities_tests.py b/tests/utilities_tests.py
index 24bc950b..fd9699fe 100644
--- a/tests/utilities_tests.py
+++ b/tests/utilities_tests.py
@@ -2,7 +2,7 @@ import os.path
import unittest
from StringIO import StringIO
-from sos.utilities import grep, DirTree, checksum, get_hash_name, is_executable, sosGetCommandOutput, find, tail
+from sos.utilities import grep, DirTree, checksum, get_hash_name, is_executable, sosGetCommandOutput, find, tail, shell_out
import sos
TEST_DIR = os.path.dirname(__file__)
@@ -71,6 +71,9 @@ class ExecutableTest(unittest.TestCase):
path = os.path.join(TEST_DIR, 'test_exe.py')
self.assertTrue(is_executable(path))
+ def test_exe_file_abs_path(self):
+ self.assertTrue(is_executable("/usr/bin/timeout"))
+
def test_output(self):
path = os.path.join(TEST_DIR, 'test_exe.py')
ret, out, junk = sosGetCommandOutput(path)
@@ -83,6 +86,10 @@ class ExecutableTest(unittest.TestCase):
self.assertEquals(ret, 127)
self.assertEquals(out, "")
+ def test_shell_out(self):
+ path = os.path.join(TEST_DIR, 'test_exe.py')
+ self.assertEquals("executed", shell_out(path))
+
class FindTest(unittest.TestCase):