Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Carlos Ramos Carreño
erp5
Commits
c1159e94
Commit
c1159e94
authored
Apr 01, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XMLExportImport: more support pickle protocol 3
🚧
( repair python2 )
parent
89a5b6de
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
393 additions
and
218 deletions
+393
-218
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testXMLPickle.py
...TemplateItem/portal_components/test.erp5.testXMLPickle.py
+229
-26
product/ERP5Type/XMLExportImport/__init__.py
product/ERP5Type/XMLExportImport/__init__.py
+1
-8
product/ERP5Type/XMLExportImport/ppml.py
product/ERP5Type/XMLExportImport/ppml.py
+161
-182
product/ERP5Type/XMLExportImport/xyap.py
product/ERP5Type/XMLExportImport/xyap.py
+2
-2
No files found.
bt5/erp5_core_test/TestTemplateItem/portal_components/test.erp5.testXMLPickle.py
View file @
c1159e94
##############################################################################
#
#
coding: utf-8
# Copyright (c) 2008 Nexedi SA and Contributors. All Rights Reserved.
# TAHARA Yusei <yusei@nexedi.com>
#
...
...
@@ -26,14 +26,15 @@
#
##############################################################################
import
base64
import
unittest
import
pickle
import
zodbpickle
import
zodbpickle.fastpickle
as
pickle
import
re
import
xml.sax
from
six.moves
import
cStringIO
as
StringIO
from
io
import
BytesIO
from
Products.ERP5Type.XMLExportImport
import
ppml
from
six
import
StringIO
from
Products.ERP5Type.XMLExportImport
import
importXML
,
ppml
import
six
class
DummyClass
:
...
...
@@ -45,11 +46,48 @@ class DummyClass:
self
.
data
=
[]
class
TestXMLPickle
(
unittest
.
TestCase
):
class
XMLPickleTestCase
(
unittest
.
TestCase
):
_pickle_protocol
=
3
def
dump_to_xml
(
self
,
obj
):
pickled_string
=
pickle
.
dumps
(
obj
,
protocol
=
self
.
_pickle_protocol
)
f
=
BytesIO
(
pickled_string
)
xml
=
ppml
.
ToXMLUnpickler
(
f
).
load
().
__str__
()
self
.
assertIsInstance
(
xml
,
str
)
return
xml
def
load_from_xml
(
self
,
xml_string
,
persistent_load
=
None
):
assertEqual
=
self
.
assertEqual
class
DummyJar
:
loaded
=
None
"""follow interface expected by importXML"""
def
importFile
(
self
,
file
,
clue
):
assertEqual
(
clue
,
'ignored'
)
assertEqual
(
file
.
read
(
4
),
b'ZEXP'
)
unpickler
=
pickle
.
Unpickler
(
file
)
if
persistent_load
:
unpickler
.
persistent_load
=
persistent_load
self
.
loaded
=
unpickler
.
load
()
jar
=
DummyJar
()
xml_string
=
'<?xml version="1.0"?>
\
n
<ZopeData>%s</ZopeData>'
%
xml_string
importXML
(
jar
,
StringIO
(
xml_string
),
clue
=
'ignored'
)
return
jar
.
loaded
def
dump_and_load
(
self
,
obj
):
return
self
.
load_from_xml
(
self
.
dump_to_xml
(
obj
))
def
check_and_load
(
self
,
v
):
reconstructed
=
self
.
dump_and_load
(
v
)
self
.
assertEqual
(
reconstructed
,
v
)
self
.
assertIs
(
type
(
reconstructed
),
type
(
v
))
class
TestXMLPickle
(
XMLPickleTestCase
):
def
test_reduce
(
self
):
"""
Make sure that a object which uses reduce for pickling can be pickled by xml pickler.
This also covers the case of instances
"""
obj
=
DummyClass
()
obj
.
data
.
append
(
1
)
...
...
@@ -59,29 +97,194 @@ class TestXMLPickle(unittest.TestCase):
pattern
=
re
.
compile
(
'WAA'
)
# regex pattern object uses reduce.(See sre.py)
obj
.
data
.
append
(
pattern
)
pickled_string
=
pickle
.
dumps
(
obj
,
protocol
=
2
)
f
=
BytesIO
(
pickled_string
)
xmldata
=
str
(
ppml
.
ToXMLUnpickler
(
f
).
load
())
output
=
StringIO
()
F
=
ppml
.
xmlPickler
()
F
.
file
=
output
F
.
binary
=
1
content_handler
=
xml
.
sax
.
handler
.
ContentHandler
()
content_handler
.
startElement
=
F
.
unknown_starttag
content_handler
.
endElement
=
F
.
unknown_endtag
content_handler
.
characters
=
F
.
handle_data
xml
.
sax
.
parseString
(
xmldata
,
content_handler
)
reconstructed_pickled_data
=
F
.
_stack
[
0
][
0
]
reconstructed_obj
=
pickle
.
loads
(
reconstructed_pickled_data
)
reconstructed_obj
=
self
.
dump_and_load
(
obj
)
self
.
assertTrue
(
reconstructed_obj
.
__class__
is
DummyClass
)
self
.
assert
True
(
type
(
getattr
(
reconstructed_obj
,
'data'
,
None
))
is
list
)
# pylint:disable=unidiomatic-typecheck
self
.
assert
Is
(
type
(
getattr
(
reconstructed_obj
,
'data'
,
None
)),
list
)
self
.
assertEqual
(
reconstructed_obj
.
data
[
0
],
1
)
self
.
assertTrue
(
reconstructed_obj
.
data
[
1
]
is
reconstructed_obj
)
self
.
assertTrue
(
reconstructed_obj
.
data
[
2
]
is
reconstructed_obj
.
data
)
self
.
assertTrue
(
type
(
reconstructed_obj
.
data
[
3
])
is
type
(
pattern
))
self
.
assertEqual
(
reconstructed_obj
.
data
[
3
].
pattern
,
'WAA'
)
def
test_bool
(
self
):
self
.
assertIs
(
self
.
dump_and_load
(
True
),
True
)
self
.
assertIs
(
self
.
dump_and_load
(
False
),
False
)
def
test_int
(
self
):
self
.
check_and_load
(
-
0
)
self
.
check_and_load
(
1
)
self
.
check_and_load
(
-
1
)
self
.
check_and_load
(
0xff
)
self
.
check_and_load
(
0xff1
)
self
.
check_and_load
(
0xffff
)
self
.
check_and_load
(
2
**
128
)
# long4
# https://github.com/python/cpython/blob/4d4a6f1b/Lib/test/pickletester.py#L2049-L2050
self
.
check_and_load
(
12345678910111213141516178920
<<
(
256
*
8
))
if
six
.
PY2
:
def
test_long
(
self
):
self
.
check_and_load
(
long
(
-
0
))
self
.
check_and_load
(
long
(
1
))
self
.
check_and_load
(
long
(
-
1
))
self
.
check_and_load
(
long
(
0xff
))
self
.
check_and_load
(
long
(
0xff1
))
self
.
check_and_load
(
long
(
0xffff
))
self
.
check_and_load
(
long
(
2
**
128
))
self
.
check_and_load
(
12345678910111213141516178920
<<
(
256
*
8
))
def
test_float
(
self
):
self
.
check_and_load
(
-
0.0
)
self
.
check_and_load
(
1.0
)
self
.
check_and_load
(
-
1.0
)
self
.
check_and_load
(.
33
)
def
test_None
(
self
):
self
.
assertIs
(
self
.
dump_and_load
(
None
),
None
)
def
test_bytes
(
self
):
self
.
check_and_load
(
b"bytes"
)
self
.
check_and_load
(
b"long bytes"
*
100
)
self
.
check_and_load
(
zodbpickle
.
binary
(
b"bytes"
))
self
.
check_and_load
(
zodbpickle
.
binary
(
b""
))
def
test_unicode
(
self
):
# BBB PY2
self
.
assertIs
(
type
(
self
.
dump_and_load
(
u"OK"
)),
six
.
text_type
)
self
.
check_and_load
(
u"short"
)
self
.
check_and_load
(
u"unicode 👍"
)
self
.
check_and_load
(
u"long"
*
100
)
self
.
check_and_load
(
u"long…"
*
100
)
self
.
check_and_load
(
u">"
)
self
.
check_and_load
(
u"a
\
n
b"
)
self
.
check_and_load
(
u" with spaces "
)
self
.
check_and_load
(
u"
\
t
with
\
t
tabs
\
t
"
)
self
.
check_and_load
(
u""
)
def
test_str
(
self
):
self
.
assertIs
(
type
(
self
.
dump_and_load
(
"OK"
)),
str
)
self
.
check_and_load
(
"short"
)
self
.
check_and_load
(
"unicode 👍"
)
self
.
check_and_load
(
"long"
*
100
)
self
.
check_and_load
(
"long…"
*
100
)
self
.
check_and_load
(
">"
)
self
.
check_and_load
(
"a
\
n
b"
)
self
.
check_and_load
(
" with spaces "
)
self
.
check_and_load
(
"
\
t
with
\
t
tabs
\
t
"
)
self
.
check_and_load
(
""
)
def
test_dict
(
self
):
self
.
check_and_load
({
'a'
:
1
,
'b'
:
2
})
self
.
check_and_load
({
'hé'
:
'ho'
})
self
.
check_and_load
(
dict
.
fromkeys
(
range
(
3000
)))
def
test_tuple
(
self
):
self
.
check_and_load
((
1
,
))
self
.
check_and_load
((
1
,
'two'
))
self
.
check_and_load
((
1
,
'two'
,
3.0
))
self
.
check_and_load
(
tuple
([
1
]
*
1000
))
self
.
check_and_load
(())
self
.
check_and_load
((
'hé'
,))
self
.
check_and_load
((
'hé'
,
'hé'
))
self
.
check_and_load
((
'hé'
,
'hé'
,
'hé'
))
self
.
check_and_load
((
'hé'
,
'hé'
,
'hé'
,
'hé'
))
def
test_list
(
self
):
self
.
check_and_load
([
1
])
self
.
check_and_load
([])
self
.
check_and_load
([
1
]
*
1000
)
self
.
check_and_load
([
'hé'
])
def
test_set
(
self
):
self
.
check_and_load
(
set
(
'abc'
))
self
.
check_and_load
(
set
(
'hé'
))
self
.
check_and_load
(
set
([]))
def
test_reference
(
self
):
ref
=
[]
reconstructed
=
self
.
dump_and_load
([
ref
,
ref
,
ref
])
self
.
assertEqual
(
reconstructed
,
[
ref
,
ref
,
ref
])
self
.
assertIs
(
reconstructed
[
0
],
reconstructed
[
1
])
def
test_reference_long
(
self
):
# same as reference (which is using BINPUT/BINGET but with large data
# to use LONG_BINPUT/LONG_BINGET)
ref
=
[
list
()
for
_
in
range
(
256
)]
reconstructed
=
self
.
dump_and_load
([
ref
,
ref
,
ref
])
self
.
assertEqual
(
reconstructed
,
[
ref
,
ref
,
ref
])
self
.
assertIs
(
reconstructed
[
0
],
reconstructed
[
1
])
class
TestXMLPickleStringEncoding
(
XMLPickleTestCase
):
def
test_string_base64
(
self
):
self
.
assertEqual
(
self
.
load_from_xml
(
"""
<pickle><string encoding="base64">d2l0aApuZXdsaW5l</string></pickle>
"""
),
"with
\
n
newline"
)
def
test_string_repr
(
self
):
self
.
assertEqual
(
self
.
load_from_xml
(
"""
<pickle><string encoding="repr">a
\
\
'1</string></pickle>
"""
),
"a'1"
)
# repr is default encoding
self
.
assertEqual
(
self
.
load_from_xml
(
"""
<pickle><string>a
\
\
'1</string></pickle>
"""
),
"a'1"
)
def
test_string_cdata
(
self
):
self
.
assertEqual
(
self
.
load_from_xml
(
"""
<pickle><string encoding="cdata"><![CDATA[
<p></p>
]]></string></pickle>"""
),
"<p></p>"
)
class
TestXMLPickleStringHeuristics
(
XMLPickleTestCase
):
"""Heuristics to map python2 str to unicode or bytes in business templates.
"""
def
test_bytes_base64
(
self
):
# if it does not decode as utf-8, it's bytes
self
.
assertEqual
(
self
.
load_from_xml
(
"""
<pickle><string encoding="base64">/wA=</string></pickle>
"""
),
b"
\
xFF
\
x00
"
)
def
test_long_bytes_base64
(
self
):
# if it does not decode as utf-8, it's bytes
long_bytes
=
b"
\
xFF
\
x00
"
*
256
self
.
assertEqual
(
self
.
load_from_xml
(
"""
<pickle><string encoding="base64">%s</string></pickle>
"""
%
base64
.
b64encode
(
long_bytes
).
decode
()),
long_bytes
)
def
test_string_persistent_id_base64
(
self
):
# persistent ids are loaded as bytes
persistent_ids
=
[]
def
persistent_load
(
oid
):
persistent_ids
.
append
(
oid
)
self
.
assertEqual
(
self
.
load_from_xml
(
"""
<pickle>
<persistent>
<string encoding="base64">AAAAAAAAAAE=</string>
</persistent>
</pickle>
"""
,
persistent_load
=
persistent_load
),
None
)
self
.
assertEqual
(
persistent_ids
,
[
b'
\
x00
\
x00
\
x00
\
x00
\
x00
\
x00
\
x00
\
x01
'
])
product/ERP5Type/XMLExportImport/__init__.py
View file @
c1159e94
...
...
@@ -317,7 +317,7 @@ def XMLrecord(oid, plen, p, id_mapping):
p
=
u
.
load
(
id_mapping
=
id_mapping
).
__str__
(
4
)
if
f
.
tell
()
<
plen
:
p
=
p
+
u
.
load
(
id_mapping
=
id_mapping
).
__str__
(
4
)
String
=
' <record id="%s" aka="%s">
\
n
%s </record>
\
n
'
%
(
id
,
aka
.
decode
(
),
p
)
String
=
' <record id="%s" aka="%s">
\
n
%s </record>
\
n
'
%
(
id
,
bytes2str
(
aka
),
p
)
return
String
def
exportXML
(
jar
,
oid
,
file
=
None
):
...
...
@@ -363,12 +363,6 @@ def exportXML(jar, oid, file=None):
p
=
getReorderedPickle
(
oid
)
write
(
XMLrecord
(
oid
,
len
(
p
),
p
,
id_mapping
))
write
(
'</ZopeData>
\
n
'
)
if
0
:
try
:
print
(
file
.
getvalue
())
except
AttributeError
:
pass
import
pdb
;
pdb
.
set_trace
()
return
file
class
zopedata
:
...
...
@@ -421,7 +415,6 @@ def importXML(jar, file, clue=''):
F
.
end_handlers
[
'record'
]
=
save_record
F
.
end_handlers
[
'ZopeData'
]
=
save_zopedata
F
.
start_handlers
[
'ZopeData'
]
=
start_zopedata
F
.
binary
=
1
F
.
file
=
outfile
# <patch>
# Our BTs XML files don't declare encoding but have accented chars in them
...
...
product/ERP5Type/XMLExportImport/ppml.py
View file @
c1159e94
This diff is collapsed.
Click to expand it.
product/ERP5Type/XMLExportImport/xyap.py
View file @
c1159e94
...
...
@@ -24,7 +24,7 @@ import string
import
xml.parsers.expat
class
xyap
:
class
xyap
(
object
)
:
start_handlers
=
{}
end_handlers
=
{}
...
...
@@ -57,7 +57,7 @@ class xyap:
top
=
end
[
tag
](
self
,
tag
,
top
)
append
(
top
)
class
NoBlanks
:
class
NoBlanks
(
object
)
:
def
handle_data
(
self
,
data
):
if
data
.
strip
():
...
...
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