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
8f685fa8
Commit
8f685fa8
authored
Jan 11, 2010
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better fix, with test, for error-during-standard_error_message with tainted error_value.
parent
51c96e4f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
3 deletions
+52
-3
lib/python/OFS/SimpleItem.py
lib/python/OFS/SimpleItem.py
+1
-3
lib/python/OFS/tests/test_SimpleItem.py
lib/python/OFS/tests/test_SimpleItem.py
+51
-0
No files found.
lib/python/OFS/SimpleItem.py
View file @
8f685fa8
...
@@ -25,7 +25,6 @@ import marshal, re, sys, time
...
@@ -25,7 +25,6 @@ import marshal, re, sys, time
import
Globals
,
App
.
Management
,
Acquisition
,
App
.
Undo
import
Globals
,
App
.
Management
,
Acquisition
,
App
.
Undo
import
AccessControl.Role
,
AccessControl
.
Owned
,
App
.
Common
import
AccessControl.Role
,
AccessControl
.
Owned
,
App
.
Common
from
webdav.Resource
import
Resource
from
webdav.Resource
import
Resource
from
webdav.xmltools
import
escape
as
xml_escape
from
ExtensionClass
import
Base
from
ExtensionClass
import
Base
from
ComputedAttribute
import
ComputedAttribute
from
ComputedAttribute
import
ComputedAttribute
from
AccessControl
import
getSecurityManager
,
Unauthorized
from
AccessControl
import
getSecurityManager
,
Unauthorized
...
@@ -218,7 +217,7 @@ class Item(Base, Resource, CopySource, App.Management.Tabs, Traversable,
...
@@ -218,7 +217,7 @@ class Item(Base, Resource, CopySource, App.Management.Tabs, Traversable,
exc_info
=
True
exc_info
=
True
)
)
try
:
try
:
strv
=
str
(
error_value
)
strv
=
repr
(
error_value
)
# quotes tainted strings
except
:
except
:
strv
=
(
'<unprintable %s object>'
%
strv
=
(
'<unprintable %s object>'
%
str
(
type
(
error_value
).
__name__
))
str
(
type
(
error_value
).
__name__
))
...
@@ -228,7 +227,6 @@ class Item(Base, Resource, CopySource, App.Management.Tabs, Traversable,
...
@@ -228,7 +227,6 @@ class Item(Base, Resource, CopySource, App.Management.Tabs, Traversable,
"event log for full details: %s)"
)
%
(
"event log for full details: %s)"
)
%
(
html_quote
(
sys
.
exc_info
()[
1
]),
html_quote
(
sys
.
exc_info
()[
1
]),
))
))
v
=
xml_escape
(
v
)
raise
error_type
,
v
,
tb
raise
error_type
,
v
,
tb
finally
:
finally
:
if
hasattr
(
self
,
'_v_eek'
):
del
self
.
_v_eek
if
hasattr
(
self
,
'_v_eek'
):
del
self
.
_v_eek
...
...
lib/python/OFS/tests/test_SimpleItem.py
0 → 100644
View file @
8f685fa8
import
unittest
class
ItemTests
(
unittest
.
TestCase
):
def
_getTargetClass
(
self
):
from
OFS.SimpleItem
import
Item
return
Item
def
_makeOne
(
self
,
*
args
,
**
kw
):
return
self
.
_getTargetClass
()(
*
args
,
**
kw
)
def
test_raise_StandardErrorMessage_str_errorValue
(
self
):
item
=
self
.
_makeOne
()
def
_raise_during_standard_error_message
(
*
args
,
**
kw
):
raise
ZeroDivisionError
(
'testing'
)
item
.
standard_error_message
=
_raise_during_standard_error_message
try
:
item
.
raise_standardErrorMessage
(
error_type
=
OverflowError
,
error_value
=
'simple'
,
REQUEST
=
{
'dummy'
:
''
},
)
except
:
import
sys
self
.
assertEqual
(
sys
.
exc_info
()[
0
],
'OverflowError'
)
value
=
sys
.
exc_info
()[
1
]
self
.
failUnless
(
value
.
startswith
(
"'simple'"
))
self
.
failUnless
(
'full details: testing'
in
value
)
def
test_raise_StandardErrorMessage_TaintedString_errorValue
(
self
):
from
ZPublisher.TaintedString
import
TaintedString
item
=
self
.
_makeOne
()
def
_raise_during_standard_error_message
(
*
args
,
**
kw
):
raise
ZeroDivisionError
(
'testing'
)
item
.
standard_error_message
=
_raise_during_standard_error_message
try
:
item
.
raise_standardErrorMessage
(
error_type
=
OverflowError
,
error_value
=
TaintedString
(
'<simple>'
),
REQUEST
=
{
'dummy'
:
''
},
)
except
:
import
sys
self
.
assertEqual
(
sys
.
exc_info
()[
0
],
'OverflowError'
)
value
=
sys
.
exc_info
()[
1
]
self
.
failIf
(
'<'
in
value
)
def
test_suite
():
return
unittest
.
TestSuite
((
unittest
.
makeSuite
(
ItemTests
),
))
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