[Zope3-checkins] CVS: Zope3/lib/python/Zope/Publisher/Browser/tests - testBrowserResponse.py:1.1
Jim Fulton
jim@zope.com
Wed, 4 Dec 2002 09:22:44 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/Browser/tests
In directory cvs.zope.org:/tmp/cvs-serv7872/lib/python/Zope/Publisher/Browser/tests
Added Files:
testBrowserResponse.py
Log Message:
Fixed a bug in the DWIM HTML content type guessing code.
=== Added File Zope3/lib/python/Zope/Publisher/Browser/tests/testBrowserResponse.py ===
##############################################################################
#
# Copyright (c) 2001, 2002 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.
#
##############################################################################
"""Browser response tests
XXX longer description goes here.
$Id: testBrowserResponse.py,v 1.1 2002/12/04 14:22:44 jim Exp $
"""
from unittest import TestCase, TestSuite, main, makeSuite
from Zope.Publisher.Browser.BrowserResponse import BrowserResponse
from StringIO import StringIO
# XXX Waaa need more tests
class Test(TestCase):
def test_contentType_DWIM_in_setBody(self):
response = BrowserResponse(StringIO())
response.setBody(
"""<html>
<blah>
</html>
""")
self.assert_(response.getHeader('content-type').startswith("text/html")
)
response = BrowserResponse(StringIO())
response.setBody(
"""<html foo="1"
bar="x">
<blah>
</html>
""")
self.assert_(response.getHeader('content-type').startswith("text/html")
)
response = BrowserResponse(StringIO())
response.setBody(
"""<html foo="1"
bar="x">
<blah>
</html>
""")
self.assert_(response.getHeader('content-type').startswith("text/html")
)
response = BrowserResponse(StringIO())
response.setBody(
"""<!doctype html>
<html foo="1"
bar="x">
<blah>
</html>
""")
self.assert_(response.getHeader('content-type').startswith("text/html")
)
response = BrowserResponse(StringIO())
response.setBody(
"""Hello world
""")
self.assert_(response.getHeader('content-type').startswith(
"text/plain")
)
response = BrowserResponse(StringIO())
response.setBody(
"""<p>Hello world
""")
self.assert_(response.getHeader('content-type').startswith(
"text/plain")
)
def test_suite():
return TestSuite((
makeSuite(Test),
))
if __name__=='__main__':
main(defaultTest='test_suite')