/usr/share/pyshared/pygopherd/testutil.py is in pygopherd 2.0.18.3+nmu2.
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 | #!/usr/bin/python
# Python-based gopher server
# Module: test utilities
# COPYRIGHT #
# Copyright (C) 2002 John Goerzen
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# END OF COPYRIGHT #
from pygopherd import initialization, logger
from pygopherd.protocols import ProtocolMultiplexer
from StringIO import StringIO
import os
def getconfig():
config = initialization.initconffile('conf/pygopherd.conf')
config.set("pygopherd", "root", os.path.abspath('./testdata'))
return config
def getstringlogger():
config = getconfig()
config.set('logger', 'logmethod', 'file')
logger.init(config)
stringfile = StringIO()
logger.setlogfile(stringfile)
return stringfile
def gettestingserver(config = None):
config = config or getconfig()
config.set('pygopherd', 'port', '64777')
s = initialization.getserverobject(config)
s.server_close()
return s
def gettestinghandler(rfile, wfile, config = None):
"""Creates a testing handler with input from rfile. Fills in
other stuff with fake values."""
config = config or getconfig()
# Kludge to pass to the handler init.
class requestClass:
def __init__(self, rfile, wfile):
self.rfile = rfile
self.wfile = wfile
def makefile(self, mode, bufsize):
if mode[0] == 'r':
return self.rfile
return self.wfile
class handlerClass(initialization.GopherRequestHandler):
def __init__(self, request, client_address, server):
self.request = request
self.client_address = client_address
self.server = server
self.setup()
s = gettestingserver(config)
rhandler = handlerClass(requestClass(rfile, wfile),
('10.77.77.77', '7777'),
s)
return rhandler
def gettestingprotocol(request, config = None):
config = config or getconfig()
rfile = StringIO(request)
# Pass fake rfile, wfile to gettestinghandler -- they'll be closed before
# we can get the info, and some protocols need to read more from them.
handler = gettestinghandler(StringIO(), StringIO(), config)
# Now override.
handler.rfile = rfile
return ProtocolMultiplexer.getProtocol(rfile.readline(),
handler.server,
handler,
handler.rfile,
handler.wfile,
config)
|