test_utils_process.py 17.6 KB
Newer Older
1
import io
2
import logging
3
import os
4
import shlex
5
import unittest
6 7 8 9 10 11

try:
    from unittest import mock
except ImportError:
    import mock

12

13
from avocado.utils import astring
14
from avocado.utils import gdb
15
from avocado.utils import process
16
from avocado.utils import path
17

18 19 20
from six import string_types


21 22 23 24 25 26 27 28
def probe_binary(binary):
    try:
        return path.find_command(binary)
    except path.CmdNotFoundError:
        return None


TRUE_CMD = probe_binary('true')
29
ECHO_CMD = probe_binary('echo')
30

31

32 33 34 35 36 37 38
class TestSubProcess(unittest.TestCase):

    def test_allow_output_check_parameter(self):
        self.assertRaises(ValueError, process.SubProcess,
                          TRUE_CMD, False, "invalid")


39 40 41
class TestGDBProcess(unittest.TestCase):

    def setUp(self):
42
        self.current_runtime_expr = gdb.GDB_RUN_BINARY_NAMES_EXPR[:]
43 44

    def cleanUp(self):
45
        gdb.GDB_RUN_BINARY_NAMES_EXPR = self.current_runtime_expr
46 47

    def test_should_run_inside_gdb(self):
48
        gdb.GDB_RUN_BINARY_NAMES_EXPR = ['foo']
49 50 51 52
        self.assertTrue(process.should_run_inside_gdb('foo'))
        self.assertTrue(process.should_run_inside_gdb('/usr/bin/foo'))
        self.assertFalse(process.should_run_inside_gdb('/usr/bin/fooz'))

53
        gdb.GDB_RUN_BINARY_NAMES_EXPR.append('foo:main')
54 55 56
        self.assertTrue(process.should_run_inside_gdb('foo'))
        self.assertFalse(process.should_run_inside_gdb('bar'))

57
        gdb.GDB_RUN_BINARY_NAMES_EXPR.append('bar:main.c:5')
58 59 60 61 62
        self.assertTrue(process.should_run_inside_gdb('bar'))
        self.assertFalse(process.should_run_inside_gdb('baz'))
        self.assertTrue(process.should_run_inside_gdb('bar 1 2 3'))
        self.assertTrue(process.should_run_inside_gdb('/usr/bin/bar 1 2 3'))

63 64 65
    def test_should_run_inside_gdb_malformed_command(self):
        gdb.GDB_RUN_BINARY_NAMES_EXPR = ['/bin/virsh']
        cmd = """/bin/virsh node-memory-tune --shm-sleep-millisecs ~!@#$%^*()-=[]{}|_+":;'`,>?. """
66 67 68
        self.assertTrue(process.should_run_inside_gdb(cmd))
        self.assertFalse(process.should_run_inside_gdb("foo bar baz"))
        self.assertFalse(process.should_run_inside_gdb("foo ' "))
69

70 71
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
72
    def test_get_sub_process_klass(self):
73
        gdb.GDB_RUN_BINARY_NAMES_EXPR = []
74
        self.assertIs(process.get_sub_process_klass(TRUE_CMD),
75 76
                      process.SubProcess)

77
        gdb.GDB_RUN_BINARY_NAMES_EXPR.append('/bin/false')
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
        self.assertIs(process.get_sub_process_klass('/bin/false'),
                      process.GDBSubProcess)
        self.assertIs(process.get_sub_process_klass('false'),
                      process.GDBSubProcess)
        self.assertIs(process.get_sub_process_klass('true'),
                      process.SubProcess)

    def test_split_gdb_expr(self):
        binary, breakpoint = process.split_gdb_expr('foo:debug_print')
        self.assertEqual(binary, 'foo')
        self.assertEqual(breakpoint, 'debug_print')
        binary, breakpoint = process.split_gdb_expr('bar')
        self.assertEqual(binary, 'bar')
        self.assertEqual(breakpoint, 'main')
        binary, breakpoint = process.split_gdb_expr('baz:main.c:57')
        self.assertEqual(binary, 'baz')
        self.assertEqual(breakpoint, 'main.c:57')
        self.assertIsInstance(process.split_gdb_expr('foo'), tuple)
        self.assertIsInstance(process.split_gdb_expr('foo:debug_print'), tuple)

98 99 100 101 102 103 104 105 106

def mock_fail_find_cmd(cmd, default=None):
    path_paths = ["/usr/libexec", "/usr/local/sbin", "/usr/local/bin",
                  "/usr/sbin", "/usr/bin", "/sbin", "/bin"]
    raise path.CmdNotFoundError(cmd, path_paths)


class TestProcessRun(unittest.TestCase):

107 108
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
109
    @mock.patch.object(path, 'find_command',
110
                       mock.Mock(return_value=TRUE_CMD))
111
    @mock.patch.object(os, 'getuid',
112
                       mock.Mock(return_value=1000))
113 114 115 116 117
    def test_subprocess_nosudo(self):
        expected_command = 'ls -l'
        p = process.SubProcess(cmd='ls -l')
        self.assertEqual(p.cmd, expected_command)

118 119
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
120
    @mock.patch.object(path, 'find_command',
121 122
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=0))
123 124 125 126 127
    def test_subprocess_nosudo_uid_0(self):
        expected_command = 'ls -l'
        p = process.SubProcess(cmd='ls -l')
        self.assertEqual(p.cmd, expected_command)

128 129
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
130
    @mock.patch.object(path, 'find_command',
131
                       mock.Mock(return_value=TRUE_CMD))
132
    @mock.patch.object(os, 'getuid',
133
                       mock.Mock(return_value=1000))
134
    def test_subprocess_sudo(self):
135
        expected_command = '%s -n ls -l' % TRUE_CMD
136 137 138
        p = process.SubProcess(cmd='ls -l', sudo=True)
        self.assertEqual(p.cmd, expected_command)

139
    @mock.patch.object(path, 'find_command', mock_fail_find_cmd)
140
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
141 142 143 144 145
    def test_subprocess_sudo_no_sudo_installed(self):
        expected_command = 'ls -l'
        p = process.SubProcess(cmd='ls -l', sudo=True)
        self.assertEqual(p.cmd, expected_command)

146 147
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
148
    @mock.patch.object(path, 'find_command',
149 150
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=0))
151 152 153 154 155
    def test_subprocess_sudo_uid_0(self):
        expected_command = 'ls -l'
        p = process.SubProcess(cmd='ls -l', sudo=True)
        self.assertEqual(p.cmd, expected_command)

156 157
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
158
    @mock.patch.object(path, 'find_command',
159 160
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
161
    def test_subprocess_sudo_shell(self):
162
        expected_command = '%s -n -s ls -l' % TRUE_CMD
163 164 165
        p = process.SubProcess(cmd='ls -l', sudo=True, shell=True)
        self.assertEqual(p.cmd, expected_command)

166
    @mock.patch.object(path, 'find_command', mock_fail_find_cmd)
167
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
168 169 170 171 172
    def test_subprocess_sudo_shell_no_sudo_installed(self):
        expected_command = 'ls -l'
        p = process.SubProcess(cmd='ls -l', sudo=True, shell=True)
        self.assertEqual(p.cmd, expected_command)

173 174
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
175
    @mock.patch.object(path, 'find_command',
176 177
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=0))
178 179 180 181 182
    def test_subprocess_sudo_shell_uid_0(self):
        expected_command = 'ls -l'
        p = process.SubProcess(cmd='ls -l', sudo=True, shell=True)
        self.assertEqual(p.cmd, expected_command)

183 184
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
185
    @mock.patch.object(path, 'find_command',
186 187
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
188 189 190 191 192
    def test_run_nosudo(self):
        expected_command = 'ls -l'
        p = process.run(cmd='ls -l', ignore_status=True)
        self.assertEqual(p.command, expected_command)

193 194
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
195
    @mock.patch.object(path, 'find_command',
196 197
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=0))
198 199 200 201 202
    def test_run_nosudo_uid_0(self):
        expected_command = 'ls -l'
        p = process.run(cmd='ls -l', ignore_status=True)
        self.assertEqual(p.command, expected_command)

203 204
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
205
    @mock.patch.object(path, 'find_command',
206 207
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
208
    def test_run_sudo(self):
209
        expected_command = '%s -n ls -l' % TRUE_CMD
210 211 212
        p = process.run(cmd='ls -l', sudo=True, ignore_status=True)
        self.assertEqual(p.command, expected_command)

213
    @mock.patch.object(path, 'find_command', mock_fail_find_cmd)
214
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
215 216 217 218 219
    def test_run_sudo_no_sudo_installed(self):
        expected_command = 'ls -l'
        p = process.run(cmd='ls -l', sudo=True, ignore_status=True)
        self.assertEqual(p.command, expected_command)

220 221
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
222
    @mock.patch.object(path, 'find_command',
223 224
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=0))
225 226 227 228 229
    def test_run_sudo_uid_0(self):
        expected_command = 'ls -l'
        p = process.run(cmd='ls -l', sudo=True, ignore_status=True)
        self.assertEqual(p.command, expected_command)

230 231
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
232
    @mock.patch.object(path, 'find_command',
233 234
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
235
    def test_run_sudo_shell(self):
236
        expected_command = '%s -n -s ls -l' % TRUE_CMD
237 238 239
        p = process.run(cmd='ls -l', sudo=True, shell=True, ignore_status=True)
        self.assertEqual(p.command, expected_command)

240
    @mock.patch.object(path, 'find_command', mock_fail_find_cmd)
241
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=1000))
242 243 244 245 246
    def test_run_sudo_shell_no_sudo_installed(self):
        expected_command = 'ls -l'
        p = process.run(cmd='ls -l', sudo=True, shell=True, ignore_status=True)
        self.assertEqual(p.command, expected_command)

247 248
    @unittest.skipUnless(TRUE_CMD,
                         '"true" binary not available')
249
    @mock.patch.object(path, 'find_command',
250 251
                       mock.Mock(return_value=TRUE_CMD))
    @mock.patch.object(os, 'getuid', mock.Mock(return_value=0))
252 253 254 255 256
    def test_run_sudo_shell_uid_0(self):
        expected_command = 'ls -l'
        p = process.run(cmd='ls -l', sudo=True, shell=True, ignore_status=True)
        self.assertEqual(p.command, expected_command)

257 258 259 260 261 262
    @unittest.skipUnless(ECHO_CMD, "Echo command not available in system")
    def test_run_unicode_output(self):
        # Using encoded string as shlex does not support decoding
        # but the behavior is exactly the same as if shell binary
        # produced unicode
        text = u"Avok\xe1do"
263 264 265 266 267 268 269 270 271 272
        # Even though code point used is "LATIN SMALL LETTER A WITH ACUTE"
        # (http://unicode.scarfboy.com/?s=u%2B00e1) when encoded to proper
        # utf-8, it becomes two bytes because it is >= 0x80
        # See https://en.wikipedia.org/wiki/UTF-8
        encoded_text = b'Avok\xc3\xa1do'
        self.assertEqual(text.encode('utf-8'), encoded_text)
        self.assertEqual(encoded_text.decode('utf-8'), text)
        result = process.run("%s -n %s" % (ECHO_CMD, text), encoding='utf-8')
        self.assertEqual(result.stdout, encoded_text)
        self.assertEqual(result.stdout_text, text)
273

274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289

class MiscProcessTests(unittest.TestCase):

    def test_binary_from_shell(self):
        self.assertEqual("binary", process.binary_from_shell_cmd("binary"))
        res = process.binary_from_shell_cmd("MY_VAR=foo myV4r=123 "
                                            "quote='a b c' QUOTE=\"1 2 && b\" "
                                            "QuOtE=\"1 2\"foo' 3 4' first_bin "
                                            "second_bin VAR=xyz")
        self.assertEqual("first_bin", res)
        res = process.binary_from_shell_cmd("VAR=VALUE 1st_binary var=value "
                                            "second_binary")
        self.assertEqual("1st_binary", res)
        res = process.binary_from_shell_cmd("FOO=bar ./bin var=value")
        self.assertEqual("./bin", res)

290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
    def test_cmd_split(self):
        plain_str = ''
        unicode_str = u''
        empty_bytes = b''
        # shlex.split() can work with "plain_str" and "unicode_str" on both
        # Python 2 and Python 3.  While we're not testing Python itself,
        # this will help us catch possible differences in the Python
        # standard library should they arise.
        self.assertEqual(shlex.split(plain_str), [])
        self.assertEqual(shlex.split(astring.to_text(plain_str)), [])
        self.assertEqual(shlex.split(unicode_str), [])
        self.assertEqual(shlex.split(astring.to_text(unicode_str)), [])
        # on Python 3, shlex.split() won't work with bytes, raising:
        # AttributeError: 'bytes' object has no attribute 'read'.
        # To turn bytes into text (when necessary), that is, on
        # Python 3 only, use astring.to_text()
        self.assertEqual(shlex.split(astring.to_text(empty_bytes)), [])
        # Now let's test our specific implementation to split commands
        self.assertEqual(process.cmd_split(plain_str), [])
        self.assertEqual(process.cmd_split(unicode_str), [])
        self.assertEqual(process.cmd_split(empty_bytes), [])
        unicode_command = u"avok\xe1do_test_runner arguments"
        self.assertEqual(process.cmd_split(unicode_command),
                         [u"avok\xe1do_test_runner",
                          u"arguments"])

L
Lukáš Doktor 已提交
316

317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
class CmdResultTests(unittest.TestCase):

    def test_cmd_result_stdout_stderr_bytes(self):
        result = process.CmdResult()
        self.assertTrue(isinstance(result.stdout, bytes))
        self.assertTrue(isinstance(result.stderr, bytes))

    def test_cmd_result_stdout_stderr_text(self):
        result = process.CmdResult()
        self.assertTrue(isinstance(result.stdout_text, string_types))
        self.assertTrue(isinstance(result.stderr_text, string_types))

    def test_cmd_result_stdout_stderr_already_text(self):
        result = process.CmdResult()
        result.stdout = "supposed command output, but not as bytes"
        result.stderr = "supposed command error, but not as bytes"
        self.assertEqual(result.stdout, result.stdout_text)
        self.assertEqual(result.stderr, result.stderr_text)

    def test_cmd_result_stdout_stderr_other_type(self):
        result = process.CmdResult()
        result.stdout = None
        result.stderr = None
        self.assertRaises(TypeError, lambda x: result.stdout_text)
        self.assertRaises(TypeError, lambda x: result.stderr_text)


344 345 346 347 348 349 350
class FDDrainerTests(unittest.TestCase):

    def test_drain_from_pipe_fd(self):
        read_fd, write_fd = os.pipe()
        result = process.CmdResult()
        fd_drainer = process.FDDrainer(read_fd, result, "test")
        fd_drainer.start()
351
        for content in (b"foo", b"bar", b"baz", b"foo\nbar\nbaz\n\n"):
352
            os.write(write_fd, content)
353
        os.write(write_fd, b"finish")
354
        os.close(write_fd)
355
        fd_drainer.flush()
356
        self.assertEqual(fd_drainer.data.getvalue(),
357
                         b"foobarbazfoo\nbar\nbaz\n\nfinish")
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380

    def test_log(self):
        class CatchHandler(logging.NullHandler):
            """
            Handler used just to confirm that a logging event happened
            """
            def __init__(self, *args, **kwargs):
                super(CatchHandler, self).__init__(*args, **kwargs)
                self.caught_record = False

            def handle(self, record):
                self.caught_record = True

        read_fd, write_fd = os.pipe()
        result = process.CmdResult()
        logger = logging.getLogger("FDDrainerTests.test_log")
        handler = CatchHandler()
        logger.addHandler(handler)
        logger.setLevel(logging.DEBUG)

        fd_drainer = process.FDDrainer(read_fd, result, "test",
                                       logger=logger, verbose=True)
        fd_drainer.start()
381
        os.write(write_fd, b"should go to the log\n")
382
        os.close(write_fd)
383
        fd_drainer.flush()
384
        self.assertEqual(fd_drainer.data.getvalue(),
385
                         b"should go to the log\n")
386 387
        self.assertTrue(handler.caught_record)

388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
    def test_flush_on_closed_handler(self):
        handler = logging.StreamHandler(io.StringIO())
        log = logging.getLogger("test_flush_on_closed_handler")
        log.addHandler(handler)
        read_fd, write_fd = os.pipe()
        result = process.CmdResult()
        fd_drainer = process.FDDrainer(read_fd, result, name="test",
                                       stream_logger=log)
        fd_drainer.start()
        os.close(write_fd)
        self.assertIsNotNone(fd_drainer._stream_logger)
        one_stream_closed = False
        for handler in fd_drainer._stream_logger.handlers:
            stream = getattr(handler, 'stream', None)
            if stream is not None:
                if hasattr(stream, 'close'):
                    # force closing the handler's stream to check if
                    # flush will adapt to it
                    stream.close()
                    one_stream_closed = True
        self.assertTrue(one_stream_closed)
        fd_drainer.flush()

    def test_flush_on_handler_with_no_fileno(self):
        handler = logging.StreamHandler(io.StringIO())
        log = logging.getLogger("test_flush_on_handler_with_no_fileno")
        log.addHandler(handler)
        read_fd, write_fd = os.pipe()
        result = process.CmdResult()
        fd_drainer = process.FDDrainer(read_fd, result, name="test",
                                       stream_logger=log)
        fd_drainer.start()
        os.close(write_fd)
        fd_drainer.flush()

423

424 425
if __name__ == "__main__":
    unittest.main()