Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
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
Hamza
erp5-Boxiang
Commits
0cf9f566
Commit
0cf9f566
authored
May 12, 2015
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMFActivity: remove broken tests
parent
d64e3004
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
320 deletions
+0
-320
product/CMFActivity/tests/testCMFActivity.py
product/CMFActivity/tests/testCMFActivity.py
+0
-320
No files found.
product/CMFActivity/tests/testCMFActivity.py
View file @
0cf9f566
...
...
@@ -1539,219 +1539,6 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
message_list
=
activity_tool
.
getMessageList
()
self
.
assertEqual
(
len
(
message_list
),
2
)
def
test_83_ActivityModificationsViaCMFActivityConnectionRolledBackOnErrorSQLDict
(
self
,
quiet
=
0
,
run
=
run_all_test
):
"""
When an activity modifies tables through CMFActivity SQL connection and
raises, check that its changes are correctly rolled back.
"""
if
not
run
:
return
if
not
quiet
:
message
=
'
\
n
Check activity modifications via CMFActivity connection are rolled back on error (SQLDict)'
ZopeTestCase
.
_print
(
message
)
LOG
(
'Testing... '
,
0
,
message
)
self
.
tic
()
activity_tool
=
self
.
getActivityTool
()
def
modifySQLAndFail
(
self
,
object_list
):
# Only create the dummy activity if none is present: we would just
# generate missleading errors (duplicate uid).
if
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
)
==
0
:
# Add a dumy activity which will not be executed
# Modified table does not matter
method_id
=
'dummy_activity'
path
=
'/'
.
join
(
self
.
getPhysicalPath
())
message
=
Message
(
self
,
None
,
{},
method_id
,
(),
{})
pickled_message
=
pickle
.
dumps
(
message
)
self
.
SQLDict_writeMessageList
(
uid_list
=
[
0
],
# This uid is never automaticaly assigned (starts at 1)
date_list
=
[
DateTime
().
Date
()],
path_list
=
[
path
],
active_process_uid
=
[
None
],
method_id_list
=
[
method_id
],
message_list
=
[
pickled_message
],
priority_list
=
[
1
],
processing_node_list
=
[
-
2
],
group_method_id_list
=
[
'
\
0
'
],
tag_list
=
[
''
],
order_validation_text_list
=
[
''
],
serialization_tag_list
=
[
''
],
)
# Mark first entry as failed
del
object_list
[
0
][
3
]
def
dummy
(
self
):
pass
try
:
Organisation
.
modifySQLAndFail
=
modifySQLAndFail
Organisation
.
dummy
=
dummy
obj
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
group_method_id
=
'%s/modifySQLAndFail'
%
(
obj
.
getPath
(),
)
obj
.
activate
(
activity
=
'SQLDict'
,
group_method_id
=
group_method_id
).
dummy
()
obj2
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
obj2
.
activate
(
activity
=
'SQLDict'
,
group_method_id
=
group_method_id
).
dummy
()
self
.
commit
()
self
.
flushAllActivities
(
silent
=
1
,
loop_size
=
100
)
self
.
assertEqual
(
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
),
0
)
finally
:
delattr
(
Organisation
,
'modifySQLAndFail'
)
delattr
(
Organisation
,
'dummy'
)
def
test_84_ActivityModificationsViaCMFActivityConnectionRolledBackOnErrorSQLQueue
(
self
,
quiet
=
0
,
run
=
run_all_test
):
"""
When an activity modifies tables through CMFActivity SQL connection and
raises, check that its changes are correctly rolled back.
"""
if
not
run
:
return
if
not
quiet
:
message
=
'
\
n
Check activity modifications via CMFActivity connection are rolled back on error (SQLQueue)'
ZopeTestCase
.
_print
(
message
)
LOG
(
'Testing... '
,
0
,
message
)
self
.
tic
()
activity_tool
=
self
.
getActivityTool
()
def
modifySQLAndFail
(
self
):
# Only create the dummy activity if none is present: we would just
# generate missleading errors (duplicate uid).
if
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
)
==
0
:
# Add a dumy activity which will not be executed
# Modified table does not matter
method_id
=
'dummy_activity'
path
=
'/'
.
join
(
self
.
getPhysicalPath
())
message
=
Message
(
self
,
None
,
{},
method_id
,
(),
{})
pickled_message
=
pickle
.
dumps
(
message
)
self
.
SQLDict_writeMessageList
(
uid_list
=
[
0
],
# This uid is never automaticaly assigned (starts at 1)
date_list
=
[
DateTime
().
Date
()],
path_list
=
[
path
],
method_id_list
=
[
method_id
],
message_list
=
[
pickled_message
],
priority_list
=
[
1
],
processing_node_list
=
[
-
2
],
group_method_id_list
=
[
'
\
0
'
],
tag_list
=
[
''
],
order_validation_text_list
=
[
''
],
serialization_tag_list
=
[
''
]
)
# Fail
raise
ValueError
,
'This method always fail'
try
:
Organisation
.
modifySQLAndFail
=
modifySQLAndFail
obj
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
obj
.
activate
(
activity
=
'SQLQueue'
).
modifySQLAndFail
()
self
.
commit
()
self
.
flushAllActivities
(
silent
=
1
,
loop_size
=
100
)
self
.
assertEqual
(
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
),
0
)
finally
:
delattr
(
Organisation
,
'modifySQLAndFail'
)
def
test_86_ActivityToolInvokeGroupFailureDoesNotCommitCMFActivitySQLConnectionSQLDict
(
self
,
quiet
=
0
,
run
=
run_all_test
):
"""
Check that CMFActivity SQL connection is rollback if activity_tool.invokeGroup raises.
"""
if
not
run
:
return
if
not
quiet
:
message
=
'
\
n
Check that activity modifications via CMFActivity connection are rolled back on ActivityTool error (SQLDict)'
ZopeTestCase
.
_print
(
message
)
LOG
(
'Testing... '
,
0
,
message
)
self
.
tic
()
activity_tool
=
self
.
getActivityTool
()
def
modifySQLAndFail
(
self
,
*
arg
,
**
kw
):
# Only create the dummy activity if none is present: we would just
# generate missleading errors (duplicate uid).
if
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
)
==
0
:
# Add a dumy activity which will not be executed
# Modified table does not matter
method_id
=
'dummy_activity'
path
=
'/'
.
join
(
self
.
getPhysicalPath
())
message
=
Message
(
self
,
None
,
{},
method_id
,
(),
{})
pickled_message
=
pickle
.
dumps
(
message
)
self
.
SQLDict_writeMessageList
(
uid_list
=
[
0
],
# This uid is never automaticaly assigned (starts at 1)
date_list
=
[
DateTime
().
Date
()],
path_list
=
[
path
],
method_id_list
=
[
method_id
],
message_list
=
[
pickled_message
],
priority_list
=
[
1
],
processing_node_list
=
[
-
2
],
group_method_id_list
=
[
'
\
0
'
],
tag_list
=
[
''
],
order_validation_text_list
=
[
''
],
serialization_tag_list
=
[
''
],
)
# Fail
raise
ValueError
,
'This method always fail'
def
dummy
(
self
):
pass
invoke
=
activity_tool
.
__class__
.
invoke
invokeGroup
=
activity_tool
.
__class__
.
invokeGroup
try
:
activity_tool
.
__class__
.
invoke
=
modifySQLAndFail
activity_tool
.
__class__
.
invokeGroup
=
modifySQLAndFail
Organisation
.
dummy
=
dummy
obj
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
group_method_id
=
'%s/dummy'
%
(
obj
.
getPath
(),
)
obj
.
activate
(
activity
=
'SQLDict'
,
group_method_id
=
group_method_id
).
dummy
()
obj2
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
obj2
.
activate
(
activity
=
'SQLDict'
,
group_method_id
=
group_method_id
).
dummy
()
self
.
commit
()
self
.
flushAllActivities
(
silent
=
1
,
loop_size
=
100
)
self
.
assertEqual
(
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
),
0
)
finally
:
delattr
(
Organisation
,
'dummy'
)
activity_tool
.
__class__
.
invoke
=
invoke
activity_tool
.
__class__
.
invokeGroup
=
invokeGroup
def
test_87_ActivityToolInvokeFailureDoesNotCommitCMFActivitySQLConnectionSQLQueue
(
self
,
quiet
=
0
,
run
=
run_all_test
):
"""
Check that CMFActivity SQL connection is rollback if activity_tool.invoke raises.
"""
if
not
run
:
return
if
not
quiet
:
message
=
'
\
n
Check that activity modifications via CMFActivity connection are rolled back on ActivityTool error (SQLQueue)'
ZopeTestCase
.
_print
(
message
)
LOG
(
'Testing... '
,
0
,
message
)
self
.
tic
()
activity_tool
=
self
.
getActivityTool
()
def
modifySQLAndFail
(
self
,
*
args
,
**
kw
):
# Only create the dummy activity if none is present: we would just
# generate missleading errors (duplicate uid).
if
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
)
==
0
:
# Add a dumy activity which will not be executed
# Modified table does not matter
method_id
=
'dummy_activity'
path
=
'/'
.
join
(
self
.
getPhysicalPath
())
message
=
Message
(
self
,
None
,
{},
method_id
,
(),
{})
pickled_message
=
pickle
.
dumps
(
message
)
self
.
SQLDict_writeMessageList
(
uid_list
=
[
0
],
# This uid is never automaticaly assigned (starts at 1)
date_list
=
[
DateTime
().
Date
()],
path_list
=
[
path
],
method_id_list
=
[
method_id
],
message_list
=
[
pickled_message
],
priority_list
=
[
1
],
processing_node_list
=
[
-
2
],
group_method_id_list
=
[
'
\
0
'
],
tag_list
=
[
''
],
order_validation_text_list
=
[
''
],
serialization_tag_list
=
[
''
],
)
# Fail
raise
ValueError
,
'This method always fail'
def
dummy
(
self
):
pass
invoke
=
activity_tool
.
__class__
.
invoke
invokeGroup
=
activity_tool
.
__class__
.
invokeGroup
try
:
activity_tool
.
__class__
.
invoke
=
modifySQLAndFail
activity_tool
.
__class__
.
invokeGroup
=
modifySQLAndFail
Organisation
.
dummy
=
dummy
obj
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
obj
.
activate
(
activity
=
'SQLQueue'
).
dummy
()
self
.
commit
()
self
.
flushAllActivities
(
silent
=
1
,
loop_size
=
100
)
self
.
assertEqual
(
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
),
0
)
finally
:
delattr
(
Organisation
,
'dummy'
)
activity_tool
.
__class__
.
invoke
=
invoke
activity_tool
.
__class__
.
invokeGroup
=
invokeGroup
def
test_88_ProcessingMultipleMessagesMustRevertIndividualMessagesOnError
(
self
,
quiet
=
0
,
run
=
run_all_test
):
"""
Check that, on queues which support it, processing a batch of multiple
...
...
@@ -1920,113 +1707,6 @@ class TestCMFActivity(ERP5TypeTestCase, LogInterceptor):
LOG
(
'Testing... '
,
0
,
message
)
self
.
TryUserNotificationRaise
(
'SQLQueue'
)
def
test_94_ActivityToolCommitFailureDoesNotCommitCMFActivitySQLConnectionSQLDict
(
self
,
quiet
=
0
,
run
=
run_all_test
):
"""
Check that CMFActivity SQL connection is rollback if transaction commit raises.
"""
if
not
run
:
return
if
not
quiet
:
message
=
'
\
n
Check that activity modifications via CMFActivity connection are rolled back on commit error (SQLDict)'
ZopeTestCase
.
_print
(
message
)
LOG
(
'Testing... '
,
0
,
message
)
self
.
tic
()
activity_tool
=
self
.
getActivityTool
()
def
modifySQL
(
self
,
object_list
):
# Only create the dummy activity if none is present: we would just
# generate missleading errors (duplicate uid).
if
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
)
==
0
:
# Add a dumy activity which will not be executed
# Modified table does not matter
method_id
=
'dummy_activity'
path
=
'/'
.
join
(
self
.
getPhysicalPath
())
message
=
Message
(
self
,
None
,
{},
method_id
,
(),
{})
pickled_message
=
pickle
.
dumps
(
message
)
self
.
SQLDict_writeMessageList
(
uid_list
=
[
0
],
# This uid is never automaticaly assigned (starts at 1)
date_list
=
[
DateTime
().
Date
()],
path_list
=
[
path
],
method_id_list
=
[
method_id
],
message_list
=
[
pickled_message
],
priority_list
=
[
1
],
processing_node_list
=
[
-
2
],
group_method_id_list
=
[
'
\
0
'
],
tag_list
=
[
''
],
order_validation_text_list
=
[
''
],
)
transaction
.
get
().
__class__
.
commit
=
fake_commit
commit
=
transaction
.
get
().
__class__
.
commit
def
fake_commit
(
*
args
,
**
kw
):
transaction
.
get
().
__class__
.
commit
=
commit
raise
KeyError
,
'always fail'
try
:
Organisation
.
modifySQL
=
modifySQL
obj
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
group_method_id
=
'%s/modifySQL'
%
(
obj
.
getPath
(),
)
obj2
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
self
.
tic
()
obj
.
activate
(
activity
=
'SQLDict'
,
group_method_id
=
group_method_id
).
modifySQL
()
obj2
.
activate
(
activity
=
'SQLDict'
,
group_method_id
=
group_method_id
).
modifySQL
()
self
.
commit
()
try
:
self
.
flushAllActivities
(
silent
=
1
,
loop_size
=
100
)
finally
:
transaction
.
get
().
__class__
.
commit
=
commit
self
.
assertEqual
(
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
),
0
)
finally
:
delattr
(
Organisation
,
'modifySQL'
)
def
test_95_ActivityToolCommitFailureDoesNotCommitCMFActivitySQLConnectionSQLQueue
(
self
,
quiet
=
0
,
run
=
run_all_test
):
"""
Check that CMFActivity SQL connection is rollback if activity_tool.invoke raises.
"""
if
not
run
:
return
if
not
quiet
:
message
=
'
\
n
Check that activity modifications via CMFActivity connection are rolled back on commit error (SQLQueue)'
ZopeTestCase
.
_print
(
message
)
LOG
(
'Testing... '
,
0
,
message
)
self
.
tic
()
activity_tool
=
self
.
getActivityTool
()
def
modifySQL
(
self
,
*
args
,
**
kw
):
# Only create the dummy activity if none is present: we would just
# generate missleading errors (duplicate uid).
if
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
)
==
0
:
# Add a dumy activity which will not be executed
# Modified table does not matter
method_id
=
'dummy_activity'
path
=
'/'
.
join
(
self
.
getPhysicalPath
())
message
=
Message
(
self
,
None
,
{},
method_id
,
(),
{})
pickled_message
=
pickle
.
dumps
(
message
)
self
.
SQLDict_writeMessageList
(
uid_list
=
[
0
],
# This uid is never automaticaly assigned (starts at 1)
date_list
=
[
DateTime
().
Date
()],
path_list
=
[
path
],
method_id_list
=
[
method_id
],
message_list
=
[
pickled_message
],
priority_list
=
[
1
],
processing_node_list
=
[
-
2
],
group_method_id_list
=
[
'
\
0
'
],
tag_list
=
[
''
],
order_validation_text_list
=
[
''
],
)
transaction
.
get
().
__class__
.
commit
=
fake_commit
commit
=
transaction
.
get
().
__class__
.
commit
def
fake_commit
(
self
,
*
args
,
**
kw
):
transaction
.
get
().
__class__
.
commit
=
commit
raise
KeyError
,
'always fail'
try
:
Organisation
.
modifySQL
=
modifySQL
obj
=
self
.
getPortal
().
organisation_module
.
newContent
(
portal_type
=
'Organisation'
)
self
.
tic
()
obj
.
activate
(
activity
=
'SQLQueue'
).
modifySQL
()
self
.
commit
()
try
:
self
.
flushAllActivities
(
silent
=
1
,
loop_size
=
100
)
finally
:
transaction
.
get
().
__class__
.
commit
=
commit
self
.
assertEqual
(
activity_tool
.
countMessage
(
method_id
=
'dummy_activity'
),
0
)
finally
:
delattr
(
Organisation
,
'modifySQL'
)
def
TryActivityRaiseInCommitDoesNotStallActivityConection
(
self
,
activity
):
"""
Check that an activity which commit raises (as would a regular conflict
...
...
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