File: setproctitle_test.py

package info (click to toggle)
python-setproctitle 1.1.8-1~bpo70%2B1
  • links: PTS
  • area: main
  • in suites: wheezy-backports
  • size: 204 kB
  • sloc: ansic: 724; python: 446; makefile: 71
file content (518 lines) | stat: -rw-r--r-- 17,574 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
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
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
"""setproctitle module unit test.

Use nosetests to run this test suite.

Copyright (c) 2009-2012 Daniele Varrazzo <daniele.varrazzo@gmail.com>
"""

import os
import re
import sys
import shutil
import tempfile
import unittest
from subprocess import Popen, PIPE

IS_PY3K = sys.version_info[0] == 3
IS_PYPY = '__pypy__' in sys.builtin_module_names

# SkipTest is available from Python 2.7 and in nose
try:
    from unittest import SkipTest
except ImportError:
    try:
        from nose.plugins.skip import SkipTest
    except ImportError:
        class SkipTest(Exception):
            pass

if unittest.TestCase.assert_ is not unittest.TestCase.assertTrue:
    # Vaffanculo, Wolf
    unittest.TestCase.assert_ = unittest.TestCase.assertTrue

class SetproctitleTestCase(unittest.TestCase):
    """Test the module works as expected.

    The tests are executed in external processes: setproctitle should
    never be imported directly from here.

    The tests scrits are written in Python 2 syntax: if the test suite is run
    with Python 3 they are converted automatically. This test module should
    be converted though: the Makefile should do that.
    """
    def test_runner(self):
        """Test the script execution method."""
        rv = self.run_script("""
            print 10 + 20
            """)
        self.assertEqual(rv, "30\n")

    def test_init_getproctitle(self):
        """getproctitle() returns a sensible value at initial call."""
        rv = self.run_script("""
            import setproctitle
            print setproctitle.getproctitle()
            """,
            args="-u")
        self.assertEqual(rv, sys.executable + " -u\n")

    def test_setproctitle(self):
        """setproctitle() can set the process title, duh."""
        rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle('Hello, world!')

            import os
            print os.getpid()
            # ps can fail on kfreebsd arch
            # (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=460331)
            print os.popen("ps -x -o pid,command 2> /dev/null").read()
            """)
        lines = filter(None, rv.splitlines())
        pid = lines.pop(0)
        pids = dict([r.strip().split(None, 1) for r in lines])
        title = self._clean_up_title(pids[pid])
        self.assertEqual(title, "Hello, world!")

    def test_prctl(self):
        """Check that prctl is called on supported platforms."""
        linux_version = []
        if sys.platform == 'linux2':
            try:
                f = os.popen("uname -r")
                name = f.read()
                f.close()
            except:
                pass
            else:
                linux_version = map(int,
                    re.search("[.0-9]+", name)
                        .group().split(".")[:3])

        if linux_version < [2,6,9]:
            raise SkipTest("syscall not supported")

        rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle('Hello, prctl!')
            print open('/proc/self/status').read()
            """)
        status = dict([r.split(':', 1) for r in rv.splitlines() if ':' in r])
        self.assertEqual(status['Name'].strip(), "Hello, prctl!")

    def test_getproctitle(self):
        """getproctitle() can read the process title back."""
        rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle('Hello, world!')
            print setproctitle.getproctitle()
            """)
        self.assertEqual(rv, "Hello, world!\n")

    def test_kwarg(self):
        """setproctitle() supports keyword args."""
        rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle(title='Hello, world!')
            print setproctitle.getproctitle()
            """)
        self.assertEqual(rv, "Hello, world!\n")

    def test_environ(self):
        """Check that clobbering environ didn't break env."""
        rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle('Hello, world! ' + 'X' * 1024)

            # set a new env variable, update another one
            import os
            os.environ['TEST_SETENV'] = "setenv-value"
            os.environ['PATH'] = os.environ.get('PATH', '') \
                    + os.pathsep + "fakepath"

            # read the environment from a spawned process inheriting the
            # updated env
            newenv = dict([r.split("=",1)
                    for r in os.popen("env").read().splitlines()
                    if '=' in r])

            print setproctitle.getproctitle()
            print newenv['TEST_SETENV']
            print newenv['PATH']
            """)

        title, test, path = rv.splitlines()
        self.assert_(title.startswith("Hello, world! XXXXX"), title)
        self.assertEqual(test, 'setenv-value')
        self.assert_(path.endswith('fakepath'), path)

    def test_issue_8(self):
        """Test that the module works with 'python -m'."""
        module = 'spt_issue_8'
        pypath = os.environ.get('PYTHONPATH', None)
        dir = tempfile.mkdtemp()
        os.environ['PYTHONPATH'] = dir + os.pathsep + (pypath or '')
        try:
            f = open(dir + '/' + module + '.py', 'w')
            try:
                f.write(
                    self.to3(self._clean_whitespaces(r"""
                        import setproctitle
                        setproctitle.setproctitle("Hello, module!")

                        import os
                        print os.getpid()
                        print os.popen("ps -x -o pid,command 2> /dev/null").read()
                    """)))
            finally:
                f.close()

            rv = self.run_script(args="-m " + module)
            lines = filter(None, rv.splitlines())
            pid = lines.pop(0)
            pids = dict([r.strip().split(None, 1) for r in lines])

            title = self._clean_up_title(pids[pid])
            self.assertEqual(title, "Hello, module!")

        finally:
            shutil.rmtree(dir, ignore_errors=True)
            if pypath is not None:
                os.environ['PYTHONPATH'] = pypath
            else:
                del os.environ['PYTHONPATH']

    def test_unicode(self):
        """Title can contain unicode characters."""
        snowman = u'\u2603'
        try:
            snowman.encode(sys.getdefaultencoding())
        except UnicodeEncodeError:
            raise SkipTest("default encoding '%s' can't deal with snowmen"
                    % sys.getdefaultencoding())

        try:
            snowman.encode(sys.getfilesystemencoding())
        except UnicodeEncodeError:
            raise SkipTest("file system encoding '%s' can't deal with snowmen"
                    % sys.getfilesystemencoding())

        rv = self.run_script(r"""
            snowman = u'\u2603'

            import setproctitle
            setproctitle.setproctitle("Hello, " + snowman + "!")

            import os
            import locale
            from subprocess import Popen, PIPE
            print os.getpid()
            proc = Popen("ps -x -o pid,command 2> /dev/null", shell=True,
                close_fds=True, stdout=PIPE, stderr=PIPE)
            buf = proc.stdout.read()
            print buf.decode(locale.getpreferredencoding(), 'replace')
        """)
        lines = filter(None, rv.splitlines())
        pid = lines.pop(0)
        pids = dict([r.strip().split(None, 1) for r in lines])

        snowmen = [
            u'\u2603',          # ps supports unicode
            r'\M-b\M^X\M^C',    # ps output on BSD
            r'M-bM^XM^C',       # ps output on some Darwin < 11.2
            u'\ufffdM^XM^C',    # ps output on Darwin 11.2
        ]
        title = self._clean_up_title(pids[pid])
        for snowman in snowmen:
            if title == "Hello, " + snowman + "!":
                break
        else:
            self.fail("unexpected ps output: %r" % title)

    def test_weird_args(self):
        """No problem with encoded arguments."""
        euro = u'\u20ac'
        snowman = u'\u2603'
        try:
            rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle("Hello, weird args!")

            import os
            print os.getpid()
            print os.popen("ps -x -o pid,command 2> /dev/null").read()
            """, args=u" ".join(["-", "hello", euro, snowman]))
        except TypeError:
            raise SkipTest(
                "apparently we can't pass unicode args to a program")

        lines = filter(None, rv.splitlines())
        pid = lines.pop(0)
        pids = dict([r.strip().split(None, 1) for r in lines])

        title = self._clean_up_title(pids[pid])
        self.assertEqual(title, "Hello, weird args!")

    def test_weird_path(self):
        """No problem with encoded argv[0] path."""
        self._check_4388()
        euro = u'\u20ac'
        snowman = u'\u2603'
        tdir = tempfile.mkdtemp()
        dir = tdir + "/" + euro + "/" + snowman
        try:
            try:
                os.makedirs(dir)
            except UnicodeEncodeError:
                raise SkipTest("file system doesn't support unicode")

            exc = dir + "/python"
            os.symlink(sys.executable, exc)

            rv = self.run_script(r"""
                import setproctitle
                setproctitle.setproctitle("Hello, weird path!")

                import os
                print os.getpid()
                print os.popen("ps -x -o pid,command 2> /dev/null").read()
                """,
                args=u" ".join(["-", "foo", "bar", "baz"]),
                executable=exc)
            lines = filter(None, rv.splitlines())
            pid = lines.pop(0)
            pids = dict([r.strip().split(None, 1) for r in lines])

            title = self._clean_up_title(pids[pid])
            self.assertEqual(title, "Hello, weird path!")
        finally:
            shutil.rmtree(tdir, ignore_errors=True)

    def test_embedded(self):
        """Check the module works with embedded Python.
        """
        if IS_PYPY:
            raise SkipTest("skip test, pypy")

        if not os.path.exists('/proc/%s/cmdline' % os.getpid()):
            raise SkipTest("known failure: '/proc/PID/cmdline' not available")

        exe = os.environ.get('ROOT_PATH', '.') \
            + ('/tests/pyrun%s' % sys.version_info[0])
        if not os.path.exists(exe):
            raise Exception('test program not found: %s' % exe)

        rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle("Hello, embedded!")

            import os
            print os.getpid()
            print os.popen("ps -x -o pid,command 2> /dev/null").read()
            """,
            executable=exe)
        lines = filter(None, rv.splitlines())
        pid = lines.pop(0)
        pids = dict([r.strip().split(None, 1) for r in lines])

        title = self._clean_up_title(pids[pid])
        self.assertEqual(title, "Hello, embedded!")

    def test_embedded_many_args(self):
        """Check more complex cmdlines are handled in embedded env too."""
        if IS_PYPY:
            raise SkipTest("skip test, pypy")

        if not os.path.exists('/proc/%s/cmdline' % os.getpid()):
            raise SkipTest("known failure: '/proc/PID/cmdline' not available")

        exe = os.environ.get('ROOT_PATH', '.') \
            + ('/tests/pyrun%s' % sys.version_info[0])
        if not os.path.exists(exe):
            raise Exception('test program not found: %s' % exe)

        rv = self.run_script(r"""
            import setproctitle
            setproctitle.setproctitle("Hello, embedded!")

            import os
            print os.getpid()
            print os.popen("ps -x -o pid,command 2> /dev/null").read()
            """,
            executable=exe,
            args=u" ".join(["foo", "bar", "baz"]))
        lines = filter(None, rv.splitlines())
        pid = lines.pop(0)
        pids = dict([r.strip().split(None, 1) for r in lines])

        title = self._clean_up_title(pids[pid])
        self.assertEqual(title, "Hello, embedded!")

    def test_noenv(self):
        """Check that SPT_NOENV avoids clobbering environ."""
        if not os.path.exists('/proc/self/environ'):
            raise SkipTest("'/proc/self/environ' not available")

        env = os.environ.copy()
        env['SPT_TESTENV'] = 'testenv'
        rv = self.run_script("""
            import os
            os.environ['SPT_NOENV'] = "1"

            cmdline_len = len(open('/proc/self/cmdline').read())
            print cmdline_len
            print 'SPT_TESTENV=testenv' in open('/proc/self/environ').read()

            import setproctitle
            setproctitle.setproctitle('X' * cmdline_len * 10)

            title = open('/proc/self/cmdline').read().rstrip()
            print title
            print len(title)

            print 'SPT_TESTENV=testenv' in open('/proc/self/environ').read()
        """, env=env)
        lines = rv.splitlines()
        cmdline_len = int(lines[0])
        self.assertEqual(lines[1], 'True', "can't verify testenv")
        title = lines[2]
        self.assert_('XXX' in self._clean_up_title(title),
            "title not set as expected")
        title_len = int(lines[3])
        self.assertEqual(lines[4], 'True', "env has been clobbered")
        self.assert_(title_len <= cmdline_len,
            "title (len %s) not limited to argv (len %s)"
            % (title_len, cmdline_len))


    def run_script(self, script=None, args=None, executable=None, env=None):
        """run a script in a separate process.

        if the script completes successfully, return its ``stdout``,
        else fail the test.
        """
        if executable is None:
            executable = sys.executable

        cmdline = executable
        if args:
            cmdline = cmdline + " " + args

        proc = Popen(cmdline,
                stdin=PIPE, stdout=PIPE, stderr=PIPE,
                env=env, shell=True, close_fds=True)

        if script is not None:
            script = self._clean_whitespaces(script)
            script = self.to3(script)
            if IS_PY3K:
                script = script.encode()

        out, err = proc.communicate(script)
        if 0 != proc.returncode:
            print out
            print err
            self.fail("test script failed")

        # Py3 subprocess generates bytes strings.
        if IS_PY3K:
            out = out.decode()

        return out

    def to3(self, script):
        """Convert a script to Python3 if required."""
        if not IS_PY3K:
            return script

        script = script.encode()
        f = tempfile.NamedTemporaryFile(suffix=".py")
        try:
            f.write(script)
            f.flush()

            # 2to3 is way too chatty
            import logging
            logging.basicConfig(filename=os.devnull)

            from lib2to3.main import main
            if main("lib2to3.fixes", ['--no-diffs', '-w', '-n', f.name]):
                raise Exception('py3 conversion failed')

            ff = open(f.name)
            try:
                return ff.read()
            finally:
                ff.close()

        finally:
            f.close()

    def _clean_whitespaces(self, script):
        """clean up a script in a string

        Remove the amount of whitelines found in the first nonblank line
        """
        script = script.splitlines(True)
        while script and script[0].isspace():
            script.pop(0)

        if not script:
            raise ValueError("empty script")

        line1 = script[0]
        spaces = script[0][:-len(script[0].lstrip())]
        assert spaces.isspace()

        for i, line in enumerate(script):
            if line.isspace(): continue
            if line.find(spaces) != 0:
                raise ValueError("inconsistent spaces at line %d (%s)"
                        % (i + 1, line.strip()))
            script[i] = line[len(spaces):]

        # drop final blank lines: they produce import errors
        while script and script[-1].isspace():
            del script[-1]

        assert not script[0][0].isspace(), script[0]
        return ''.join(script)

    def _clean_up_title(self, title):
        """Clean up a string from the prefix added by the platform.
        """
        # BSD's setproctitle decorates the title with the process name.
        if 'bsd' in sys.platform:
            procname = os.path.basename(sys.executable)
            title = ' '.join([t for t in title.split(' ')
                if procname not in t])  

        return title

    def _check_4388(self):
        """Check if the system is affected by bug #4388.

        If positive, unicode chars in the cmdline are not reliable,
        so bail out.

        see: http://bugs.python.org/issue4388
        """
        if not IS_PY3K:
            return

        if sys.getfilesystemencoding() == 'ascii':
            # in this case the char below would get translated in some
            # inconsistent way.
            # I'm not getting why the FS encoding is involved in process
            # spawning, the whole story just seems a gigantic can of worms.
            return

        from subprocess import Popen, PIPE
        p = Popen([sys.executable, '-c', "ord('\xe9')"], stderr=PIPE)
        p.communicate()
        if p.returncode:
            raise SkipTest("bug #4388 detected")


if __name__ == '__main__':
    unittest.main()