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
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
640d2066
Commit
640d2066
authored
Jul 28, 2023
by
Emmy Vouriot
Committed by
Jérome Perrin
May 15, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WIP: specify read files are bytes not str
parent
2074358b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
24 deletions
+42
-24
product/ERP5OOo/tests/testIngestion.py
product/ERP5OOo/tests/testIngestion.py
+42
-24
No files found.
product/ERP5OOo/tests/testIngestion.py
View file @
640d2066
...
...
@@ -52,6 +52,7 @@ import ZPublisher.HTTPRequest
from
unittest
import
expectedFailure
import
six.moves.http_client
import
six.moves.urllib.parse
,
six
.
moves
.
urllib
.
request
import
six
import
base64
import
mock
...
...
@@ -764,33 +765,50 @@ class TestIngestion(IngestionTestCase):
document
=
self
.
portal
.
restrictedTraverse
(
sequence
.
get
(
'document_path'
))
self
.
checkDocumentExportList
(
document
,
'doc'
,
[
'pdf'
,
'doc'
,
'rtf'
,
'txt'
,
'odt'
])
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
'doc'
,
[
'writer.html'
])
if
six
.
PY2
:
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
'doc'
,
[
'writer.html'
])
else
:
self
.
assertRaises
(
AssertionError
,
self
.
checkDocumentExportList
,
document
,
'doc'
,
[
'writer.html'
])
def
stepCheckSpreadsheetDocumentExportList
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
document
=
self
.
portal
.
restrictedTraverse
(
sequence
.
get
(
'document_path'
))
self
.
checkDocumentExportList
(
document
,
'xls'
,
[
'csv'
,
'xls'
,
'ods'
,
'pdf'
])
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
'xls'
,
[
'calc.html'
,
'calc.pdf'
])
if
six
.
PY2
:
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
'xls'
,
[
'calc.html'
,
'calc.pdf'
])
else
:
self
.
assertRaises
(
AssertionError
,
self
.
checkDocumentExportList
,
document
,
'xls'
,
[
'calc.html'
,
'calc.pdf'
])
def
stepCheckPresentationDocumentExportList
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
document
=
self
.
portal
.
restrictedTraverse
(
sequence
.
get
(
'document_path'
))
self
.
checkDocumentExportList
(
document
,
'ppt'
,
[
'ppt'
,
'odp'
,
'pdf'
])
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
'ppt'
,
[
'impr.pdf'
])
if
six
.
PY2
:
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
'ppt'
,
[
'impr.pdf'
])
else
:
self
.
assertRaises
(
AssertionError
,
self
.
checkDocumentExportList
,
document
,
'ppt'
,
[
'impr.pdf'
])
def
stepCheckDrawingDocumentExportList
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
document
=
self
.
portal
.
restrictedTraverse
(
sequence
.
get
(
'document_path'
))
self
.
checkDocumentExportList
(
document
,
'sxd'
,
[
'jpg'
,
'svg'
,
'pdf'
,
'odg'
])
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
if
six
.
PY2
:
# legacy format will be replaced
expectedFailure
(
self
.
checkDocumentExportList
)(
document
,
'sxd'
,
[
'draw.pdf'
])
else
:
self
.
assertRaises
(
AssertionError
,
self
.
checkDocumentExportList
,
document
,
'sxd'
,
[
'draw.pdf'
])
def
stepExportPDF
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
"""
...
...
@@ -800,10 +818,10 @@ class TestIngestion(IngestionTestCase):
f
=
makeFileUpload
(
'TEST-en-002.pdf'
)
document
.
edit
(
file
=
f
)
mime
,
text
=
document
.
convert
(
'text'
)
self
.
assertIn
(
'magic'
,
text
)
self
.
assertIn
(
b
'magic'
,
text
)
self
.
assertTrue
(
mime
==
'text/plain'
)
mime
,
html
=
document
.
convert
(
'html'
)
self
.
assertIn
(
'magic'
,
html
)
self
.
assertIn
(
b
'magic'
,
html
)
self
.
assertTrue
(
mime
==
'text/html'
)
def
stepExportImage
(
self
,
sequence
=
None
,
sequence_list
=
None
,
**
kw
):
...
...
@@ -940,7 +958,7 @@ class TestIngestion(IngestionTestCase):
"""
Email was sent in by someone to ERP5.
"""
f
=
open
(
makeFilePath
(
'email_from.txt'
))
f
=
open
(
makeFilePath
(
'email_from.txt'
)
,
"rb"
)
document
=
self
.
receiveEmail
(
f
.
read
())
self
.
tic
()
...
...
@@ -949,7 +967,7 @@ class TestIngestion(IngestionTestCase):
"""
Email was sent in by someone to ERP5.
"""
f
=
open
(
makeFilePath
(
'email_multiple_attachments.eml'
))
f
=
open
(
makeFilePath
(
'email_multiple_attachments.eml'
)
,
"rb"
)
document
=
self
.
receiveEmail
(
f
.
read
())
self
.
tic
()
...
...
@@ -1548,7 +1566,7 @@ return result
document_to_ingest
=
self
.
portal
.
portal_contributions
.
newContent
(
portal_type
=
'File'
,
filename
=
'toto.txt'
,
data
=
'Hello World!'
)
data
=
b
'Hello World!'
)
document_to_ingest
.
publish
()
self
.
tic
()
url
=
document_to_ingest
.
absolute_url
()
+
'/getData'
...
...
@@ -1626,7 +1644,7 @@ return result
document_to_ingest
=
self
.
portal
.
portal_contributions
.
newContent
(
portal_type
=
'File'
,
filename
=
'toto.txt'
,
data
=
'Hello World!'
)
data
=
b
'Hello World!'
)
document_to_ingest
.
publish
()
self
.
tic
()
url
=
document_to_ingest
.
absolute_url
()
+
'/getData'
...
...
@@ -1684,7 +1702,7 @@ context.setReference(reference)
document_to_ingest
=
self
.
portal
.
portal_contributions
.
newContent
(
portal_type
=
'File'
,
filename
=
'toto.txt'
,
data
=
'Hello World!'
)
data
=
b
'Hello World!'
)
document_to_ingest
.
publish
()
self
.
tic
()
url
=
document_to_ingest
.
absolute_url
()
+
'/getData'
...
...
@@ -1775,7 +1793,7 @@ return result
document_to_ingest
=
self
.
portal
.
portal_contributions
.
newContent
(
portal_type
=
'File'
,
filename
=
'toto.txt'
,
data
=
'Hello World!'
)
data
=
b
'Hello World!'
)
document_to_ingest
.
publish
()
self
.
tic
()
url
=
document_to_ingest
.
absolute_url
()
+
'/getData'
...
...
@@ -1864,7 +1882,7 @@ return result
document_to_ingest
=
self
.
portal
.
portal_contributions
.
newContent
(
portal_type
=
'File'
,
filename
=
'toto.txt'
,
data
=
'Hello World!'
)
data
=
b
'Hello World!'
)
document_to_ingest
.
publish
()
self
.
tic
()
...
...
@@ -1915,7 +1933,7 @@ return result
a Spreadsheet ?
"""
path
=
makeFilePath
(
'import_region_category.ods'
)
data
=
open
(
path
,
'r'
).
read
()
data
=
open
(
path
,
'r
b
'
).
read
()
document
=
self
.
portal
.
portal_contributions
.
newContent
(
filename
=
'toto'
,
data
=
data
,
...
...
@@ -1996,7 +2014,7 @@ return result
"""Check that given portal_type is always honoured
"""
path
=
makeFilePath
(
'import_region_category.xls'
)
data
=
open
(
path
,
'r'
).
read
()
data
=
open
(
path
,
'r
b
'
).
read
()
document
=
self
.
portal
.
portal_contributions
.
newContent
(
filename
=
'import_region_category.xls'
,
...
...
@@ -2014,7 +2032,7 @@ return result
"""Check that given id is always honoured
"""
path
=
makeFilePath
(
'import_region_category.xls'
)
data
=
open
(
path
,
'r'
).
read
()
data
=
open
(
path
,
'r
b
'
).
read
()
document
=
self
.
portal
.
portal_contributions
.
newContent
(
id
=
'this_id'
,
...
...
@@ -2039,7 +2057,7 @@ return result
def
test_newContent_trough_http
(
self
):
filename
=
'import_region_category.xls'
path
=
makeFilePath
(
filename
)
data
=
open
(
path
,
'r'
).
read
()
data
=
open
(
path
,
'r
b
'
).
read
()
reference
=
'ITISAREFERENCE'
portal_url
=
self
.
portal
.
absolute_url
()
...
...
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