mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
539 lines
16 KiB
Rust
539 lines
16 KiB
Rust
use masking::Secret;
|
|
use router::types::{self, api, storage::enums, ConnectorAuthType};
|
|
|
|
use crate::{
|
|
connector_auth,
|
|
utils::{self, ConnectorActions},
|
|
};
|
|
|
|
#[derive(Clone, Copy)]
|
|
struct BluesnapTest;
|
|
impl ConnectorActions for BluesnapTest {}
|
|
static CONNECTOR: BluesnapTest = BluesnapTest {};
|
|
impl utils::Connector for BluesnapTest {
|
|
fn get_data(&self) -> types::api::ConnectorData {
|
|
use router::connector::Bluesnap;
|
|
types::api::ConnectorData {
|
|
connector: Box::new(&Bluesnap),
|
|
connector_name: types::Connector::Bluesnap,
|
|
get_token: types::api::GetToken::Connector,
|
|
}
|
|
}
|
|
|
|
fn get_auth_token(&self) -> ConnectorAuthType {
|
|
types::ConnectorAuthType::from(
|
|
connector_auth::ConnectorAuthentication::new()
|
|
.bluesnap
|
|
.expect("Missing connector authentication configuration"),
|
|
)
|
|
}
|
|
|
|
fn get_name(&self) -> String {
|
|
"bluesnap".to_string()
|
|
}
|
|
}
|
|
|
|
// Cards Positive Tests
|
|
// Creates a payment using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_only_authorize_payment() {
|
|
let response = CONNECTOR
|
|
.authorize_payment(None, None)
|
|
.await
|
|
.expect("Authorize payment response");
|
|
assert_eq!(response.status, enums::AttemptStatus::Authorized);
|
|
}
|
|
|
|
// Captures a payment using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_capture_authorized_payment() {
|
|
let response = CONNECTOR
|
|
.authorize_and_capture_payment(None, None, None)
|
|
.await
|
|
.expect("Capture payment response");
|
|
assert_eq!(response.status, enums::AttemptStatus::Charged);
|
|
}
|
|
|
|
// Partially captures a payment using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_partially_capture_authorized_payment() {
|
|
let response = CONNECTOR
|
|
.authorize_and_capture_payment(
|
|
None,
|
|
Some(types::PaymentsCaptureData {
|
|
amount_to_capture: 50,
|
|
..utils::PaymentCaptureType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.expect("Capture payment response");
|
|
assert_eq!(response.status, enums::AttemptStatus::Charged);
|
|
}
|
|
|
|
// Synchronizes a payment using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_sync_authorized_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.authorize_payment(None, None)
|
|
.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: router::types::ResponseId::ConnectorTransactionId(
|
|
txn_id.unwrap(),
|
|
),
|
|
..Default::default()
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.expect("PSync response");
|
|
assert_eq!(response.status, enums::AttemptStatus::Authorized,);
|
|
}
|
|
|
|
// Voids a payment using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_void_authorized_payment() {
|
|
let response = CONNECTOR
|
|
.authorize_and_void_payment(
|
|
None,
|
|
Some(types::PaymentsCancelData {
|
|
connector_transaction_id: String::from(""),
|
|
cancellation_reason: Some("requested_by_customer".to_string()),
|
|
..Default::default()
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.expect("Void payment response");
|
|
assert_eq!(response.status, enums::AttemptStatus::Voided);
|
|
}
|
|
|
|
// Refunds a payment using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_refund_manually_captured_payment() {
|
|
let response = CONNECTOR
|
|
.capture_payment_and_refund(None, None, None, None)
|
|
.await
|
|
.unwrap();
|
|
let rsync_response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
response.response.unwrap().connector_refund_id,
|
|
None,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
rsync_response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Partially refunds a payment using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_partially_refund_manually_captured_payment() {
|
|
let response = CONNECTOR
|
|
.capture_payment_and_refund(
|
|
None,
|
|
None,
|
|
Some(types::RefundsData {
|
|
refund_amount: 50,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
let rsync_response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
response.response.unwrap().connector_refund_id,
|
|
None,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
rsync_response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Synchronizes a refund using the manual capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_sync_manually_captured_refund() {
|
|
let refund_response = CONNECTOR
|
|
.capture_payment_and_refund(None, None, None, None)
|
|
.await
|
|
.unwrap();
|
|
let response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
refund_response.response.unwrap().connector_refund_id,
|
|
None,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Creates a payment using the automatic capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_make_payment() {
|
|
let authorize_response = CONNECTOR.make_payment(None, None).await.unwrap();
|
|
assert_eq!(authorize_response.status, enums::AttemptStatus::Charged);
|
|
}
|
|
|
|
// Synchronizes a payment using the automatic capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_sync_auto_captured_payment() {
|
|
let authorize_response = CONNECTOR.make_payment(None, None).await.unwrap();
|
|
assert_eq!(authorize_response.status, enums::AttemptStatus::Charged);
|
|
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: router::types::ResponseId::ConnectorTransactionId(
|
|
txn_id.unwrap(),
|
|
),
|
|
..Default::default()
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(response.status, enums::AttemptStatus::Charged,);
|
|
}
|
|
|
|
// Refunds a payment using the automatic capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_refund_auto_captured_payment() {
|
|
let response = CONNECTOR
|
|
.make_payment_and_refund(None, None, None)
|
|
.await
|
|
.unwrap();
|
|
let rsync_response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
response.response.unwrap().connector_refund_id,
|
|
None,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
rsync_response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Partially refunds a payment using the automatic capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_partially_refund_succeeded_payment() {
|
|
let refund_response = CONNECTOR
|
|
.make_payment_and_refund(
|
|
None,
|
|
Some(types::RefundsData {
|
|
refund_amount: 50,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
let rsync_response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
refund_response.response.unwrap().connector_refund_id,
|
|
None,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
rsync_response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Creates multiple refunds against a payment using the automatic capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_refund_succeeded_payment_multiple_times() {
|
|
let authorize_response = CONNECTOR.make_payment(None, None).await.unwrap();
|
|
assert_eq!(authorize_response.status, enums::AttemptStatus::Charged);
|
|
let transaction_id = utils::get_connector_transaction_id(authorize_response.response).unwrap();
|
|
for _x in 0..2 {
|
|
tokio::time::sleep(std::time::Duration::from_secs(5)).await; // to avoid 404 error
|
|
let refund_response = CONNECTOR
|
|
.refund_payment(
|
|
transaction_id.clone(),
|
|
Some(types::RefundsData {
|
|
refund_amount: 50,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
let rsync_response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
refund_response.response.unwrap().connector_refund_id,
|
|
None,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
rsync_response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
}
|
|
|
|
// Synchronizes a refund using the automatic capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_sync_refund() {
|
|
let refund_response = CONNECTOR
|
|
.make_payment_and_refund(None, None, None)
|
|
.await
|
|
.unwrap();
|
|
let response = CONNECTOR
|
|
.rsync_retry_till_status_matches(
|
|
enums::RefundStatus::Success,
|
|
refund_response.response.unwrap().connector_refund_id,
|
|
None,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Cards Negative scenerios
|
|
// Creates a payment with incorrect card number.
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_incorrect_card_number() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: types::api::PaymentMethodData::Card(api::Card {
|
|
card_number: Secret::new("1234567891011".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Order creation failure due to problematic input.".to_string(),
|
|
);
|
|
}
|
|
|
|
// Creates a payment with empty card number.
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_empty_card_number() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: types::api::PaymentMethodData::Card(api::Card {
|
|
card_number: Secret::new(String::from("")),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
let x = response.response.unwrap_err();
|
|
assert_eq!(
|
|
x.message,
|
|
"Order creation failure due to problematic input.",
|
|
);
|
|
}
|
|
|
|
// Creates a payment with incorrect CVC.
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_incorrect_cvc() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: types::api::PaymentMethodData::Card(api::Card {
|
|
card_cvc: Secret::new("12345".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Order creation failure due to problematic input.".to_string(),
|
|
);
|
|
}
|
|
|
|
// Creates a payment with incorrect expiry month.
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_invalid_exp_month() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: types::api::PaymentMethodData::Card(api::Card {
|
|
card_exp_month: Secret::new("20".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Order creation failure due to problematic input.".to_string(),
|
|
);
|
|
}
|
|
|
|
// Creates a payment with incorrect expiry year.
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_incorrect_expiry_year() {
|
|
let response = CONNECTOR
|
|
.make_payment(
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: types::api::PaymentMethodData::Card(api::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,
|
|
"Order creation failure due to problematic input.".to_string(),
|
|
);
|
|
}
|
|
|
|
// Voids a payment using automatic capture flow (Non 3DS).
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_void_payment_for_auto_capture() {
|
|
let authorize_response = CONNECTOR.make_payment(None, None).await.unwrap();
|
|
assert_eq!(authorize_response.status, enums::AttemptStatus::Charged);
|
|
let txn_id = utils::get_connector_transaction_id(authorize_response.response);
|
|
assert_ne!(txn_id, None, "Empty connector transaction id");
|
|
let void_response = CONNECTOR
|
|
.void_payment(txn_id.unwrap(), None, None)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
void_response.response.unwrap_err().message,
|
|
"Transaction AUTH_REVERSAL failed. Transaction has already been captured."
|
|
);
|
|
}
|
|
|
|
// Captures a payment using invalid connector payment id.
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_capture_for_invalid_payment() {
|
|
let capture_response = CONNECTOR
|
|
.capture_payment("123456789".to_string(), None, None)
|
|
.await
|
|
.unwrap();
|
|
|
|
capture_response
|
|
.response
|
|
.unwrap_err()
|
|
.message
|
|
.contains("is not authorized to view transaction");
|
|
}
|
|
|
|
// Refunds a payment with refund amount higher than payment amount.
|
|
|
|
#[serial_test::serial]
|
|
#[actix_web::test]
|
|
async fn should_fail_for_refund_amount_higher_than_payment_amount() {
|
|
let response = CONNECTOR
|
|
.make_payment_and_refund(
|
|
None,
|
|
Some(types::RefundsData {
|
|
refund_amount: 150,
|
|
..utils::PaymentRefundType::default().0
|
|
}),
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Refund amount cannot be more than the refundable order amount.",
|
|
);
|
|
}
|
|
|
|
// Connector dependent test cases goes here
|
|
|
|
// [#478]: add unit tests for non 3DS, wallets & webhooks in connector tests
|