Skip to content

Commit

Permalink
Use correct import path now that the BBB stuff is gone
Browse files Browse the repository at this point in the history
  • Loading branch information
philikon committed Feb 28, 2006
1 parent 8f1f1f5 commit 03ef104
Show file tree
Hide file tree
Showing 2 changed files with 280 additions and 0 deletions.
150 changes: 150 additions & 0 deletions tests/test_httpfactory.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (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.
#
##############################################################################
"""Tests for the HTTP Publication Request Factory.
$Id: test_httpfactory.py 38357 2005-09-07 20:14:34Z srichter $
"""
from unittest import TestCase, TestSuite, main, makeSuite

from StringIO import StringIO

from zope import component, interface
from zope.publisher.browser import BrowserRequest
from zope.publisher.http import HTTPRequest
from zope.publisher.xmlrpc import XMLRPCRequest
from zope.component.testing import PlacelessSetup

from zope.app.publication.httpfactory import HTTPPublicationRequestFactory
from zope.app.publication.browser import BrowserPublication
from zope.app.publication.http import HTTPPublication
from zope.app.publication.xmlrpc import XMLRPCPublication
from zope.app.testing import ztapi
from zope.app.publication import interfaces
from zope.app.publication.requestpublicationregistry import factoryRegistry
from zope.app.publication.requestpublicationfactories import \
HTTPFactory, SOAPFactory, BrowserFactory, XMLRPCFactory

class DummyRequestFactory(object):
def __call__(self, input_stream, env):
self.input_stream = input_stream
self.env = env
return self

def setPublication(self, pub):
self.pub = pub

class Test(PlacelessSetup, TestCase):

def setUp(self):
super(Test, self).setUp()
self.__factory = HTTPPublicationRequestFactory(None)
self.__env = {
'SERVER_URL': 'http://127.0.0.1',
'HTTP_HOST': '127.0.0.1',
'CONTENT_LENGTH': '0',
'GATEWAY_INTERFACE': 'TestFooInterface/1.0',
}

# Simulate standard configuration
factoryRegistry.register('GET', '*', 'browser', 0, BrowserFactory())
factoryRegistry.register('POST', '*', 'browser', 0, BrowserFactory())
factoryRegistry.register('HEAD', '*', 'browser', 0, BrowserFactory())
factoryRegistry.register('*', '*', 'http', 0, HTTPFactory())
factoryRegistry.register('POST', 'text/xml', 'xmlrpc', 20,
XMLRPCFactory())
factoryRegistry.register('POST', 'text/xml', 'soap', 30,
SOAPFactory())

def test_override(self):
# TODO: making a SOAP request without configuring a SOAP request
# currently generates an XMLRPC request. Not sure what the right thing
# is, but that doesn't seem to be the right thing.
soaprequestfactory = DummyRequestFactory()
interface.directlyProvides(
soaprequestfactory, interfaces.ISOAPRequestFactory)
component.provideUtility(soaprequestfactory)
xmlrpcrequestfactory = DummyRequestFactory()
interface.directlyProvides(
xmlrpcrequestfactory, interfaces.IXMLRPCRequestFactory)
component.provideUtility(xmlrpcrequestfactory)
httprequestfactory = DummyRequestFactory()
interface.directlyProvides(
httprequestfactory, interfaces.IHTTPRequestFactory)
component.provideUtility(httprequestfactory)
browserrequestfactory = DummyRequestFactory()
interface.directlyProvides(
browserrequestfactory, interfaces.IBrowserRequestFactory)
component.provideUtility(browserrequestfactory)
httpfactory = HTTPPublicationRequestFactory(None)
env = self.__env
env['REQUEST_METHOD'] = 'POST'
env['CONTENT_TYPE'] = 'text/xml'
input = StringIO('')
env['HTTP_SOAPACTION'] = 'foo'
self.assertEqual(httpfactory(input, env), soaprequestfactory)
del env['HTTP_SOAPACTION']
self.assertEqual(httpfactory(input, env), xmlrpcrequestfactory)
env['CONTENT_TYPE'] = 'text/foo'
self.assertEqual(
httpfactory(input, env), browserrequestfactory)
env['REQUEST_METHOD'] = 'FLOO'
self.assertEqual(httpfactory(input, env), httprequestfactory)

def test_browser(self):
r = self.__factory(StringIO(''), self.__env)
self.assertEqual(r.__class__, BrowserRequest)
self.assertEqual(r.publication.__class__, BrowserPublication)

for method in ('GET', 'HEAD', 'POST', 'get', 'head', 'post'):
self.__env['REQUEST_METHOD'] = method
r = self.__factory(StringIO(''), self.__env)
self.assertEqual(r.__class__, BrowserRequest)
self.assertEqual(r.publication.__class__, BrowserPublication)

def test_http(self):
for method in ('PUT', 'put', 'ZZZ'):
self.__env['REQUEST_METHOD'] = method
r = self.__factory(StringIO(''), self.__env)
self.assertEqual(r.__class__, HTTPRequest)
self.assertEqual(r.publication.__class__, HTTPPublication)

def test_xmlrpc(self):
self.__env['CONTENT_TYPE'] = 'text/xml'
for method in ('POST', 'post'):
self.__env['REQUEST_METHOD'] = method
r = self.__factory(StringIO(''), self.__env)
self.assertEqual(r.__class__, XMLRPCRequest)
self.assertEqual(r.publication.__class__, XMLRPCPublication)

# content type doesn't matter for non post
for method in ('GET', 'HEAD', 'get', 'head'):
self.__env['REQUEST_METHOD'] = method
r = self.__factory(StringIO(''), self.__env)
self.assertEqual(r.__class__, BrowserRequest)
self.assertEqual(r.publication.__class__, BrowserPublication)

for method in ('PUT', 'put', 'ZZZ'):
self.__env['REQUEST_METHOD'] = method
r = self.__factory(StringIO(''), self.__env)
self.assertEqual(r.__class__, HTTPRequest)
self.assertEqual(r.publication.__class__, HTTPPublication)


def test_suite():
return TestSuite((
makeSuite(Test),
))

if __name__=='__main__':
main(defaultTest='test_suite')
130 changes: 130 additions & 0 deletions tests/test_requestpublicationregistry.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (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.
#
##############################################################################
"""Tests for the HTTP Publication Request Factory.
$Id: test_publicationfactories.py 38841 2005-10-07 04:34:09Z andreasjung $
"""
from unittest import TestCase, TestSuite, main, makeSuite

from StringIO import StringIO

from zope import component, interface
from zope.interface.verify import verifyClass
from zope.component.testing import PlacelessSetup

from zope.configuration.exceptions import ConfigurationError
from zope.app.publication import interfaces
from zope.app.publication.interfaces import IRequestPublicationRegistry
from zope.app.publication.requestpublicationregistry import \
RequestPublicationRegistry
from zope.app.publication.requestpublicationfactories import \
HTTPFactory, SOAPFactory, BrowserFactory, XMLRPCFactory


def DummyFactory():
return object

class DummyRequestFactory(object):
def __call__(self, input_stream, env):
self.input_stream = input_stream
self.env = env
return self

def setPublication(self, pub):
self.pub = pub

class Test(PlacelessSetup, TestCase):

def test_interface(self):
verifyClass(IRequestPublicationRegistry, RequestPublicationRegistry)

def test_registration(self):
r = RequestPublicationRegistry()
xmlrpc_f = DummyFactory()
r.register('POST', 'text/xml', 'xmlrpc', 0, xmlrpc_f)
soap_f = DummyFactory()
r.register('POST', 'text/xml', 'soap', 1, soap_f)
browser_f = DummyFactory()
r.register('*', '*', 'browser_default', 0, browser_f)
l = r.getFactoriesFor('POST', 'text/xml')
self.assertEqual(
l,
[{'name' : 'soap', 'priority' : 1, 'factory' : object},
{'name' : 'xmlrpc', 'priority' : 0, 'factory' : object}])
self.assertEqual(r.getFactoriesFor('POST', 'text/html'), None)

def test_configuration_same_priority(self):
r = RequestPublicationRegistry()
xmlrpc_f = DummyFactory()
r.register('POST', 'text/xml', 'xmlrpc', 0, DummyFactory)
r.register('POST', 'text/xml', 'soap', 1, DummyFactory())
# try to register a factory with the same priority
self.assertRaises(ConfigurationError, r.register,
'POST', 'text/xml', 'soap2', 1, DummyFactory())

def test_configuration_reregistration(self):
r = RequestPublicationRegistry()
xmlrpc_f = DummyFactory()
r.register('POST', 'text/xml', 'xmlrpc', 0, DummyFactory)
r.register('POST', 'text/xml', 'soap', 1, DummyFactory())
# re-register 'soap' but with priority 2
r.register('POST', 'text/xml', 'soap', 2, DummyFactory())
factory_data = r.getFactoriesFor('POST', 'text/xml')
priorities = [item['priority'] for item in factory_data]
self.assertEqual(priorities, [2, 0])

def test_realfactories(self):
r = RequestPublicationRegistry()
r.register('POST', '*', 'post_fallback', 0, HTTPFactory())
r.register('POST', 'text/xml', 'xmlrpc', 1, XMLRPCFactory())
r.register('POST', 'text/xml', 'soap', 2, SOAPFactory())
r.register('GET', '*', 'http', 0, HTTPFactory())
r.register('PUT', '*', 'http', 0, HTTPFactory())
r.register('HEAD', '*', 'http', 0, HTTPFactory())
r.register('*', '*', 'http', 1, BrowserFactory())

self.assertEqual(len(r.getFactoriesFor('POST', 'text/xml')) , 2)
self.assertEqual(len(r.getFactoriesFor('POST', 'text/xml; charset=utf-8')) , 2)
self.assertEqual(len(r.getFactoriesFor('POST', '*')) , 1)
self.assertEqual(r.getFactoriesFor('GET', 'text/html') , None)
self.assertEqual(len(r.getFactoriesFor('HEAD', '*')) , 1)

env = {
'SERVER_URL': 'http://127.0.0.1',
'HTTP_HOST': '127.0.0.1',
'CONTENT_LENGTH': '0',
'GATEWAY_INTERFACE': 'TestFooInterface/1.0',
}

soaprequestfactory = DummyRequestFactory()
interface.directlyProvides(
soaprequestfactory, interfaces.ISOAPRequestFactory)
component.provideUtility(soaprequestfactory)

self.assert_(
isinstance(r.lookup('POST', 'text/xml', env), XMLRPCFactory))
env['HTTP_SOAPACTION'] = 'foo'
self.assert_(
isinstance(r.lookup('POST', 'text/xml', env), SOAPFactory))
self.assert_(
isinstance(r.lookup('FOO', 'zope/sucks', env), BrowserFactory))


def test_suite():
return TestSuite((
makeSuite(Test),
))

if __name__=='__main__':
main(defaultTest='test_suite')

0 comments on commit 03ef104

Please sign in to comment.