mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
218 lines
7.2 KiB
Rust
218 lines
7.2 KiB
Rust
use std::{
|
|
env,
|
|
fs::OpenOptions,
|
|
io::{self, Write},
|
|
path::Path,
|
|
process::Command,
|
|
};
|
|
|
|
use clap::{arg, command, Parser};
|
|
use masking::PeekInterface;
|
|
|
|
use crate::connector_auth::{ConnectorAuthType, ConnectorAuthenticationMap};
|
|
#[derive(Parser)]
|
|
#[command(version, about = "Postman collection runner using newman!", long_about = None)]
|
|
struct Args {
|
|
/// Admin API Key of the environment
|
|
#[arg(short, long)]
|
|
admin_api_key: String,
|
|
/// Base URL of the Hyperswitch environment
|
|
#[arg(short, long)]
|
|
base_url: String,
|
|
/// Name of the connector
|
|
#[arg(short, long)]
|
|
connector_name: String,
|
|
/// Custom headers
|
|
#[arg(short = 'H', long = "header")]
|
|
custom_headers: Option<Vec<String>>,
|
|
/// Minimum delay in milliseconds to be added before sending a request
|
|
/// By default, 7 milliseconds will be the delay
|
|
#[arg(short, long, default_value_t = 7)]
|
|
delay_request: u32,
|
|
/// Folder name of specific tests
|
|
#[arg(short, long = "folder")]
|
|
folders: Option<String>,
|
|
/// Optional Verbose logs
|
|
#[arg(short, long)]
|
|
verbose: bool,
|
|
}
|
|
|
|
pub struct ReturnArgs {
|
|
pub newman_command: Command,
|
|
pub file_modified_flag: bool,
|
|
pub collection_path: String,
|
|
}
|
|
|
|
// Just by the name of the connector, this function generates the name of the collection dir
|
|
// Example: CONNECTOR_NAME="stripe" -> OUTPUT: postman/collection-dir/stripe
|
|
#[inline]
|
|
fn get_path(name: impl AsRef<str>) -> String {
|
|
format!("postman/collection-dir/{}", name.as_ref())
|
|
}
|
|
|
|
// This function currently allows you to add only custom headers.
|
|
// In future, as we scale, this can be modified based on the need
|
|
fn insert_content<T, U>(dir: T, content_to_insert: U) -> io::Result<()>
|
|
where
|
|
T: AsRef<Path> + std::fmt::Debug,
|
|
U: AsRef<str> + std::fmt::Debug,
|
|
{
|
|
let file_name = "event.prerequest.js";
|
|
let file_path = dir.as_ref().join(file_name);
|
|
|
|
// Open the file in write mode or create it if it doesn't exist
|
|
let mut file = OpenOptions::new()
|
|
.write(true)
|
|
.append(true)
|
|
.create(true)
|
|
.open(file_path)?;
|
|
|
|
write!(file, "\n{:#?}", content_to_insert)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn generate_newman_command() -> ReturnArgs {
|
|
let args = Args::parse();
|
|
|
|
let connector_name = args.connector_name;
|
|
let base_url = args.base_url;
|
|
let admin_api_key = args.admin_api_key;
|
|
|
|
let collection_path = get_path(&connector_name);
|
|
let auth_map = ConnectorAuthenticationMap::new();
|
|
|
|
let inner_map = auth_map.inner();
|
|
|
|
// Newman runner
|
|
// Depending on the conditions satisfied, variables are added. Since certificates of stripe have already
|
|
// been added to the postman collection, those conditions are set to true and collections that have
|
|
// variables set up for certificate, will consider those variables and will fail.
|
|
|
|
let mut newman_command = Command::new("newman");
|
|
newman_command.args(["dir-run", &collection_path]);
|
|
newman_command.args(["--env-var", &format!("admin_api_key={admin_api_key}")]);
|
|
newman_command.args(["--env-var", &format!("baseUrl={base_url}")]);
|
|
|
|
if let Some(auth_type) = inner_map.get(&connector_name) {
|
|
match auth_type {
|
|
ConnectorAuthType::HeaderKey { api_key } => {
|
|
newman_command.args([
|
|
"--env-var",
|
|
&format!("connector_api_key={}", api_key.peek()),
|
|
]);
|
|
}
|
|
ConnectorAuthType::BodyKey { api_key, key1 } => {
|
|
newman_command.args([
|
|
"--env-var",
|
|
&format!("connector_api_key={}", api_key.peek()),
|
|
"--env-var",
|
|
&format!("connector_key1={}", key1.peek()),
|
|
]);
|
|
}
|
|
ConnectorAuthType::SignatureKey {
|
|
api_key,
|
|
key1,
|
|
api_secret,
|
|
} => {
|
|
newman_command.args([
|
|
"--env-var",
|
|
&format!("connector_api_key={}", api_key.peek()),
|
|
"--env-var",
|
|
&format!("connector_key1={}", key1.peek()),
|
|
"--env-var",
|
|
&format!("connector_api_secret={}", api_secret.peek()),
|
|
]);
|
|
}
|
|
ConnectorAuthType::MultiAuthKey {
|
|
api_key,
|
|
key1,
|
|
key2,
|
|
api_secret,
|
|
} => {
|
|
newman_command.args([
|
|
"--env-var",
|
|
&format!("connector_api_key={}", api_key.peek()),
|
|
"--env-var",
|
|
&format!("connector_key1={}", key1.peek()),
|
|
"--env-var",
|
|
&format!("connector_key2={}", key2.peek()),
|
|
"--env-var",
|
|
&format!("connector_api_secret={}", api_secret.peek()),
|
|
]);
|
|
}
|
|
// Handle other ConnectorAuthType variants
|
|
_ => {
|
|
eprintln!("Invalid authentication type.");
|
|
}
|
|
}
|
|
} else {
|
|
eprintln!("Connector not found.");
|
|
}
|
|
|
|
// Add additional environment variables if present
|
|
if let Ok(gateway_merchant_id) = env::var("GATEWAY_MERCHANT_ID") {
|
|
newman_command.args([
|
|
"--env-var",
|
|
&format!("gateway_merchant_id={gateway_merchant_id}"),
|
|
]);
|
|
}
|
|
|
|
if let Ok(gpay_certificate) = env::var("GPAY_CERTIFICATE") {
|
|
newman_command.args(["--env-var", &format!("certificate={gpay_certificate}")]);
|
|
}
|
|
|
|
if let Ok(gpay_certificate_keys) = env::var("GPAY_CERTIFICATE_KEYS") {
|
|
newman_command.args([
|
|
"--env-var",
|
|
&format!("certificate_keys={gpay_certificate_keys}"),
|
|
]);
|
|
}
|
|
|
|
newman_command.args([
|
|
"--delay-request",
|
|
format!("{}", &args.delay_request).as_str(),
|
|
]);
|
|
|
|
newman_command.arg("--color").arg("on");
|
|
|
|
// Add flags for running specific folders
|
|
if let Some(folders) = &args.folders {
|
|
let folder_names: Vec<String> = folders.split(',').map(|s| s.trim().to_string()).collect();
|
|
|
|
for folder_name in folder_names {
|
|
if !folder_name.contains("QuickStart") {
|
|
// This is a quick fix, "QuickStart" is intentional to have merchant account and API keys set up
|
|
// This will be replaced by a more robust and efficient account creation or reuse existing old account
|
|
newman_command.args(["--folder", "QuickStart"]);
|
|
}
|
|
newman_command.args(["--folder", &folder_name]);
|
|
}
|
|
}
|
|
|
|
if args.verbose {
|
|
newman_command.arg("--verbose");
|
|
}
|
|
|
|
let mut modified = false;
|
|
if let Some(headers) = &args.custom_headers {
|
|
for header in headers {
|
|
if let Some((key, value)) = header.split_once(':') {
|
|
let content_to_insert =
|
|
format!(r#"pm.request.headers.add({{key: "{key}", value: "{value}"}});"#);
|
|
if insert_content(&collection_path, &content_to_insert).is_ok() {
|
|
modified = true;
|
|
}
|
|
} else {
|
|
eprintln!("Invalid header format: {}", header);
|
|
}
|
|
}
|
|
}
|
|
|
|
ReturnArgs {
|
|
newman_command,
|
|
file_modified_flag: modified,
|
|
collection_path,
|
|
}
|
|
}
|