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
03a8d77b
Commit
03a8d77b
authored
Mar 11, 2024
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
May 15, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testInterfacePost: compare message by parse and dump to ignore line-wrap differences.
parent
d24bb26f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
bt5/erp5_interface_post/TestTemplateItem/portal_components/test.erp5.testInterfacePost.py
...lateItem/portal_components/test.erp5.testInterfacePost.py
+13
-3
No files found.
bt5/erp5_interface_post/TestTemplateItem/portal_components/test.erp5.testInterfacePost.py
View file @
03a8d77b
...
...
@@ -27,7 +27,11 @@
import
email
import
mock
import
time
import
six
if
six
.
PY3
:
from
email
import
message_from_bytes
else
:
from
email
import
message_from_string
as
message_from_bytes
from
Products.ERP5Type.tests.ERP5TypeLiveTestCase
import
ERP5TypeTestCase
from
Products.ERP5Type.tests.Sequence
import
SequenceList
from
Products.ZSQLCatalog.SQLCatalog
import
SimpleQuery
...
...
@@ -247,7 +251,10 @@ class TestInterfacePost(ERP5TypeTestCase):
last_message
,
=
self
.
portal
.
MailHost
.
_message_list
self
.
assertNotEqual
((),
last_message
)
_
,
_
,
message_text
=
last_message
self
.
assertIn
(
message_text
,
sequence
[
'internet_message_post'
].
getData
())
self
.
assertEqual
(
bytes
(
message_from_bytes
(
message_text
)),
bytes
(
message_from_bytes
(
sequence
[
'internet_message_post'
].
getData
())),
)
def
_getMailHostMessageForRecipient
(
self
,
recipient_email_address
):
message_list
=
self
.
portal
.
MailHost
.
_message_list
...
...
@@ -268,7 +275,10 @@ class TestInterfacePost(ERP5TypeTestCase):
self
.
assertEqual
(
len
(
message_list
),
1
)
message
=
message_list
[
0
]
_
,
_
,
message_text
=
message
self
.
assertIn
(
message_text
,
post
.
getData
())
self
.
assertEqual
(
bytes
(
message_from_bytes
(
message_text
)),
bytes
(
message_from_bytes
(
post
.
getData
())),
)
def
stepCheckMailMessagePreviewDisplaysLatestInternetMessagePostData
(
self
,
sequence
=
None
,
sequence_list
=
None
):
mail_message
=
sequence
[
'mail_message'
]
...
...
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