mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
chore(postman): update Postman collection files
This commit is contained in:
@ -14738,21 +14738,21 @@
|
||||
" );",
|
||||
"}",
|
||||
"",
|
||||
"// Response body should have value \"requires_customer_action\" for \"status\"",
|
||||
"// Response body should have value \"failed\" for \"status\"",
|
||||
"if (jsonData?.status) {",
|
||||
" pm.test(",
|
||||
" \"[POST]::/payments/:id/confirm - Content check if value for 'status' matches 'requires_customer_action'\",",
|
||||
" \"[POST]::/payments/:id/confirm - Content check if value for 'status' matches 'failed'\",",
|
||||
" function () {",
|
||||
" pm.expect(jsonData.status).to.eql(\"requires_customer_action\");",
|
||||
" pm.expect(jsonData.status).to.eql(\"failed\");",
|
||||
" },",
|
||||
" );",
|
||||
"}",
|
||||
"",
|
||||
"// Response body should have \"next_action.redirect_to_url\"",
|
||||
"// Response body should have \"next_action\"",
|
||||
"pm.test(",
|
||||
" \"[POST]::/payments - Content check if 'next_action.redirect_to_url' exists\",",
|
||||
" \"[POST]::/payments - Content check if 'next_action' exists\",",
|
||||
" function () {",
|
||||
" pm.expect(typeof jsonData.next_action.redirect_to_url !== \"undefined\").to.be",
|
||||
" pm.expect(typeof jsonData.next_action !== \"undefined\").to.be",
|
||||
" .true;",
|
||||
" },",
|
||||
");",
|
||||
@ -14767,6 +14767,26 @@
|
||||
" );",
|
||||
"}",
|
||||
"",
|
||||
"// Response body should have value \"payment_method_not_available\" for \"error_code\"",
|
||||
"if (jsonData?.error_code) {",
|
||||
" pm.test(",
|
||||
" \"[POST]::/payments/:id/confirm - Content check if value for 'error_code' matches 'payment_method_not_available'\",",
|
||||
" function () {",
|
||||
" pm.expect(jsonData.error_code).to.eql(\"payment_method_not_available\");",
|
||||
" },",
|
||||
" );",
|
||||
"}",
|
||||
"",
|
||||
"// Response body should have value \"Sofort is deprecated and can no longer be used for payment acceptance. Please refer to https://docs.stripe.com/payments/sofort\" for \"error_message\"",
|
||||
"if (jsonData?.error_message) {",
|
||||
" pm.test(",
|
||||
" \"[POST]::/payments/:id/confirm - Content check if value for 'error_message' matches 'Sofort is deprecated and can no longer be used for payment acceptance. Please refer to https://docs.stripe.com/payments/sofort'\",",
|
||||
" function () {",
|
||||
" pm.expect(jsonData.error_message).to.eql(\"Sofort is deprecated and can no longer be used for payment acceptance. Please refer to https://docs.stripe.com/payments/sofort\");",
|
||||
" },",
|
||||
" );",
|
||||
"}",
|
||||
"",
|
||||
"// Response body should have value \"stripe\" for \"connector\"",
|
||||
"if (jsonData?.connector) {",
|
||||
" pm.test(",
|
||||
@ -14923,16 +14943,35 @@
|
||||
" );",
|
||||
"}",
|
||||
"",
|
||||
"// Response body should have value \"requires_customer_action\" for \"status\"",
|
||||
"// Response body should have value \"failed\" for \"status\"",
|
||||
"if (jsonData?.status) {",
|
||||
" pm.test(",
|
||||
" \"[POST]::/payments:id - Content check if value for 'status' matches 'requires_customer_action'\",",
|
||||
" \"[POST]::/payments:id - Content check if value for 'status' matches 'failed'\",",
|
||||
" function () {",
|
||||
" pm.expect(jsonData.status).to.eql(\"requires_customer_action\");",
|
||||
" pm.expect(jsonData.status).to.eql(\"failed\");",
|
||||
" },",
|
||||
" );",
|
||||
"}",
|
||||
""
|
||||
"",
|
||||
"// Response body should have value \"payment_method_not_available\" for \"error_code\"",
|
||||
"if (jsonData?.error_code) {",
|
||||
" pm.test(",
|
||||
" \"[POST]::/payments/:id/confirm - Content check if value for 'error_code' matches 'payment_method_not_available'\",",
|
||||
" function () {",
|
||||
" pm.expect(jsonData.error_code).to.eql(\"payment_method_not_available\");",
|
||||
" },",
|
||||
" );",
|
||||
"}",
|
||||
"",
|
||||
"// Response body should have value \"Sofort is deprecated and can no longer be used for payment acceptance. Please refer to https://docs.stripe.com/payments/sofort\" for \"error_message\"",
|
||||
"if (jsonData?.error_message) {",
|
||||
" pm.test(",
|
||||
" \"[POST]::/payments/:id/confirm - Content check if value for 'error_message' matches 'Sofort is deprecated and can no longer be used for payment acceptance. Please refer to https://docs.stripe.com/payments/sofort'\",",
|
||||
" function () {",
|
||||
" pm.expect(jsonData.error_message).to.eql(\"Sofort is deprecated and can no longer be used for payment acceptance. Please refer to https://docs.stripe.com/payments/sofort\");",
|
||||
" },",
|
||||
" );",
|
||||
"}"
|
||||
],
|
||||
"type": "text/javascript"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user