Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
88ea141c
Commit
88ea141c
authored
Mar 30, 2010
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved ``testbrowser`` module into the Testing package.
parent
fec24881
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
133 additions
and
126 deletions
+133
-126
doc/CHANGES.rst
doc/CHANGES.rst
+2
-0
src/Products/Five/browser/tests/aqlegacy_ftest.txt
src/Products/Five/browser/tests/aqlegacy_ftest.txt
+1
-1
src/Products/Five/browser/tests/test_zope3security.py
src/Products/Five/browser/tests/test_zope3security.py
+1
-1
src/Products/Five/component/makesite.txt
src/Products/Five/component/makesite.txt
+1
-1
src/Products/Five/testbrowser.py
src/Products/Five/testbrowser.py
+8
-116
src/Testing/ZopeTestCase/testPlaceless.py
src/Testing/ZopeTestCase/testPlaceless.py
+0
-1
src/Testing/testbrowser.py
src/Testing/testbrowser.py
+115
-0
src/Testing/tests/test_testbrowser.py
src/Testing/tests/test_testbrowser.py
+5
-6
No files found.
doc/CHANGES.rst
View file @
88ea141c
...
...
@@ -11,6 +11,8 @@ Trunk (unreleased)
Restructuring
+++++++++++++
-
Moved
``
testbrowser
``
module
into
the
Testing
package
.
-
Moved
the
code
handling
ZCML
loading
into
the
``
Zope2
.
App
``
package
.
The
component
architecture
is
now
setup
before
the
application
object
is
created
or
any
database
connections
are
opened
.
So
far
the
CA
was
setup
somewhat
...
...
src/Products/Five/browser/tests/aqlegacy_ftest.txt
View file @
88ea141c
...
...
@@ -9,7 +9,7 @@ some:
>>> zcml.load_config("configure.zcml", Products.Five)
>>> zcml.load_config('aqlegacy.zcml', package=Products.Five.browser.tests)
>>> from
Products.Five
.testbrowser import Browser
>>> from
Testing
.testbrowser import Browser
>>> browser = Browser()
>>> browser.handleErrors = False
...
...
src/Products/Five/browser/tests/test_zope3security.py
View file @
88ea141c
...
...
@@ -37,7 +37,7 @@ def test_check_permission():
zope.security.management.checkPermission(). We see it works as
expected:
>>> from
Products.Five
.testbrowser import Browser
>>> from
Testing
.testbrowser import Browser
>>> browser = Browser()
>>> browser.open('http://localhost/test_folder_1_/testoid/@@zope3security.html?permission=zope2.View')
>>> print browser.contents
...
...
src/Products/Five/component/makesite.txt
View file @
88ea141c
...
...
@@ -30,7 +30,7 @@ Making a site
Create the test browser we'll be using:
>>> from
Products.Five
.testbrowser import Browser
>>> from
Testing
.testbrowser import Browser
>>> browser = Browser()
>>> browser.addHeader('Authorization', 'Basic manager:r00t')
...
...
src/Products/Five/testbrowser.py
View file @
88ea141c
##############################################################################
#
# Copyright (c) 2006 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.
#
##############################################################################
"""Support for using zope.testbrowser from Zope2.
# BBB
Mostly just copy and paste from zope.testbrowser.testing.
$Id$
"""
import
sys
import
socket
import
urllib2
import
mechanize
from
zope.testbrowser
import
testing
from
zope.testbrowser
import
browser
import
zope.publisher.http
class
PublisherConnection
(
testing
.
PublisherConnection
):
def
__init__
(
self
,
host
,
timeout
=
None
):
from
Testing.ZopeTestCase.zopedoctest.functional
import
http
self
.
caller
=
http
self
.
host
=
host
def
getresponse
(
self
):
"""Return a ``urllib2`` compatible response.
The goal of ths method is to convert the Zope Publisher's reseponse to
a ``urllib2`` compatible response, which is also understood by
mechanize.
"""
real_response
=
self
.
response
.
_response
status
=
real_response
.
getStatus
()
reason
=
zope
.
publisher
.
http
.
status_reasons
[
real_response
.
status
]
headers
=
[]
# Convert header keys to camel case. This is basically a copy
# paste from ZPublisher.HTTPResponse
for
key
,
val
in
real_response
.
headers
.
items
():
if
key
.
lower
()
==
key
:
# only change non-literal header names
key
=
"%s%s"
%
(
key
[:
1
].
upper
(),
key
[
1
:])
start
=
0
l
=
key
.
find
(
'-'
,
start
)
while
l
>=
start
:
key
=
"%s-%s%s"
%
(
key
[:
l
],
key
[
l
+
1
:
l
+
2
].
upper
(),
key
[
l
+
2
:])
start
=
l
+
1
l
=
key
.
find
(
'-'
,
start
)
headers
.
append
((
key
,
val
))
# get the cookies, breaking them into tuples for sorting
cookies
=
[(
c
[:
10
],
c
[
12
:])
for
c
in
real_response
.
_cookie_list
()]
headers
.
extend
(
cookies
)
headers
.
sort
()
headers
.
insert
(
0
,
(
'Status'
,
"%s %s"
%
(
status
,
reason
)))
headers
=
'
\
r
\
n
'
.
join
(
'%s: %s'
%
h
for
h
in
headers
)
content
=
real_response
.
body
return
testing
.
PublisherResponse
(
content
,
headers
,
status
,
reason
)
class
PublisherHTTPHandler
(
urllib2
.
HTTPHandler
):
"""Special HTTP handler to use the Zope Publisher."""
http_request
=
urllib2
.
AbstractHTTPHandler
.
do_request_
def
http_open
(
self
,
req
):
"""Open an HTTP connection having a ``urllib2`` request."""
# Here we connect to the publisher.
if
sys
.
version_info
>
(
2
,
6
)
and
not
hasattr
(
req
,
'timeout'
):
# Workaround mechanize incompatibility with Python
# 2.6. See: LP #280334
req
.
timeout
=
socket
.
_GLOBAL_DEFAULT_TIMEOUT
return
self
.
do_open
(
PublisherConnection
,
req
)
class
PublisherMechanizeBrowser
(
mechanize
.
Browser
):
"""Special ``mechanize`` browser using the Zope Publisher HTTP handler."""
default_schemes
=
[
'http'
]
default_others
=
[
'_http_error'
,
'_http_request_upgrade'
,
'_http_default_error'
]
default_features
=
[
'_redirect'
,
'_cookies'
,
'_referer'
,
'_refresh'
,
'_equiv'
,
'_basicauth'
,
'_digestauth'
]
def
__init__
(
self
,
*
args
,
**
kws
):
inherited_handlers
=
[
'_unknown'
,
'_http_error'
,
'_http_request_upgrade'
,
'_http_default_error'
,
'_basicauth'
,
'_digestauth'
,
'_redirect'
,
'_cookies'
,
'_referer'
,
'_refresh'
,
'_equiv'
,
'_gzip'
]
self
.
handler_classes
=
{
"http"
:
PublisherHTTPHandler
}
for
name
in
inherited_handlers
:
self
.
handler_classes
[
name
]
=
mechanize
.
Browser
.
handler_classes
[
name
]
mechanize
.
Browser
.
__init__
(
self
,
*
args
,
**
kws
)
class
Browser
(
browser
.
Browser
):
"""A Zope ``testbrowser` Browser that uses the Zope Publisher."""
def
__init__
(
self
,
url
=
None
):
mech_browser
=
PublisherMechanizeBrowser
()
# override the http handler class
mech_browser
.
handler_classes
[
"http"
]
=
PublisherHTTPHandler
super
(
Browser
,
self
).
__init__
(
url
=
url
,
mech_browser
=
mech_browser
)
from
zope.deferredimport
import
deprecated
deprecated
(
"Please import from Testing.testbrowser"
,
PublisherConnection
=
'Testing.testbrowser:PublisherConnection'
,
PublisherHTTPHandler
=
'Testing.testbrowser:PublisherHTTPHandler'
,
PublisherMechanizeBrowser
=
'Testing.testbrowser:PublisherMechanizeBrowser'
,
Browser
=
'Testing.testbrowser:Browser'
,
)
src/Testing/ZopeTestCase/testPlaceless.py
View file @
88ea141c
...
...
@@ -76,7 +76,6 @@ class TestPlacelessSetUp(ZopeTestCase.ZopeTestCase):
tearDown
()
def
testSimple
(
self
):
# SetUp according to Five's adapter test
setUp
()
setupZCML
()
# Now we have a fixture that should work for adaptation
...
...
src/Testing/testbrowser.py
0 → 100644
View file @
88ea141c
##############################################################################
#
# Copyright (c) 2006 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.
#
##############################################################################
"""Support for using zope.testbrowser from Zope2.
Mostly just copy and paste from zope.testbrowser.testing.
"""
import
sys
import
socket
import
urllib2
import
mechanize
from
zope.testbrowser
import
testing
from
zope.testbrowser
import
browser
import
zope.publisher.http
class
PublisherConnection
(
testing
.
PublisherConnection
):
def
__init__
(
self
,
host
,
timeout
=
None
):
from
Testing.ZopeTestCase.zopedoctest.functional
import
http
self
.
caller
=
http
self
.
host
=
host
def
getresponse
(
self
):
"""Return a ``urllib2`` compatible response.
The goal of ths method is to convert the Zope Publisher's reseponse to
a ``urllib2`` compatible response, which is also understood by
mechanize.
"""
real_response
=
self
.
response
.
_response
status
=
real_response
.
getStatus
()
reason
=
zope
.
publisher
.
http
.
status_reasons
[
real_response
.
status
]
headers
=
[]
# Convert header keys to camel case. This is basically a copy
# paste from ZPublisher.HTTPResponse
for
key
,
val
in
real_response
.
headers
.
items
():
if
key
.
lower
()
==
key
:
# only change non-literal header names
key
=
"%s%s"
%
(
key
[:
1
].
upper
(),
key
[
1
:])
start
=
0
l
=
key
.
find
(
'-'
,
start
)
while
l
>=
start
:
key
=
"%s-%s%s"
%
(
key
[:
l
],
key
[
l
+
1
:
l
+
2
].
upper
(),
key
[
l
+
2
:])
start
=
l
+
1
l
=
key
.
find
(
'-'
,
start
)
headers
.
append
((
key
,
val
))
# get the cookies, breaking them into tuples for sorting
cookies
=
[(
c
[:
10
],
c
[
12
:])
for
c
in
real_response
.
_cookie_list
()]
headers
.
extend
(
cookies
)
headers
.
sort
()
headers
.
insert
(
0
,
(
'Status'
,
"%s %s"
%
(
status
,
reason
)))
headers
=
'
\
r
\
n
'
.
join
(
'%s: %s'
%
h
for
h
in
headers
)
content
=
real_response
.
body
return
testing
.
PublisherResponse
(
content
,
headers
,
status
,
reason
)
class
PublisherHTTPHandler
(
urllib2
.
HTTPHandler
):
"""Special HTTP handler to use the Zope Publisher."""
http_request
=
urllib2
.
AbstractHTTPHandler
.
do_request_
def
http_open
(
self
,
req
):
"""Open an HTTP connection having a ``urllib2`` request."""
# Here we connect to the publisher.
if
sys
.
version_info
>
(
2
,
6
)
and
not
hasattr
(
req
,
'timeout'
):
# Workaround mechanize incompatibility with Python
# 2.6. See: LP #280334
req
.
timeout
=
socket
.
_GLOBAL_DEFAULT_TIMEOUT
return
self
.
do_open
(
PublisherConnection
,
req
)
class
PublisherMechanizeBrowser
(
mechanize
.
Browser
):
"""Special ``mechanize`` browser using the Zope Publisher HTTP handler."""
default_schemes
=
[
'http'
]
default_others
=
[
'_http_error'
,
'_http_request_upgrade'
,
'_http_default_error'
]
default_features
=
[
'_redirect'
,
'_cookies'
,
'_referer'
,
'_refresh'
,
'_equiv'
,
'_basicauth'
,
'_digestauth'
]
def
__init__
(
self
,
*
args
,
**
kws
):
inherited_handlers
=
[
'_unknown'
,
'_http_error'
,
'_http_request_upgrade'
,
'_http_default_error'
,
'_basicauth'
,
'_digestauth'
,
'_redirect'
,
'_cookies'
,
'_referer'
,
'_refresh'
,
'_equiv'
,
'_gzip'
]
self
.
handler_classes
=
{
"http"
:
PublisherHTTPHandler
}
for
name
in
inherited_handlers
:
self
.
handler_classes
[
name
]
=
mechanize
.
Browser
.
handler_classes
[
name
]
mechanize
.
Browser
.
__init__
(
self
,
*
args
,
**
kws
)
class
Browser
(
browser
.
Browser
):
"""A Zope ``testbrowser` Browser that uses the Zope Publisher."""
def
__init__
(
self
,
url
=
None
):
mech_browser
=
PublisherMechanizeBrowser
()
# override the http handler class
mech_browser
.
handler_classes
[
"http"
]
=
PublisherHTTPHandler
super
(
Browser
,
self
).
__init__
(
url
=
url
,
mech_browser
=
mech_browser
)
src/
Products/Five
/tests/test_testbrowser.py
→
src/
Testing
/tests/test_testbrowser.py
View file @
88ea141c
...
...
@@ -32,7 +32,7 @@ def doctest_cookies():
We want to make sure that our testbrowser correctly understands
cookies. We'll add a stub to ``self.folder`` that sets a cookie.
>>> from
Products.Five
.tests.test_testbrowser import CookieStub
>>> from
Testing
.tests.test_testbrowser import CookieStub
>>> self.folder._setObject('stub', CookieStub())
'stub'
...
...
@@ -47,7 +47,7 @@ def doctest_cookies():
Let's try to look at the same folder with testbrowser:
>>> from
Products.Five
.testbrowser import Browser
>>> from
Testing
.testbrowser import Browser
>>> browser = Browser()
>>> browser.open('http://localhost/test_folder_1_/stub')
>>> 'Set-Cookie: evil="cookie"' in str(browser.headers)
...
...
@@ -59,15 +59,14 @@ def doctest_camel_case_headers():
Some setup:
>>> from
Products.Five
.tests.test_testbrowser import CookieStub
>>> from
Testing
.tests.test_testbrowser import CookieStub
>>> self.folder._setObject('stub', CookieStub())
'stub'
The Zope2 response mungs headers so they come out in camel case we should
do the same. This is also more consistent with the Zope3 testbrowser tests.
We will test a few:
do the same. We will test a few:
>>> from
Products.Five
.testbrowser import Browser
>>> from
Testing
.testbrowser import Browser
>>> browser = Browser()
>>> browser.open('http://localhost/test_folder_1_/stub')
>>> 'Content-Length: ' in str(browser.headers)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment