mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
656 lines
23 KiB
Rust
656 lines
23 KiB
Rust
use std::{str::FromStr, time::Duration};
|
|
|
|
use cards::CardNumber;
|
|
use common_utils::types::MinorUnit;
|
|
use hyperswitch_domain_models::address::{Address, AddressDetails, PhoneDetails};
|
|
use masking::Secret;
|
|
use router::types::{self, api, domain, storage::enums};
|
|
|
|
use crate::{
|
|
connector_auth,
|
|
utils::{self, ConnectorActions},
|
|
};
|
|
|
|
#[derive(Clone, Copy)]
|
|
struct ForteTest;
|
|
impl ConnectorActions for ForteTest {}
|
|
impl utils::Connector for ForteTest {
|
|
fn get_data(&self) -> api::ConnectorData {
|
|
use router::connector::Forte;
|
|
utils::construct_connector_data_old(
|
|
Box::new(Forte::new()),
|
|
types::Connector::Forte,
|
|
api::GetToken::Connector,
|
|
None,
|
|
)
|
|
}
|
|
|
|
fn get_auth_token(&self) -> types::ConnectorAuthType {
|
|
utils::to_connector_auth_type(
|
|
connector_auth::ConnectorAuthentication::new()
|
|
.forte
|
|
.expect("Missing connector authentication configuration")
|
|
.into(),
|
|
)
|
|
}
|
|
|
|
fn get_name(&self) -> String {
|
|
"forte".to_string()
|
|
}
|
|
}
|
|
|
|
static CONNECTOR: ForteTest = ForteTest {};
|
|
|
|
fn get_payment_data() -> Option<types::PaymentsAuthorizeData> {
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_number: CardNumber::from_str("4111111111111111").unwrap(),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
})
|
|
}
|
|
|
|
fn get_default_payment_info() -> Option<utils::PaymentInfo> {
|
|
Some(utils::PaymentInfo {
|
|
address: Some(types::PaymentAddress::new(
|
|
None,
|
|
Some(Address {
|
|
address: Some(AddressDetails {
|
|
first_name: Some(Secret::new("first".to_string())),
|
|
last_name: Some(Secret::new("last".to_string())),
|
|
line1: Some(Secret::new("line1".to_string())),
|
|
line2: Some(Secret::new("line2".to_string())),
|
|
city: Some("city".to_string()),
|
|
zip: Some(Secret::new("zip".to_string())),
|
|
country: Some(api_models::enums::CountryAlpha2::IN),
|
|
..Default::default()
|
|
}),
|
|
phone: Some(PhoneDetails {
|
|
number: Some(Secret::new("9123456789".to_string())),
|
|
country_code: Some("+91".to_string()),
|
|
}),
|
|
email: None,
|
|
}),
|
|
None,
|
|
None,
|
|
)),
|
|
..Default::default()
|
|
})
|
|
}
|
|
|
|
// Cards Positive Tests
|
|
// Creates a payment using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_only_authorize_payment() {
|
|
let response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.expect("Authorize payment response");
|
|
assert_eq!(response.status, enums::AttemptStatus::Authorized);
|
|
}
|
|
|
|
// Captures a payment using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_capture_authorized_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.expect("Authorize payment response");
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
let connector_meta = utils::get_connector_metadata(authorize_response.response);
|
|
let response = CONNECTOR
|
|
.capture_payment(
|
|
txn_id,
|
|
Some(types::PaymentsCaptureData {
|
|
connector_meta,
|
|
..utils::PaymentCaptureType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.expect("Capture payment response");
|
|
//Status of the Payments is always in Pending State, Forte has to settle the sandbox transaction manually
|
|
assert_eq!(response.status, enums::AttemptStatus::Pending);
|
|
}
|
|
|
|
// Partially captures a payment using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_partially_capture_authorized_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.expect("Authorize payment response");
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
let connector_meta = utils::get_connector_metadata(authorize_response.response);
|
|
let response = CONNECTOR
|
|
.capture_payment(
|
|
txn_id,
|
|
Some(types::PaymentsCaptureData {
|
|
connector_meta,
|
|
amount_to_capture: 50,
|
|
..utils::PaymentCaptureType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.expect("Capture payment response");
|
|
//Status of the Payments is always in Pending State, Forte has to settle the sandbox transactions manually
|
|
assert_eq!(response.status, enums::AttemptStatus::Pending);
|
|
}
|
|
|
|
// Synchronizes a payment using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_sync_authorized_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.expect("Authorize payment response");
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response);
|
|
let response = CONNECTOR
|
|
.psync_retry_till_status_matches(
|
|
enums::AttemptStatus::Authorized,
|
|
Some(types::PaymentsSyncData {
|
|
connector_transaction_id: types::ResponseId::ConnectorTransactionId(
|
|
txn_id.unwrap(),
|
|
),
|
|
encoded_data: None,
|
|
capture_method: None,
|
|
sync_type: types::SyncRequestType::SinglePaymentSync,
|
|
connector_meta: None,
|
|
mandate_id: None,
|
|
payment_method_type: None,
|
|
currency: enums::Currency::USD,
|
|
payment_experience: None,
|
|
integrity_object: None,
|
|
amount: MinorUnit::new(100),
|
|
..Default::default()
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.expect("PSync response");
|
|
assert_eq!(response.status, enums::AttemptStatus::Authorized,);
|
|
}
|
|
|
|
// Voids a payment using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_void_authorized_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.expect("Authorize payment response");
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
let connector_meta = utils::get_connector_metadata(authorize_response.response);
|
|
let response = CONNECTOR
|
|
.void_payment(
|
|
txn_id,
|
|
Some(types::PaymentsCancelData {
|
|
connector_transaction_id: String::from(""),
|
|
cancellation_reason: Some("requested_by_customer".to_string()),
|
|
connector_meta,
|
|
..Default::default()
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.expect("Void payment response");
|
|
//Forte doesnot send status in response, so setting it to pending so later it will be synced
|
|
assert_eq!(response.status, enums::AttemptStatus::Pending);
|
|
}
|
|
|
|
// Refunds a payment using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
#[ignore = "Since Payment status is always in pending, cannot refund"]
|
|
async fn should_refund_manually_captured_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), None)
|
|
.await
|
|
.expect("Authorize payment response");
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
let capture_connector_meta = utils::get_connector_metadata(authorize_response.response);
|
|
let capture_response = CONNECTOR
|
|
.capture_payment(
|
|
txn_id.clone(),
|
|
Some(types::PaymentsCaptureData {
|
|
connector_meta: capture_connector_meta,
|
|
..utils::PaymentCaptureType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.expect("Capture payment response");
|
|
let refund_connector_metadata = utils::get_connector_metadata(capture_response.response);
|
|
let response = CONNECTOR
|
|
.refund_payment(
|
|
txn_id,
|
|
Some(types::RefundsData {
|
|
connector_metadata: refund_connector_metadata,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Partially refunds a payment using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
#[ignore = "Since Payment status is always in pending, cannot refund"]
|
|
async fn should_partially_refund_manually_captured_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), None)
|
|
.await
|
|
.expect("Authorize payment response");
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
let capture_connector_meta = utils::get_connector_metadata(authorize_response.response);
|
|
let capture_response = CONNECTOR
|
|
.capture_payment(
|
|
txn_id.clone(),
|
|
Some(types::PaymentsCaptureData {
|
|
connector_meta: capture_connector_meta,
|
|
..utils::PaymentCaptureType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.expect("Capture payment response");
|
|
let refund_connector_metadata = utils::get_connector_metadata(capture_response.response);
|
|
let response = CONNECTOR
|
|
.refund_payment(
|
|
txn_id,
|
|
Some(types::RefundsData {
|
|
connector_metadata: refund_connector_metadata,
|
|
refund_amount: 50,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Synchronizes a refund using the manual capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
#[ignore = "Since Payment status is always in pending, cannot refund"]
|
|
async fn should_sync_manually_captured_refund() {
|
|
let refund_response = CONNECTOR
|
|
.capture_payment_and_refund(None, None, None, get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
let response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
refund_response.response.unwrap().connector_refund_id,
|
|
None,
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Creates a payment using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_make_payment() {
|
|
let response = CONNECTOR
|
|
.make_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
//Status of the Payments is always in Pending State, Forte has to settle the sandbox transaction manually
|
|
assert_eq!(response.status, enums::AttemptStatus::Pending);
|
|
}
|
|
|
|
// Synchronizes a payment using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_sync_auto_captured_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.make_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(authorize_response.status, enums::AttemptStatus::Pending);
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response);
|
|
assert_ne!(txn_id, None, "Empty connector transaction id");
|
|
let response = CONNECTOR
|
|
.psync_retry_till_status_matches(
|
|
enums::AttemptStatus::Charged,
|
|
Some(types::PaymentsSyncData {
|
|
connector_transaction_id: types::ResponseId::ConnectorTransactionId(
|
|
txn_id.unwrap(),
|
|
),
|
|
encoded_data: None,
|
|
capture_method: None,
|
|
..Default::default()
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
//Status of the Payments is always in Pending State, Forte has to settle the sandbox transaction manually
|
|
assert_eq!(response.status, enums::AttemptStatus::Pending,);
|
|
}
|
|
|
|
// Refunds a payment using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
#[ignore = "Since Payment status is always in pending, cannot refund"]
|
|
async fn should_refund_auto_captured_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.make_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
tokio::time::sleep(Duration::from_secs(10)).await;
|
|
let refund_connector_metadata = utils::get_connector_metadata(authorize_response.response);
|
|
let response = CONNECTOR
|
|
.refund_payment(
|
|
txn_id,
|
|
Some(types::RefundsData {
|
|
connector_metadata: refund_connector_metadata,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Pending,
|
|
);
|
|
}
|
|
|
|
// Partially refunds a payment using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
#[ignore = "Since Payment status is always in pending, cannot refund"]
|
|
async fn should_partially_refund_succeeded_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.make_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
tokio::time::sleep(Duration::from_secs(10)).await;
|
|
let refund_connector_metadata = utils::get_connector_metadata(authorize_response.response);
|
|
let response = CONNECTOR
|
|
.refund_payment(
|
|
txn_id,
|
|
Some(types::RefundsData {
|
|
refund_amount: 50,
|
|
connector_metadata: refund_connector_metadata,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Pending,
|
|
);
|
|
}
|
|
|
|
// Creates multiple refunds against a payment using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
#[ignore = "Since Payment status is always in pending, cannot refund"]
|
|
async fn should_refund_succeeded_payment_multiple_times() {
|
|
let authorize_response = CONNECTOR
|
|
.make_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
tokio::time::sleep(Duration::from_secs(10)).await;
|
|
|
|
let refund_connector_metadata = utils::get_connector_metadata(authorize_response.response);
|
|
for _x in 0..2 {
|
|
let refund_response = CONNECTOR
|
|
.refund_payment(
|
|
txn_id.clone(),
|
|
Some(types::RefundsData {
|
|
connector_metadata: refund_connector_metadata.clone(),
|
|
refund_amount: 50,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
refund_response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Pending,
|
|
);
|
|
}
|
|
}
|
|
|
|
// Synchronizes a refund using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
#[ignore = "Since Payment status is always in pending, cannot refund"]
|
|
async fn should_sync_refund() {
|
|
let authorize_response = CONNECTOR
|
|
.make_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
tokio::time::sleep(Duration::from_secs(10)).await;
|
|
let refund_connector_metadata = utils::get_connector_metadata(authorize_response.response);
|
|
let refund_response = CONNECTOR
|
|
.refund_payment(
|
|
txn_id,
|
|
Some(types::RefundsData {
|
|
connector_metadata: refund_connector_metadata,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
let response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
refund_response.response.unwrap().connector_refund_id,
|
|
None,
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Pending,
|
|
);
|
|
}
|
|
|
|
// Cards Negative scenarios
|
|
// Creates a payment with incorrect CVC.
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_incorrect_cvc() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_cvc: Secret::new("12345".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"INVALID CVV DATA".to_string(),
|
|
);
|
|
}
|
|
|
|
// Creates a payment with incorrect expiry month.
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_invalid_exp_month() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_exp_month: Secret::new("20".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"INVALID EXPIRATION DATE".to_string(),
|
|
);
|
|
}
|
|
|
|
// Creates a payment with incorrect expiry year.
|
|
#[actix_web::test]
|
|
#[ignore]
|
|
async fn should_fail_payment_for_incorrect_expiry_year() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_exp_year: Secret::new("2000".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Your card's expiration year is invalid.".to_string(),
|
|
);
|
|
}
|
|
|
|
// Voids a payment using automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_fail_void_payment_for_auto_capture() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(get_payment_data(), get_default_payment_info())
|
|
.await
|
|
.expect("Authorize payment response");
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
let capture_connector_meta = utils::get_connector_metadata(authorize_response.response);
|
|
let capture_response = CONNECTOR
|
|
.capture_payment(
|
|
txn_id,
|
|
Some(types::PaymentsCaptureData {
|
|
connector_meta: capture_connector_meta,
|
|
..utils::PaymentCaptureType::default().0
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.expect("Capture payment response");
|
|
let txn_id = utils::get_connector_transaction_id(capture_response.clone().response).unwrap();
|
|
let connector_meta = utils::get_connector_metadata(capture_response.response);
|
|
let void_response = CONNECTOR
|
|
.void_payment(
|
|
txn_id,
|
|
Some(types::PaymentsCancelData {
|
|
cancellation_reason: Some("requested_by_customer".to_string()),
|
|
connector_meta,
|
|
..Default::default()
|
|
}),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.expect("Void payment response");
|
|
assert_eq!(
|
|
void_response.response.unwrap_err().message,
|
|
"ORIG TRANS NOT FOUND"
|
|
);
|
|
}
|
|
|
|
// Captures a payment using invalid connector payment id.
|
|
#[actix_web::test]
|
|
async fn should_fail_capture_for_invalid_payment() {
|
|
let connector_meta = Some(serde_json::json!({
|
|
"auth_id": "56YH8TZ",
|
|
}));
|
|
let capture_response = CONNECTOR
|
|
.capture_payment(
|
|
"123456789".to_string(),
|
|
Some(types::PaymentsCaptureData {
|
|
connector_meta,
|
|
..utils::PaymentCaptureType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
capture_response.response.unwrap_err().message,
|
|
"Error[1]: The value for field transaction_id is invalid. Check for possible formatting issues. Error[2]: The value for field transaction_id is invalid. Check for possible formatting issues.",
|
|
);
|
|
}
|
|
|
|
// Refunds a payment with refund amount higher than payment amount.
|
|
#[actix_web::test]
|
|
#[ignore]
|
|
async fn should_fail_for_refund_amount_higher_than_payment_amount() {
|
|
let authorize_response = CONNECTOR
|
|
.make_payment(get_payment_data(), None)
|
|
.await
|
|
.unwrap();
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response.clone()).unwrap();
|
|
tokio::time::sleep(Duration::from_secs(10)).await;
|
|
let refund_connector_metadata = utils::get_connector_metadata(authorize_response.response);
|
|
let response = CONNECTOR
|
|
.refund_payment(
|
|
txn_id,
|
|
Some(types::RefundsData {
|
|
refund_amount: 1500,
|
|
connector_metadata: refund_connector_metadata,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Refund amount (₹1.50) is greater than charge amount (₹1.00)",
|
|
);
|
|
}
|
|
|
|
// Connector dependent test cases goes here
|
|
|
|
// [#478]: add unit tests for non 3DS, wallets & webhooks in connector tests
|
|
|
|
// Cards Negative scenarios
|
|
// Creates a payment with incorrect card issuer.
|
|
|
|
#[actix_web::test]
|
|
async fn should_throw_not_implemented_for_unsupported_issuer() {
|
|
let authorize_data = Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_number: CardNumber::from_str("6759649826438453").unwrap(),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
capture_method: Some(enums::CaptureMethod::Automatic),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
});
|
|
let response = CONNECTOR.make_payment(authorize_data, None).await;
|
|
assert_eq!(
|
|
*response.unwrap_err().current_context(),
|
|
router::core::errors::ConnectorError::NotSupported {
|
|
message: "Maestro".to_string(),
|
|
connector: "Forte",
|
|
}
|
|
)
|
|
}
|