Commit 54c6c65f authored by Paul Winkler's avatar Paul Winkler

- Backed out workaround for 2057; on second thought,

  adding a getPhysicalPath() on a request just smells bad,
  and it's not that hard to roll your own root object.

- Fixed thinko with mutable default arg, duh.

- Improved docstrings.
parent 894ba313
...@@ -205,10 +205,6 @@ Zope Changes ...@@ -205,10 +205,6 @@ Zope Changes
Bugs Fixed Bugs Fixed
- Collector #2057: Allow Testing.makerequest to work with
any acquisition-supporting root object, not just Zope2.app.
Formerly, if you did that, getPhysicalPath() was broken.
- Collector #2051: Applied patch by Yoshinori Okuji to fix some - Collector #2051: Applied patch by Yoshinori Okuji to fix some
XML export/import problems, including tests for that feature. XML export/import problems, including tests for that feature.
......
...@@ -14,23 +14,6 @@ ...@@ -14,23 +14,6 @@
Facilitates unit tests which requires an acquirable REQUEST from Facilitates unit tests which requires an acquirable REQUEST from
ZODB objects ZODB objects
Usage:
import makerequest
app = makerequest.makerequest(Zope2.app())
You can optionally pass stdout to be used by the response;
default is sys.stdout.
You can optionally pass an environ mapping to be used in the request.
Default is a fresh dictionary. Passing os.environ is not recommended;
tests should not pollute the real os.environ.
If you don't want to start a zope app in your test, you can wrap other
objects, but it must support acquisition and you should only wrap
your root object.
$Id$ $Id$
""" """
...@@ -41,7 +24,34 @@ from ZPublisher.HTTPRequest import HTTPRequest ...@@ -41,7 +24,34 @@ from ZPublisher.HTTPRequest import HTTPRequest
from ZPublisher.HTTPResponse import HTTPResponse from ZPublisher.HTTPResponse import HTTPResponse
from ZPublisher.BaseRequest import RequestContainer from ZPublisher.BaseRequest import RequestContainer
def makerequest(app, stdout=stdout, environ={}): def makerequest(app, stdout=stdout, environ=None):
"""
Adds an HTTPRequest at app.REQUEST, and returns
app.__of__(app.REQUEST). Useful for tests that need to acquire
REQUEST.
Usage:
import makerequest
app = makerequest.makerequest(app)
You should only wrap the object used as 'root' in your tests.
app is commonly a Zope2.app(), but that's not strictly necessary
and frequently may be overkill; you can wrap other objects as long
as they support acquisition and provide enough of the features of
Zope2.app for your tests to run. For example, if you want to call
getPhysicalPath() on child objects, app must provide a
non-recursive implementation of getPhysicalPath().
*stdout* is an optional file-like object and is used by
REQUEST.RESPONSE. The default is sys.stdout.
*environ* is an optional mapping to be used in the request.
Default is a fresh dictionary. Passing os.environ is not
recommended; tests should not pollute the real os.environ.
"""
if environ is None:
environ = {}
resp = HTTPResponse(stdout=stdout) resp = HTTPResponse(stdout=stdout)
environ.setdefault('SERVER_NAME', 'foo') environ.setdefault('SERVER_NAME', 'foo')
environ.setdefault('SERVER_PORT', '80') environ.setdefault('SERVER_PORT', '80')
...@@ -56,14 +66,4 @@ def makerequest(app, stdout=stdout, environ={}): ...@@ -56,14 +66,4 @@ def makerequest(app, stdout=stdout, environ={}):
setDefaultSkin(req) setDefaultSkin(req)
requestcontainer = RequestContainer(REQUEST = req) requestcontainer = RequestContainer(REQUEST = req)
# Workaround for collector 2057: ensure that we don't break
# getPhysicalPath if app has that method.
# We could instead fix Traversable.getPhysicalPath() to check for
# existence of p.getPhysicalPath before calling it; but it's such
# a commonly called method that I don't want to impact performance
# for something that AFAICT only affects makerequest() in
# practice.
if getattr(app, 'getPhysicalPath', None) is not None:
requestcontainer.getPhysicalPath = lambda: ()
return app.__of__(requestcontainer) return app.__of__(requestcontainer)
...@@ -33,9 +33,13 @@ class MakerequestTests(unittest.TestCase): ...@@ -33,9 +33,13 @@ class MakerequestTests(unittest.TestCase):
self.failUnless(hasattr(item, 'REQUEST')) self.failUnless(hasattr(item, 'REQUEST'))
def test_dont_break_getPhysicalPath(self): def test_dont_break_getPhysicalPath(self):
# see http://www.zope.org/Collectors/Zope/2057 # see http://www.zope.org/Collectors/Zope/2057. If you want
item = SimpleItem() # to call getPhysicalPath() on the wrapped object, be sure
self.assertEqual(item.getPhysicalPath(), ('',)) # that it provides a non-recursive getPhysicalPath().
class FakeRoot(SimpleItem):
def getPhysicalPath(self):
return ('foo',)
item = FakeRoot()
self.assertEqual(item.getPhysicalPath(), self.assertEqual(item.getPhysicalPath(),
makerequest(item).getPhysicalPath()) makerequest(item).getPhysicalPath())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment