Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
Léo-Paul Géneau
slapos.core
Commits
2ce0fccc
Commit
2ce0fccc
authored
Aug 07, 2020
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
slapos_payzen: Ensure transaction is not None before process
This also changes the raise for a more appropriated Exception
parent
32aa7a53
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
master/bt5/slapos_payzen/SkinTemplateItem/portal_skins/slapos_payzen/PayzenEvent_processUpdate.py
...m/portal_skins/slapos_payzen/PayzenEvent_processUpdate.py
+3
-0
master/bt5/slapos_payzen/TestTemplateItem/portal_components/test.erp5.testSlapOSPayzenSkins.py
...Item/portal_components/test.erp5.testSlapOSPayzenSkins.py
+1
-1
No files found.
master/bt5/slapos_payzen/SkinTemplateItem/portal_skins/slapos_payzen/PayzenEvent_processUpdate.py
View file @
2ce0fccc
...
@@ -10,6 +10,9 @@ def storeWorkflowComment(ctx, comment):
...
@@ -10,6 +10,9 @@ def storeWorkflowComment(ctx, comment):
payzen_event
=
context
payzen_event
=
context
transaction
=
payzen_event
.
getDestinationValue
()
transaction
=
payzen_event
.
getDestinationValue
()
if
transaction
is
None
:
raise
ValueError
(
"Unable to find related transaction"
)
assert
signature
in
(
True
,
False
)
assert
signature
in
(
True
,
False
)
if
signature
is
False
:
if
signature
is
False
:
# signature is wrong, bye bye
# signature is wrong, bye bye
...
...
master/bt5/slapos_payzen/TestTemplateItem/portal_components/test.erp5.testSlapOSPayzenSkins.py
View file @
2ce0fccc
...
@@ -189,7 +189,7 @@ class TestSlapOSPayzenEvent_processUpdate(SlapOSTestCaseMixinWithAbort):
...
@@ -189,7 +189,7 @@ class TestSlapOSPayzenEvent_processUpdate(SlapOSTestCaseMixinWithAbort):
def
test_processUpdate_noTransaction
(
self
):
def
test_processUpdate_noTransaction
(
self
):
event
=
self
.
createPayzenEvent
()
event
=
self
.
createPayzenEvent
()
self
.
assertRaises
(
self
.
assertRaises
(
Attribut
eError
,
Valu
eError
,
event
.
PayzenEvent_processUpdate
,
event
.
PayzenEvent_processUpdate
,
'a'
,
'b'
)
'a'
,
'b'
)
...
...
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