480 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			480 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Python
		
	
	
	
import py
 | 
						|
from py.path import SvnAuth
 | 
						|
import svntestbase
 | 
						|
from threading import Thread
 | 
						|
import time
 | 
						|
from py.__.misc.killproc import killproc
 | 
						|
from py.__.conftest import option
 | 
						|
 | 
						|
def make_repo_auth(repo, userdata):
 | 
						|
    """ write config to repo
 | 
						|
    
 | 
						|
        user information in userdata is used for auth
 | 
						|
        userdata has user names as keys, and a tuple (password, readwrite) as
 | 
						|
        values, where 'readwrite' is either 'r' or 'rw'
 | 
						|
    """
 | 
						|
    confdir = py.path.local(repo).join('conf')
 | 
						|
    confdir.join('svnserve.conf').write('''\
 | 
						|
[general]
 | 
						|
anon-access = none
 | 
						|
password-db = passwd
 | 
						|
authz-db = authz
 | 
						|
realm = TestRepo
 | 
						|
''')
 | 
						|
    authzdata = '[/]\n'
 | 
						|
    passwddata = '[users]\n'
 | 
						|
    for user in userdata:
 | 
						|
        authzdata += '%s = %s\n' % (user, userdata[user][1])
 | 
						|
        passwddata += '%s = %s\n' % (user, userdata[user][0])
 | 
						|
    confdir.join('authz').write(authzdata)
 | 
						|
    confdir.join('passwd').write(passwddata)
 | 
						|
 | 
						|
def serve_bg(repopath):
 | 
						|
    pidfile = py.path.local(repopath).join('pid')
 | 
						|
    port = 10000
 | 
						|
    e = None
 | 
						|
    while port < 10010:
 | 
						|
        cmd = 'svnserve -d -T --listen-port=%d --pid-file=%s -r %s' % (
 | 
						|
               port, pidfile, repopath)
 | 
						|
        try:
 | 
						|
            py.process.cmdexec(cmd)
 | 
						|
        except py.process.cmdexec.Error, e:
 | 
						|
            pass
 | 
						|
        else:
 | 
						|
            # XXX we assume here that the pid file gets written somewhere, I
 | 
						|
            # guess this should be relatively safe... (I hope, at least?)
 | 
						|
            while True:
 | 
						|
                pid = pidfile.read()
 | 
						|
                if pid:
 | 
						|
                    break
 | 
						|
                # needs a bit more time to boot
 | 
						|
                time.sleep(0.1)
 | 
						|
            return port, int(pid)
 | 
						|
        port += 1
 | 
						|
    raise IOError('could not start svnserve: %s' % (e,))
 | 
						|
 | 
						|
class TestSvnAuth(object):
 | 
						|
    def test_basic(self):
 | 
						|
        auth = py.path.SvnAuth('foo', 'bar')
 | 
						|
        assert auth.username == 'foo'
 | 
						|
        assert auth.password == 'bar'
 | 
						|
        assert str(auth)
 | 
						|
 | 
						|
    def test_makecmdoptions_uname_pw_makestr(self):
 | 
						|
        auth = py.path.SvnAuth('foo', 'bar')
 | 
						|
        assert auth.makecmdoptions() == '--username="foo" --password="bar"'
 | 
						|
 | 
						|
    def test_makecmdoptions_quote_escape(self):
 | 
						|
        auth = py.path.SvnAuth('fo"o', '"ba\'r"')
 | 
						|
        assert auth.makecmdoptions() == '--username="fo\\"o" --password="\\"ba\'r\\""'
 | 
						|
 | 
						|
    def test_makecmdoptions_no_cache_auth(self):
 | 
						|
        auth = py.path.SvnAuth('foo', 'bar', cache_auth=False)
 | 
						|
        assert auth.makecmdoptions() == ('--username="foo" --password="bar" '
 | 
						|
                                         '--no-auth-cache')
 | 
						|
 | 
						|
    def test_makecmdoptions_no_interactive(self):
 | 
						|
        auth = py.path.SvnAuth('foo', 'bar', interactive=False)
 | 
						|
        assert auth.makecmdoptions() == ('--username="foo" --password="bar" '
 | 
						|
                                         '--non-interactive')
 | 
						|
 | 
						|
    def test_makecmdoptions_no_interactive_no_cache_auth(self):
 | 
						|
        auth = py.path.SvnAuth('foo', 'bar', cache_auth=False,
 | 
						|
                               interactive=False)
 | 
						|
        assert auth.makecmdoptions() == ('--username="foo" --password="bar" '
 | 
						|
                                         '--no-auth-cache --non-interactive')
 | 
						|
 | 
						|
class svnwc_no_svn(py.path.svnwc):
 | 
						|
    def __init__(self, *args, **kwargs):
 | 
						|
        self.commands = []
 | 
						|
        super(svnwc_no_svn, self).__init__(*args, **kwargs)
 | 
						|
 | 
						|
    def _svn(self, *args):
 | 
						|
        self.commands.append(args)
 | 
						|
 | 
						|
class TestSvnWCAuth(object):
 | 
						|
    def setup_method(self, meth):
 | 
						|
        self.auth = SvnAuth('user', 'pass', cache_auth=False)
 | 
						|
 | 
						|
    def test_checkout(self):
 | 
						|
        wc = svnwc_no_svn('foo', auth=self.auth)
 | 
						|
        wc.checkout('url')
 | 
						|
        assert wc.commands[0][-1] == ('--username="user" --password="pass" '
 | 
						|
                                      '--no-auth-cache')
 | 
						|
 | 
						|
    def test_commit(self):
 | 
						|
        wc = svnwc_no_svn('foo', auth=self.auth)
 | 
						|
        wc.commit('msg')
 | 
						|
        assert wc.commands[0][-1] == ('--username="user" --password="pass" '
 | 
						|
                                      '--no-auth-cache')
 | 
						|
 | 
						|
    def test_checkout_no_cache_auth(self):
 | 
						|
        wc = svnwc_no_svn('foo', auth=self.auth)
 | 
						|
        wc.checkout('url')
 | 
						|
        assert wc.commands[0][-1] == ('--username="user" --password="pass" '
 | 
						|
                                      '--no-auth-cache')
 | 
						|
 | 
						|
    def test_checkout_auth_from_constructor(self):
 | 
						|
        wc = svnwc_no_svn('foo', auth=self.auth)
 | 
						|
        wc.checkout('url')
 | 
						|
        assert wc.commands[0][-1] == ('--username="user" --password="pass" '
 | 
						|
                                      '--no-auth-cache')
 | 
						|
 | 
						|
class svnurl_no_svn(py.path.svnurl):
 | 
						|
    cmdexec_output = 'test'
 | 
						|
    popen_output = 'test'
 | 
						|
 | 
						|
    def _cmdexec(self, cmd):
 | 
						|
        self.commands.append(cmd)
 | 
						|
        return self.cmdexec_output
 | 
						|
 | 
						|
    def _popen(self, cmd):
 | 
						|
        self.commands.append(cmd)
 | 
						|
        return self.popen_output
 | 
						|
 | 
						|
class TestSvnURLAuth(object):
 | 
						|
    def setup_method(self, meth):
 | 
						|
        svnurl_no_svn.commands = []
 | 
						|
        self.auth = SvnAuth('foo', 'bar')
 | 
						|
 | 
						|
    def test_init(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn')
 | 
						|
        assert u.auth is None
 | 
						|
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        assert u.auth is self.auth
 | 
						|
 | 
						|
    def test_new(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn/foo', auth=self.auth)
 | 
						|
        new = u.new(basename='bar')
 | 
						|
        assert new.auth is self.auth
 | 
						|
        assert new.url == 'http://foo.bar/svn/bar'
 | 
						|
 | 
						|
    def test_join(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        new = u.join('foo')
 | 
						|
        assert new.auth is self.auth
 | 
						|
        assert new.url == 'http://foo.bar/svn/foo'
 | 
						|
 | 
						|
    def test_listdir(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        u.cmdexec_output = '''\
 | 
						|
   1717 johnny           1529 Nov 04 14:32 LICENSE.txt
 | 
						|
   1716 johnny           5352 Nov 04 14:28 README.txt
 | 
						|
'''
 | 
						|
        paths = u.listdir()
 | 
						|
        assert paths[0].auth is self.auth
 | 
						|
        assert paths[1].auth is self.auth
 | 
						|
        assert paths[0].basename == 'LICENSE.txt'
 | 
						|
 | 
						|
    def test_info(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn/LICENSE.txt', auth=self.auth)
 | 
						|
        def dirpath(self):
 | 
						|
            return self
 | 
						|
        u.cmdexec_output = '''\
 | 
						|
   1717 johnny           1529 Nov 04 14:32 LICENSE.txt
 | 
						|
   1716 johnny           5352 Nov 04 14:28 README.txt
 | 
						|
'''
 | 
						|
        org_dp = u.__class__.dirpath
 | 
						|
        u.__class__.dirpath = dirpath
 | 
						|
        try:
 | 
						|
            info = u.info()
 | 
						|
        finally:
 | 
						|
            u.dirpath = org_dp
 | 
						|
        assert info.size == 1529
 | 
						|
 | 
						|
    def test_open(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        foo = u.join('foo')
 | 
						|
        foo.check = lambda *args, **kwargs: True
 | 
						|
        ret = foo.open()
 | 
						|
        assert ret == 'test'
 | 
						|
        assert '--username="foo" --password="bar"' in foo.commands[0]
 | 
						|
 | 
						|
    def test_dirpath(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn/foo', auth=self.auth)
 | 
						|
        parent = u.dirpath()
 | 
						|
        assert parent.auth is self.auth
 | 
						|
 | 
						|
    def test_mkdir(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        u.mkdir('foo', msg='created dir foo')
 | 
						|
        assert '--username="foo" --password="bar"' in u.commands[0]
 | 
						|
 | 
						|
    def test_copy(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        u2 = svnurl_no_svn('http://foo.bar/svn2')
 | 
						|
        u.copy(u2, 'copied dir')
 | 
						|
        assert '--username="foo" --password="bar"' in u.commands[0]
 | 
						|
 | 
						|
    def test_rename(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn/foo', auth=self.auth)
 | 
						|
        u.rename('http://foo.bar/svn/bar', 'moved foo to bar')
 | 
						|
        assert '--username="foo" --password="bar"' in u.commands[0]
 | 
						|
 | 
						|
    def test_remove(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn/foo', auth=self.auth)
 | 
						|
        u.remove(msg='removing foo')
 | 
						|
        assert '--username="foo" --password="bar"' in u.commands[0]
 | 
						|
 | 
						|
    def test_export(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        target = py.path.local('/foo')
 | 
						|
        u.export(target)
 | 
						|
        assert '--username="foo" --password="bar"' in u.commands[0]
 | 
						|
 | 
						|
    def test_log(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn/foo', auth=self.auth)
 | 
						|
        u.popen_output = py.std.StringIO.StringIO('''\
 | 
						|
<?xml version="1.0"?>
 | 
						|
<log>
 | 
						|
<logentry revision="51381">
 | 
						|
<author>guido</author>
 | 
						|
<date>2008-02-11T12:12:18.476481Z</date>
 | 
						|
<msg>Creating branch to work on auth support for py.path.svn*.
 | 
						|
</msg>
 | 
						|
</logentry>
 | 
						|
</log>
 | 
						|
''')
 | 
						|
        u.check = lambda *args, **kwargs: True
 | 
						|
        ret = u.log(10, 20, verbose=True)
 | 
						|
        assert '--username="foo" --password="bar"' in u.commands[0]
 | 
						|
        assert len(ret) == 1
 | 
						|
        assert int(ret[0].rev) == 51381
 | 
						|
        assert ret[0].author == 'guido'
 | 
						|
 | 
						|
    def test_propget(self):
 | 
						|
        u = svnurl_no_svn('http://foo.bar/svn', auth=self.auth)
 | 
						|
        u.propget('foo')
 | 
						|
        assert '--username="foo" --password="bar"' in u.commands[0]
 | 
						|
 | 
						|
class SvnAuthFunctionalTestBase(object):
 | 
						|
    def setup_class(cls):
 | 
						|
        if not option.runslowtests:
 | 
						|
            py.test.skip('skipping slow functional tests - use --runslowtests '
 | 
						|
                         'to override')
 | 
						|
 | 
						|
    def setup_method(self, meth):
 | 
						|
        func_name = meth.im_func.func_name
 | 
						|
        self.repo = svntestbase.make_test_repo('TestSvnAuthFunctional.%s' % (
 | 
						|
                                               func_name,))
 | 
						|
        repodir = str(self.repo)[7:]
 | 
						|
        if py.std.sys.platform == 'win32':
 | 
						|
            # remove trailing slash...
 | 
						|
            repodir = repodir[1:]
 | 
						|
        self.repopath = py.path.local(repodir)
 | 
						|
        self.temppath = py.test.ensuretemp('TestSvnAuthFunctional.%s' % (
 | 
						|
                                           func_name))
 | 
						|
        self.auth = py.path.SvnAuth('johnny', 'foo', cache_auth=False,
 | 
						|
                                    interactive=False)
 | 
						|
 | 
						|
    def _start_svnserve(self):
 | 
						|
        make_repo_auth(self.repopath, {'johnny': ('foo', 'rw')})
 | 
						|
        try:
 | 
						|
            return serve_bg(self.repopath.dirpath())
 | 
						|
        except IOError, e:
 | 
						|
            py.test.skip(str(e))
 | 
						|
 | 
						|
class TestSvnWCAuthFunctional(SvnAuthFunctionalTestBase):
 | 
						|
    def test_checkout_constructor_arg(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            wc = py.path.svnwc(self.temppath, auth=self.auth)
 | 
						|
            wc.checkout(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename))
 | 
						|
            assert wc.join('.svn').check()
 | 
						|
        finally:
 | 
						|
            # XXX can we do this in a teardown_method too? not sure if that's
 | 
						|
            # guaranteed to get called...
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_checkout_function_arg(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            wc = py.path.svnwc(self.temppath, auth=self.auth)
 | 
						|
            wc.checkout(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename))
 | 
						|
            assert wc.join('.svn').check()
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_checkout_failing_non_interactive(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            auth = py.path.SvnAuth('johnny', 'bar', cache_auth=False,
 | 
						|
                                   interactive=False)
 | 
						|
            wc = py.path.svnwc(self.temppath, auth)
 | 
						|
            py.test.raises(Exception,
 | 
						|
                ("wc.checkout('svn://localhost:%s/%s' % "
 | 
						|
                 "(port, self.repopath.basename))"))
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_log(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            wc = py.path.svnwc(self.temppath, self.auth)
 | 
						|
            wc.checkout(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename))
 | 
						|
            foo = wc.ensure('foo.txt')
 | 
						|
            wc.commit('added foo.txt')
 | 
						|
            log = foo.log()
 | 
						|
            assert len(log) == 1
 | 
						|
            assert log[0].msg == 'added foo.txt'
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_switch(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            wc = py.path.svnwc(self.temppath, auth=self.auth)
 | 
						|
            svnurl = 'svn://localhost:%s/%s' % (port, self.repopath.basename)
 | 
						|
            wc.checkout(svnurl)
 | 
						|
            wc.ensure('foo', dir=True).ensure('foo.txt').write('foo')
 | 
						|
            wc.commit('added foo dir with foo.txt file')
 | 
						|
            wc.ensure('bar', dir=True)
 | 
						|
            wc.commit('added bar dir')
 | 
						|
            bar = wc.join('bar')
 | 
						|
            bar.switch(svnurl + '/foo')
 | 
						|
            assert bar.join('foo.txt')
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_update(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            wc1 = py.path.svnwc(self.temppath.ensure('wc1', dir=True),
 | 
						|
                                auth=self.auth)
 | 
						|
            wc2 = py.path.svnwc(self.temppath.ensure('wc2', dir=True),
 | 
						|
                                auth=self.auth)
 | 
						|
            wc1.checkout(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename))
 | 
						|
            wc2.checkout(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename))
 | 
						|
            wc1.ensure('foo', dir=True)
 | 
						|
            wc1.commit('added foo dir')
 | 
						|
            wc2.update()
 | 
						|
            assert wc2.join('foo').check()
 | 
						|
 | 
						|
            auth = py.path.SvnAuth('unknown', 'unknown', interactive=False)
 | 
						|
            wc2.auth = auth
 | 
						|
            py.test.raises(Exception, 'wc2.update()')
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_lock_unlock_status(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            wc = py.path.svnwc(self.temppath, auth=self.auth)
 | 
						|
            wc.checkout(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename,))
 | 
						|
            wc.ensure('foo', file=True)
 | 
						|
            wc.commit('added foo file')
 | 
						|
            foo = wc.join('foo')
 | 
						|
            foo.lock()
 | 
						|
            status = foo.status()
 | 
						|
            assert status.locked
 | 
						|
            foo.unlock()
 | 
						|
            status = foo.status()
 | 
						|
            assert not status.locked
 | 
						|
 | 
						|
            auth = py.path.SvnAuth('unknown', 'unknown', interactive=False)
 | 
						|
            foo.auth = auth
 | 
						|
            py.test.raises(Exception, 'foo.lock()')
 | 
						|
            py.test.raises(Exception, 'foo.unlock()')
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_diff(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            wc = py.path.svnwc(self.temppath, auth=self.auth)
 | 
						|
            wc.checkout(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename,))
 | 
						|
            wc.ensure('foo', file=True)
 | 
						|
            wc.commit('added foo file')
 | 
						|
            wc.update()
 | 
						|
            rev = int(wc.status().rev)
 | 
						|
            foo = wc.join('foo')
 | 
						|
            foo.write('bar')
 | 
						|
            diff = foo.diff()
 | 
						|
            assert '\n+bar\n' in diff
 | 
						|
            foo.commit('added some content')
 | 
						|
            diff = foo.diff()
 | 
						|
            assert not diff
 | 
						|
            diff = foo.diff(rev=rev)
 | 
						|
            assert '\n+bar\n' in diff
 | 
						|
 | 
						|
            auth = py.path.SvnAuth('unknown', 'unknown', interactive=False)
 | 
						|
            foo.auth = auth
 | 
						|
            py.test.raises(Exception, 'foo.diff(rev=rev)')
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
class TestSvnURLAuthFunctional(SvnAuthFunctionalTestBase):
 | 
						|
    def test_listdir(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            u = py.path.svnurl(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename),
 | 
						|
                auth=self.auth)
 | 
						|
            u.ensure('foo')
 | 
						|
            paths = u.listdir()
 | 
						|
            assert len(paths) == 1
 | 
						|
            assert paths[0].auth is self.auth
 | 
						|
 | 
						|
            auth = SvnAuth('foo', 'bar', interactive=False)
 | 
						|
            u = py.path.svnurl(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename),
 | 
						|
                auth=auth)
 | 
						|
            py.test.raises(Exception, 'u.listdir()')
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_copy(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            u = py.path.svnurl(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename),
 | 
						|
                auth=self.auth)
 | 
						|
            foo = u.ensure('foo')
 | 
						|
            bar = u.join('bar')
 | 
						|
            foo.copy(bar)
 | 
						|
            assert bar.check()
 | 
						|
            assert bar.auth is self.auth
 | 
						|
 | 
						|
            auth = SvnAuth('foo', 'bar', interactive=False)
 | 
						|
            u = py.path.svnurl(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename),
 | 
						|
                auth=auth)
 | 
						|
            foo = u.join('foo')
 | 
						|
            bar = u.join('bar')
 | 
						|
            py.test.raises(Exception, 'foo.copy(bar)')
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    def test_write_read(self):
 | 
						|
        port, pid = self._start_svnserve()
 | 
						|
        try:
 | 
						|
            u = py.path.svnurl(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename),
 | 
						|
                auth=self.auth)
 | 
						|
            foo = u.ensure('foo')
 | 
						|
            fp = foo.open()
 | 
						|
            try:
 | 
						|
                data = fp.read()
 | 
						|
            finally:
 | 
						|
                fp.close()
 | 
						|
            assert data == ''
 | 
						|
 | 
						|
            auth = SvnAuth('foo', 'bar', interactive=False)
 | 
						|
            u = py.path.svnurl(
 | 
						|
                'svn://localhost:%s/%s' % (port, self.repopath.basename),
 | 
						|
                auth=auth)
 | 
						|
            foo = u.join('foo')
 | 
						|
            py.test.raises(Exception, 'foo.open()')
 | 
						|
        finally:
 | 
						|
            killproc(pid)
 | 
						|
 | 
						|
    # XXX rinse, repeat... :|
 |