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
7ca256cd
Commit
7ca256cd
authored
Feb 17, 2024
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stripe: fix test (ok for py2)
parent
c4e6ebe3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
bt5/erp5_stripe/TestTemplateItem/portal_components/test.erp5.testStripe.py
...estTemplateItem/portal_components/test.erp5.testStripe.py
+10
-9
No files found.
bt5/erp5_stripe/TestTemplateItem/portal_components/test.erp5.testStripe.py
View file @
7ca256cd
...
...
@@ -26,7 +26,6 @@
##############################################################################
import
json
from
six.moves
import
urllib
from
io
import
BytesIO
from
six.moves.urllib.parse
import
parse_qs
...
...
@@ -461,8 +460,8 @@ class TestStripePaymentSession(ERP5TypeTestCase):
)
ret
=
self
.
publish
(
"%s/ERP5Site_receiveStripeWebHook"
%
self
.
portal
.
getPath
(),
stdin
=
BytesIO
(
urllib
.
parse
.
urlencode
({
"BODY"
:
json
.
dumps
({
stdin
=
BytesIO
(
json
.
dumps
({
"url"
:
"https://stripe.url"
,
"id"
:
"evt_%s"
%
"abc321_expired"
,
"object"
:
"event"
,
...
...
@@ -474,9 +473,10 @@ class TestStripePaymentSession(ERP5TypeTestCase):
"object"
:
"checkout.session"
}
}
})
}).
encode
()
),
})
.
encode
()
),
request_method
=
"POST"
,
env
=
{
'CONTENT_TYPE'
:
'application/json'
},
handle_errors
=
False
)
self
.
assertEqual
(
200
,
ret
.
getStatus
())
self
.
tic
()
...
...
@@ -658,8 +658,8 @@ class TestStripePaymentSession(ERP5TypeTestCase):
)
ret
=
self
.
publish
(
"%s/ERP5Site_receiveStripeWebHook"
%
self
.
portal
.
getPath
(),
stdin
=
BytesIO
(
urllib
.
parse
.
urlencode
({
"BODY"
:
json
.
dumps
({
stdin
=
BytesIO
(
json
.
dumps
({
"id"
:
"evt_%s"
%
session_id
,
"object"
:
"event"
,
"data"
:
{
...
...
@@ -670,9 +670,10 @@ class TestStripePaymentSession(ERP5TypeTestCase):
"object"
:
"checkout.session"
}
}
})
}).
encode
()
),
})
.
encode
(),
),
request_method
=
"POST"
,
env
=
{
'CONTENT_TYPE'
:
'application/json'
},
handle_errors
=
False
)
self
.
assertEqual
(
200
,
ret
.
getStatus
())
self
.
tic
()
...
...
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