-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(connector): [Authorizedotnet]fix error deserialization incase of …
…authentication failure (#2600) Signed-off-by: chikke srujan <[email protected]>
- Loading branch information
1 parent
df17617
commit 4859b7d
Showing
23 changed files
with
633 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...w Testcases/Happy Cases/Scenario4-Create failed payment with confirm true copy/.meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"childrenOrder": ["Payments - Create", "Payments - Retrieve"] | ||
} |
3 changes: 3 additions & 0 deletions
3
...Scenario4-Create failed payment with confirm true copy/Payments - Create/.event.meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"eventOrder": ["event.test.js", "event.prerequest.js"] | ||
} |
1 change: 1 addition & 0 deletions
1
...nario4-Create failed payment with confirm true copy/Payments - Create/event.prerequest.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pm.environment.set("random_number", _.random(1000, 100000)); |
91 changes: 91 additions & 0 deletions
91
...es/Scenario4-Create failed payment with confirm true copy/Payments - Create/event.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
// Validate status 2xx | ||
pm.test("[POST]::/payments - Status code is 2xx", function () { | ||
pm.response.to.be.success; | ||
}); | ||
|
||
// Validate if response header has matching content-type | ||
pm.test("[POST]::/payments - Content-Type is application/json", function () { | ||
pm.expect(pm.response.headers.get("Content-Type")).to.include( | ||
"application/json", | ||
); | ||
}); | ||
|
||
// Validate if response has JSON Body | ||
pm.test("[POST]::/payments - Response has JSON Body", function () { | ||
pm.response.to.have.jsonBody(); | ||
}); | ||
|
||
// Set response object as internal variable | ||
let jsonData = {}; | ||
try { | ||
jsonData = pm.response.json(); | ||
} catch (e) {} | ||
|
||
// pm.collectionVariables - Set payment_id as variable for jsonData.payment_id | ||
if (jsonData?.payment_id) { | ||
pm.collectionVariables.set("payment_id", jsonData.payment_id); | ||
console.log( | ||
"- use {{payment_id}} as collection variable for value", | ||
jsonData.payment_id, | ||
); | ||
} else { | ||
console.log( | ||
"INFO - Unable to assign variable {{payment_id}}, as jsonData.payment_id is undefined.", | ||
); | ||
} | ||
|
||
// pm.collectionVariables - Set mandate_id as variable for jsonData.mandate_id | ||
if (jsonData?.mandate_id) { | ||
pm.collectionVariables.set("mandate_id", jsonData.mandate_id); | ||
console.log( | ||
"- use {{mandate_id}} as collection variable for value", | ||
jsonData.mandate_id, | ||
); | ||
} else { | ||
console.log( | ||
"INFO - Unable to assign variable {{mandate_id}}, as jsonData.mandate_id is undefined.", | ||
); | ||
} | ||
|
||
// pm.collectionVariables - Set client_secret as variable for jsonData.client_secret | ||
if (jsonData?.client_secret) { | ||
pm.collectionVariables.set("client_secret", jsonData.client_secret); | ||
console.log( | ||
"- use {{client_secret}} as collection variable for value", | ||
jsonData.client_secret, | ||
); | ||
} else { | ||
console.log( | ||
"INFO - Unable to assign variable {{client_secret}}, as jsonData.client_secret is undefined.", | ||
); | ||
} | ||
|
||
// Response body should have value "processing" or "failed" for "error_code" | ||
if (jsonData?.error_code) { | ||
pm.test( | ||
"[POST]::/payments - Content check if value for 'error_code' matches '3' or '11' ", | ||
function () { | ||
pm.expect(jsonData.error_code).to.be.oneOf(["3", "11"]); | ||
}, | ||
); | ||
} | ||
|
||
// Response body should have value "processing" or "failed" for "status" | ||
if (jsonData?.error_message) { | ||
pm.test( | ||
"[POST]::/payments - Content check if value for 'error_message' matches 'processing' or 'This transaction has been declined.' ", | ||
function () { | ||
pm.expect(jsonData.error_message).to.be.oneOf(["A duplicate transaction has been submitted.", "This transaction has been declined."]); | ||
}, | ||
); | ||
} | ||
|
||
// Response body should have value "processing" or "failed" for "status" | ||
if (jsonData?.status) { | ||
pm.test( | ||
"[POST]::/payments - Content check if value for 'status' matches 'processing' or 'failed' ", | ||
function () { | ||
pm.expect(jsonData.status).to.be.oneOf(["failed"]); | ||
}, | ||
); | ||
} |
87 changes: 87 additions & 0 deletions
87
...ses/Scenario4-Create failed payment with confirm true copy/Payments - Create/request.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
{ | ||
"method": "POST", | ||
"header": [ | ||
{ | ||
"key": "Content-Type", | ||
"value": "application/json" | ||
}, | ||
{ | ||
"key": "Accept", | ||
"value": "application/json" | ||
} | ||
], | ||
"body": { | ||
"mode": "raw", | ||
"raw_json_formatted": { | ||
"amount": 7003, | ||
"currency": "USD", | ||
"confirm": true, | ||
"routing": { | ||
"data": "authorizedotnet", | ||
"type": "single" | ||
}, | ||
"capture_method": "automatic", | ||
"capture_on": "2022-09-10T10:11:12Z", | ||
"customer_id": "StripeCustomer", | ||
"email": "[email protected]", | ||
"name": "John Doe", | ||
"phone": "999999999", | ||
"phone_country_code": "+65", | ||
"description": "Its my first payment request", | ||
"authentication_type": "no_three_ds", | ||
"return_url": "https://duck.com", | ||
"payment_method": "card", | ||
"payment_method_data": { | ||
"card": { | ||
"card_number": "370000000000002", | ||
"card_exp_month": "10", | ||
"card_exp_year": "25", | ||
"card_holder_name": "joseph Doe", | ||
"card_cvc": "900" | ||
} | ||
}, | ||
"billing": { | ||
"address": { | ||
"line1": "1467", | ||
"line2": "Harrison Street", | ||
"line3": "Harrison Street", | ||
"city": "San Fransico", | ||
"state": "California", | ||
"zip": "94122", | ||
"country": "US", | ||
"first_name": "PiX" | ||
} | ||
}, | ||
"shipping": { | ||
"address": { | ||
"line1": "1467", | ||
"line2": "Harrison Street", | ||
"line3": "Harrison Street", | ||
"city": "San Fransico", | ||
"state": "California", | ||
"zip": "94122", | ||
"country": "US", | ||
"first_name": "PiX" | ||
} | ||
}, | ||
"statement_descriptor_name": "joseph", | ||
"statement_descriptor_suffix": "JS", | ||
"metadata": { | ||
"udf1": "value1", | ||
"new_customer": "true", | ||
"login_date": "2019-09-10T10:11:12Z" | ||
} | ||
}, | ||
"options": { | ||
"raw": { | ||
"language": "json" | ||
} | ||
} | ||
}, | ||
"url": { | ||
"raw": "{{baseUrl}}/payments", | ||
"host": ["{{baseUrl}}"], | ||
"path": ["payments"] | ||
}, | ||
"description": "To process a payment you will have to create a payment, attach a payment method and confirm. Depending on the user journey you wish to achieve, you may opt to all the steps in a single request or in a sequence of API request using following APIs: (i) Payments - Update, (ii) Payments - Confirm, and (iii) Payments - Capture" | ||
} |
1 change: 1 addition & 0 deletions
1
...es/Scenario4-Create failed payment with confirm true copy/Payments - Create/response.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
3 changes: 3 additions & 0 deletions
3
...enario4-Create failed payment with confirm true copy/Payments - Retrieve/.event.meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"eventOrder": ["event.test.js"] | ||
} |
71 changes: 71 additions & 0 deletions
71
.../Scenario4-Create failed payment with confirm true copy/Payments - Retrieve/event.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// Validate status 2xx | ||
pm.test("[POST]::/payments - Status code is 2xx", function () { | ||
pm.response.to.be.success; | ||
}); | ||
|
||
// Validate if response header has matching content-type | ||
pm.test("[POST]::/payments - Content-Type is application/json", function () { | ||
pm.expect(pm.response.headers.get("Content-Type")).to.include( | ||
"application/json", | ||
); | ||
}); | ||
|
||
// Validate if response has JSON Body | ||
pm.test("[POST]::/payments - Response has JSON Body", function () { | ||
pm.response.to.have.jsonBody(); | ||
}); | ||
|
||
// Set response object as internal variable | ||
let jsonData = {}; | ||
try { | ||
jsonData = pm.response.json(); | ||
} catch (e) {} | ||
|
||
// pm.collectionVariables - Set payment_id as variable for jsonData.payment_id | ||
if (jsonData?.payment_id) { | ||
pm.collectionVariables.set("payment_id", jsonData.payment_id); | ||
console.log( | ||
"- use {{payment_id}} as collection variable for value", | ||
jsonData.payment_id, | ||
); | ||
} else { | ||
console.log( | ||
"INFO - Unable to assign variable {{payment_id}}, as jsonData.payment_id is undefined.", | ||
); | ||
} | ||
|
||
// pm.collectionVariables - Set mandate_id as variable for jsonData.mandate_id | ||
if (jsonData?.mandate_id) { | ||
pm.collectionVariables.set("mandate_id", jsonData.mandate_id); | ||
console.log( | ||
"- use {{mandate_id}} as collection variable for value", | ||
jsonData.mandate_id, | ||
); | ||
} else { | ||
console.log( | ||
"INFO - Unable to assign variable {{mandate_id}}, as jsonData.mandate_id is undefined.", | ||
); | ||
} | ||
|
||
// pm.collectionVariables - Set client_secret as variable for jsonData.client_secret | ||
if (jsonData?.client_secret) { | ||
pm.collectionVariables.set("client_secret", jsonData.client_secret); | ||
console.log( | ||
"- use {{client_secret}} as collection variable for value", | ||
jsonData.client_secret, | ||
); | ||
} else { | ||
console.log( | ||
"INFO - Unable to assign variable {{client_secret}}, as jsonData.client_secret is undefined.", | ||
); | ||
} | ||
|
||
// Response body should have value "processing" or "failed" for "status" | ||
if (jsonData?.status) { | ||
pm.test( | ||
"[POST]::/payments - Content check if value for 'status' matches 'processing' or 'failed' ", | ||
function () { | ||
pm.expect(jsonData.status).to.be.oneOf(["processing", "failed"]); | ||
}, | ||
); | ||
} |
28 changes: 28 additions & 0 deletions
28
...s/Scenario4-Create failed payment with confirm true copy/Payments - Retrieve/request.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"method": "GET", | ||
"header": [ | ||
{ | ||
"key": "Accept", | ||
"value": "application/json" | ||
} | ||
], | ||
"url": { | ||
"raw": "{{baseUrl}}/payments/:id?force_sync=true", | ||
"host": ["{{baseUrl}}"], | ||
"path": ["payments", ":id"], | ||
"query": [ | ||
{ | ||
"key": "force_sync", | ||
"value": "true" | ||
} | ||
], | ||
"variable": [ | ||
{ | ||
"key": "id", | ||
"value": "{{payment_id}}", | ||
"description": "(Required) unique payment id" | ||
} | ||
] | ||
}, | ||
"description": "To retrieve the properties of a Payment. This may be used to get the status of a previously initiated payment or next action for an ongoing payment" | ||
} |
Oops, something went wrong.