mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
234 lines
7.6 KiB
Rust
234 lines
7.6 KiB
Rust
use std::str::FromStr;
|
|
|
|
use hyperswitch_domain_models::address::{Address, AddressDetails};
|
|
use masking::Secret;
|
|
use router::types::{self, api, domain, storage::enums, BrowserInformation};
|
|
|
|
use crate::{
|
|
connector_auth,
|
|
utils::{self, ConnectorActions},
|
|
};
|
|
|
|
#[derive(Clone, Copy)]
|
|
struct TrustpayTest;
|
|
impl ConnectorActions for TrustpayTest {}
|
|
impl utils::Connector for TrustpayTest {
|
|
fn get_data(&self) -> api::ConnectorData {
|
|
use router::connector::Trustpay;
|
|
utils::construct_connector_data_old(
|
|
Box::new(Trustpay::new()),
|
|
types::Connector::Trustpay,
|
|
api::GetToken::Connector,
|
|
None,
|
|
)
|
|
}
|
|
|
|
fn get_auth_token(&self) -> types::ConnectorAuthType {
|
|
utils::to_connector_auth_type(
|
|
connector_auth::ConnectorAuthentication::new()
|
|
.trustpay
|
|
.expect("Missing connector authentication configuration")
|
|
.into(),
|
|
)
|
|
}
|
|
|
|
fn get_name(&self) -> String {
|
|
"trustpay".to_string()
|
|
}
|
|
}
|
|
|
|
fn get_default_browser_info() -> BrowserInformation {
|
|
BrowserInformation {
|
|
color_depth: Some(24),
|
|
java_enabled: Some(false),
|
|
java_script_enabled: Some(true),
|
|
language: Some("en-US".to_string()),
|
|
screen_height: Some(1080),
|
|
screen_width: Some(1920),
|
|
time_zone: Some(3600),
|
|
accept_header: Some("*".to_string()),
|
|
user_agent: Some("none".to_string()),
|
|
ip_address: None,
|
|
os_type: None,
|
|
os_version: None,
|
|
device_model: None,
|
|
accept_language: Some("en".to_string()),
|
|
referer: None,
|
|
}
|
|
}
|
|
|
|
fn get_default_payment_authorize_data() -> Option<types::PaymentsAuthorizeData> {
|
|
Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_number: cards::CardNumber::from_str("4200000000000000").unwrap(),
|
|
card_exp_year: Secret::new("25".to_string()),
|
|
card_cvc: Secret::new("123".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
browser_info: Some(get_default_browser_info()),
|
|
router_return_url: Some(String::from("http://localhost:8080")),
|
|
..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: None,
|
|
email: None,
|
|
}),
|
|
None,
|
|
None,
|
|
)),
|
|
..Default::default()
|
|
})
|
|
}
|
|
|
|
static CONNECTOR: TrustpayTest = TrustpayTest {};
|
|
|
|
// Cards Positive Tests
|
|
// Creates a payment using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_make_payment() {
|
|
let authorize_response = CONNECTOR
|
|
.make_payment(
|
|
get_default_payment_authorize_data(),
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(authorize_response.status, enums::AttemptStatus::Charged);
|
|
}
|
|
|
|
// 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_default_payment_authorize_data(),
|
|
get_default_payment_info(),
|
|
)
|
|
.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: 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).
|
|
#[actix_web::test]
|
|
async fn should_refund_auto_captured_payment() {
|
|
let response = CONNECTOR
|
|
.make_payment_and_refund(
|
|
get_default_payment_authorize_data(),
|
|
None,
|
|
get_default_payment_info(),
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Synchronizes a refund using the automatic capture flow (Non 3DS).
|
|
#[actix_web::test]
|
|
async fn should_sync_refund() {
|
|
let refund_response = CONNECTOR
|
|
.make_payment_and_refund(
|
|
get_default_payment_authorize_data(),
|
|
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,
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap().refund_status,
|
|
enums::RefundStatus::Success,
|
|
);
|
|
}
|
|
|
|
// Cards Negative scenarios
|
|
// Creates a payment with incorrect card number.
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_incorrect_card_number() {
|
|
let payment_authorize_data = types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_number: cards::CardNumber::from_str("1234567891011").unwrap(),
|
|
card_exp_year: Secret::new("25".to_string()),
|
|
card_cvc: Secret::new("123".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
browser_info: Some(get_default_browser_info()),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
};
|
|
let response = CONNECTOR
|
|
.make_payment(Some(payment_authorize_data), get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Errors { code: 61, description: \"invalid payment data (country or brand)\" }".to_string(),
|
|
);
|
|
}
|
|
|
|
// Creates a payment with incorrect expiry year.
|
|
#[actix_web::test]
|
|
async fn should_fail_payment_for_incorrect_expiry_year() {
|
|
let payment_authorize_data = Some(types::PaymentsAuthorizeData {
|
|
payment_method_data: domain::PaymentMethodData::Card(domain::Card {
|
|
card_number: cards::CardNumber::from_str("4200000000000000").unwrap(),
|
|
card_exp_year: Secret::new("22".to_string()),
|
|
card_cvc: Secret::new("123".to_string()),
|
|
..utils::CCardType::default().0
|
|
}),
|
|
browser_info: Some(get_default_browser_info()),
|
|
..utils::PaymentAuthorizeType::default().0
|
|
});
|
|
let response = CONNECTOR
|
|
.make_payment(payment_authorize_data, get_default_payment_info())
|
|
.await
|
|
.unwrap();
|
|
assert_eq!(
|
|
response.response.unwrap_err().message,
|
|
"Errors { code: 15, description: \"the provided expiration year is not valid\" }"
|
|
.to_string(),
|
|
);
|
|
}
|