/usr/share/pyshared/zdaemon/tests/tests.py is in python-zdaemon 2.0.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | ##############################################################################
#
# Copyright (c) 2004 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
import doctest
import os
import re
import shutil
import subprocess
import sys
import tempfile
import unittest
import ZConfig
import zdaemon
from zope.testing import renormalizing
try:
import pkg_resources
zdaemon_loc = pkg_resources.working_set.find(
pkg_resources.Requirement.parse('zdaemon')).location
zconfig_loc = pkg_resources.working_set.find(
pkg_resources.Requirement.parse('ZConfig')).location
except (ImportError, AttributeError):
zdaemon_loc = os.path.dirname(os.path.dirname(zdaemon.__file__))
zconfig_loc = os.path.dirname(os.path.dirname(ZConfig.__file__))
def make_sure_non_daemon_mode_doesnt_hang_when_program_exits():
"""
The whole awhile bit that waits for a program to start
whouldn't be used on non-daemon mode.
>>> open('conf', 'w').write(
... '''
... <runner>
... program sleep 1
... daemon off
... </runner>
... ''')
>>> system("./zdaemon -Cconf start")
"""
def dont_hang_when_program_doesnt_start():
"""
If a program doesn't start, we don't want to wait for ever.
>>> open('conf', 'w').write(
... '''
... <runner>
... program sleep
... backoff-limit 2
... </runner>
... ''')
>>> system("./zdaemon -Cconf start")
. .
daemon manager not running
"""
def allow_duplicate_arguments():
"""
Wrapper scripts will often embed configuration arguments. This could
cause a problem when zdaemon reinvokes itself, passing it's own set of
configuration arguments. To deal with this, we'll allow duplicate
arguments that have the same values.
>>> open('conf', 'w').write(
... '''
... <runner>
... program sleep 10
... </runner>
... ''')
>>> system("./zdaemon -Cconf -Cconf -Cconf start")
. .
daemon process started, pid=21446
>>> system("./zdaemon -Cconf -Cconf -Cconf stop")
. .
daemon process stopped
"""
def setUp(test):
test.globs['_td'] = td = []
here = os.getcwd()
td.append(lambda : os.chdir(here))
tmpdir = tempfile.mkdtemp()
td.append(lambda : shutil.rmtree(tmpdir))
test.globs['tmpdir'] = tmpdir
workspace = tempfile.mkdtemp()
td.append(lambda : shutil.rmtree(workspace))
os.chdir(workspace)
open('zdaemon', 'w').write(zdaemon_template % dict(
python = sys.executable,
zdaemon = zdaemon_loc,
ZConfig = zconfig_loc,
))
os.chmod('zdaemon', 0755)
test.globs.update(dict(
system = system
))
def tearDown(test):
for f in test.globs['_td']:
f()
def system(command, input=''):
p = subprocess.Popen(
command, shell=True,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
if input:
p.stdin.write(input)
p.stdin.close()
print p.stdout.read(),
p.wait()
def checkenv(match):
match = [a for a in match.group(1).split('\n')[:-1]
if a.split('=')[0] in ('HOME', 'LD_LIBRARY_PATH')]
match.sort()
return '\n'.join(match) + '\n'
def test_suite():
return unittest.TestSuite((
doctest.DocTestSuite(
setUp=setUp, tearDown=tearDown,
checker=renormalizing.RENormalizing([
(re.compile('pid=\d+'), 'pid=NNN'),
(re.compile('(\. )+\.?'), '<BLANKLINE>'),
])
),
doctest.DocFileSuite(
'../README.txt',
setUp=setUp, tearDown=tearDown,
checker=renormalizing.RENormalizing([
(re.compile('pid=\d+'), 'pid=NNN'),
(re.compile('(\. )+\.?'), '<BLANKLINE>'),
(re.compile('^env\n((?:.*\n)+)$'), checkenv),
])
),
))
zdaemon_template = """#!%(python)s
import sys
sys.path[0:0] = [
%(zdaemon)r,
%(ZConfig)r,
]
import zdaemon.zdctl
if __name__ == '__main__':
zdaemon.zdctl.main()
"""
|