id stringlengths 11 116 | type stringclasses 1
value | granularity stringclasses 4
values | content stringlengths 16 477k | metadata dict |
|---|---|---|---|---|
fn_clm_hyperswitch_constraint_graph_default_-1830864881707238091 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/types
// Implementation of CycleCheck for Default
fn default() -> Self {
Self::new()
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 7705,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_from_-1830864881707238091 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/types
// Implementation of DomainIdentifier for From<String>
fn from(value: String) -> Self {
Self(value)
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2602,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_into_inner_-1830864881707238091 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/types
// Inherent implementation for DomainIdentifier
pub fn into_inner(&self) -> String {
self.0.clone()
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2063,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_deref_-1830864881707238091 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/types
// Implementation of CycleCheck for Deref
fn deref(&self) -> &Self::Target {
&self.0
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 41,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_combine_-886650100889519262 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/graph
// Implementation of None for ConstraintGraph<V>
pub fn combine(g1: &Self, g2: &Self) -> Result<Self, GraphError<V>> {
let mut node_builder = builder::ConstraintGraphBuilder::new();
... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 132,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_validate_value_node_-886650100889519262 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/graph
// Implementation of None for ConstraintGraph<V>
fn validate_value_node<C>(
&self,
vald: CheckNodeContext<'_, V, C>,
val: &NodeValue<V>,
) -> Result<(), GraphError<V>>
... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 103,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_validate_in_aggregator_-886650100889519262 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/graph
// Implementation of None for ConstraintGraph<V>
fn validate_in_aggregator<C>(
&self,
vald: CheckNodeContext<'_, V, C>,
expected: &FxHashSet<V>,
) -> Result<(), GraphEr... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 89,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_check_node_inner_-886650100889519262 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/graph
// Implementation of None for ConstraintGraph<V>
pub fn check_node_inner<C>(
&self,
ctx: &C,
node_id: NodeId,
relation: Relation,
strength: Strength,
... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 66,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_validate_any_aggregator_-886650100889519262 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/graph
// Implementation of None for ConstraintGraph<V>
fn validate_any_aggregator<C>(
&self,
vald: CheckNodeContext<'_, V, C>,
) -> Result<(), GraphError<V>>
where
C: Che... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 65,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_get_analysis_trace_7013651476471671645 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/error
// Inherent implementation for GraphError<V>
pub fn get_analysis_trace(self) -> Result<Weak<AnalysisTrace<V>>, Self> {
match self {
Self::AnalysisError(trace) => Ok(trace),
... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 36,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_new_5992030244966742603 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/dense_map
// Inherent implementation for IntoIter<K, V>
fn new(iter: vec::IntoIter<V>) -> Self {
Self {
inner: iter.enumerate(),
_marker: PhantomData,
}
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 14455,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_default_5992030244966742603 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/dense_map
// Implementation of DenseMap<K, V> for Default
fn default() -> Self {
Self::new()
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 7705,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_iter_5992030244966742603 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/dense_map
// Inherent implementation for DenseMap<K, V>
pub fn iter(&self) -> Iter<'_, K, V> {
Iter::new(self.data.iter())
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2551,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_push_5992030244966742603 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/dense_map
// Inherent implementation for DenseMap<K, V>
pub fn push(&mut self, elem: V) -> K {
let curr_len = self.data.len();
self.data.push(elem);
K::with_id(curr_len)
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 1500,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_into_iter_5992030244966742603 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/dense_map
// Implementation of DenseMap<K, V> for IntoIterator
fn into_iter(self) -> Self::IntoIter {
IntoIter::new(self.data.into_iter())
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 1482,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_new_-9096457981246748646 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/builder
// Implementation of None for ConstraintGraphBuilder<V>
pub fn new() -> Self {
Self {
domain: DenseMap::new(),
nodes: DenseMap::new(),
edges: DenseMap... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 14479,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_from_-9096457981246748646 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/builder
// Implementation of DomainIdOrIdentifier for From<DomainId>
fn from(value: DomainId) -> Self {
Self::DomainId(value)
}
| {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2602,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_build_-9096457981246748646 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/builder
// Implementation of None for ConstraintGraphBuilder<V>
pub fn build(self) -> ConstraintGraph<V> {
ConstraintGraph {
domain: self.domain,
domain_identifier_map: s... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 582,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_make_value_node_-9096457981246748646 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/builder
// Implementation of None for ConstraintGraphBuilder<V>
pub fn make_value_node<M: Metadata>(
&mut self,
value: NodeValue<V>,
info: Option<&'static str>,
metadata:... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 138,
"total_crates": null
} |
fn_clm_hyperswitch_constraint_graph_make_edge_-9096457981246748646 | clm | function | // Repository: hyperswitch
// Crate: hyperswitch_constraint_graph
// Module: crates/hyperswitch_constraint_graph/src/builder
// Implementation of None for ConstraintGraphBuilder<V>
pub fn make_edge<T: Into<DomainIdOrIdentifier>>(
&mut self,
pred_id: NodeId,
succ_id: NodeId,
strength: St... | {
"crate": "hyperswitch_constraint_graph",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 127,
"total_crates": null
} |
fn_clm_connector_configs_get_transformed_response_payload_4610886424550503462 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/response_modifier
// Implementation of None for ConnectorApiIntegrationPayload
pub fn get_transformed_response_payload(response: Self) -> DashboardRequestPayload {
let mut wallet_details: Vec<Provider> = Vec::new();
... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 181,
"total_crates": null
} |
fn_clm_connector_configs_create_connector_request_-7121648977238575553 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/transformer
// Implementation of None for DashboardRequestPayload
pub fn create_connector_request(
request: Self,
api_response: ConnectorApiIntegrationPayload,
) -> ConnectorApiIntegrationPayload {
... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 49,
"total_crates": null
} |
fn_clm_connector_configs_transform_payment_method_-7121648977238575553 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/transformer
// Implementation of None for DashboardRequestPayload
pub fn transform_payment_method(
connector: Connector,
provider: Vec<Provider>,
payment_method: PaymentMethod,
) -> Vec<payment_me... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 31,
"total_crates": null
} |
fn_clm_connector_configs_transform_card_-7121648977238575553 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/transformer
// Implementation of None for DashboardRequestPayload
pub fn transform_card(
payment_method_type: PaymentMethodType,
card_provider: Vec<api_models::enums::CardNetwork>,
) -> payment_methods::R... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 22,
"total_crates": null
} |
fn_clm_connector_configs_get_payment_experience_-7121648977238575553 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/transformer
// Implementation of None for DashboardRequestPayload
pub fn get_payment_experience(
connector: Connector,
payment_method_type: PaymentMethodType,
payment_method: PaymentMethod,
pa... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 21,
"total_crates": null
} |
fn_clm_connector_configs_new_-5346512585129188946 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/connector
// Inherent implementation for ConnectorConfig
fn new() -> Result<Self, String> {
let config_str = if cfg!(feature = "production") {
include_str!("../toml/production.toml")
} else if cfg... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 14455,
"total_crates": null
} |
fn_clm_connector_configs_get_connector_config_-5346512585129188946 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/connector
// Inherent implementation for ConnectorConfig
pub fn get_connector_config(
connector: Connector,
) -> Result<Option<ConnectorTomlConfig>, String> {
let connector_data = Self::new()?;
ma... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 31,
"total_crates": null
} |
fn_clm_connector_configs_get_payout_connector_config_-5346512585129188946 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/connector
// Inherent implementation for ConnectorConfig
pub fn get_payout_connector_config(
connector: PayoutConnectors,
) -> Result<Option<ConnectorTomlConfig>, String> {
let connector_data = Self::new(... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 23,
"total_crates": null
} |
fn_clm_connector_configs_get_authentication_connector_config_-5346512585129188946 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/connector
// Inherent implementation for ConnectorConfig
pub fn get_authentication_connector_config(
connector: AuthenticationConnectors,
) -> Result<Option<ConnectorTomlConfig>, String> {
let connector_d... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 23,
"total_crates": null
} |
fn_clm_connector_configs_get_tax_processor_config_-5346512585129188946 | clm | function | // Repository: hyperswitch
// Crate: connector_configs
// Module: crates/connector_configs/src/connector
// Inherent implementation for ConnectorConfig
pub fn get_tax_processor_config(
connector: TaxConnectors,
) -> Result<Option<ConnectorTomlConfig>, String> {
let connector_data = Self::new()?;
... | {
"crate": "connector_configs",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": true,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 23,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_3207857100754593099 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/stripe_wh_ui
// Implementation of StripeSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"stripe".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_webhook_3207857100754593099 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/stripe_wh_ui
async fn should_make_webhook(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = StripeSeleniumTest {};
conn.make_webhook_test(
web_driver,
&format!("{CHECKOUT_BASE_URL}/save... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_webhook_test_3207857100754593099 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/stripe_wh_ui
fn should_make_webhook_test() {
tester!(should_make_webhook);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_2776967949788229755 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/multisafepay_ui
// Implementation of MultisafepaySeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"multisafepay".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_multisafepay_3ds_payment_success_2776967949788229755 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/multisafepay_ui
async fn should_make_multisafepay_3ds_payment_success(
web_driver: WebDriver,
) -> Result<(), WebDriverError> {
let conn = MultisafepaySeleniumTest {};
conn.make_redirection_payment(
web_dr... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_multisafepay_3ds_payment_failed_2776967949788229755 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/multisafepay_ui
async fn should_make_multisafepay_3ds_payment_failed(
web_driver: WebDriver,
) -> Result<(), WebDriverError> {
let conn = MultisafepaySeleniumTest {};
conn.make_redirection_payment(
web_dri... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_gpay_payment_2776967949788229755 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/multisafepay_ui
async fn should_make_gpay_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = MultisafepaySeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_paypal_payment_2776967949788229755 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/multisafepay_ui
async fn should_make_paypal_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = MultisafepaySeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_-9213772287725242437 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/payu_ui
// Implementation of PayUSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"payu".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_no_3ds_card_payment_-9213772287725242437 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/payu_ui
async fn should_make_no_3ds_card_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = PayUSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
Even... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_gpay_payment_-9213772287725242437 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/payu_ui
async fn should_make_gpay_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = PayUSeleniumTest {};
conn.make_gpay_payment(web_driver,
&format!("{CHECKOUT_BASE_URL}/gpay?gatewaynam... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_no_3ds_card_payment_test_-9213772287725242437 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/payu_ui
fn should_make_no_3ds_card_payment_test() {
tester!(should_make_no_3ds_card_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_should_make_gpay_payment_test_-9213772287725242437 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/payu_ui
fn should_make_gpay_payment_test() {
tester!(should_make_gpay_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_complete_actions_-5987297784469969278 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/selenium
async fn complete_actions(
&self,
driver: &WebDriver,
actions: Vec<Event<'_>>,
) -> Result<(), WebDriverError> {
for action in actions {
match action {
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 338,
"total_crates": null
} |
fn_clm_test_utils_make_redirection_payment_-5987297784469969278 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/selenium
async fn make_redirection_payment(
&self,
web_driver: WebDriver,
actions: Vec<Event<'_>>,
) -> Result<(), WebDriverError> {
// To support failure retries
let result = self
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 214,
"total_crates": null
} |
fn_clm_test_utils_make_webhook_test_-5987297784469969278 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/selenium
async fn make_webhook_test(
&self,
web_driver: WebDriver,
payment_url: &str,
actions: Vec<Event<'_>>,
webhook_retry_time: u64,
webhook_status: &str,
) -> Result<(),... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 61,
"total_crates": null
} |
fn_clm_test_utils_get_configs_-5987297784469969278 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/selenium
fn get_configs() -> connector_auth::ConnectorAuthentication {
let path =
env::var("CONNECTOR_AUTH_FILE_PATH").expect("connector authentication file path not set");
toml::from_str(
&std::fs::re... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 51,
"total_crates": null
} |
fn_clm_test_utils_is_text_present_now_-5987297784469969278 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/selenium
async fn is_text_present_now(driver: &WebDriver, key: &str) -> WebDriverResult<bool> {
let mut xpath = "//*[contains(text(),'".to_owned();
xpath.push_str(key);
xpath.push_str("')]");
let result = driv... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 38,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_-2069100450059665771 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/aci_ui
// Implementation of AciSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"aci".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_aci_card_mandate_payment_-2069100450059665771 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/aci_ui
async fn should_make_aci_card_mandate_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AciSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
E... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_aci_alipay_payment_-2069100450059665771 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/aci_ui
async fn should_make_aci_alipay_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AciSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
Event::... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_aci_interac_payment_-2069100450059665771 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/aci_ui
async fn should_make_aci_interac_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AciSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
Event:... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_aci_eps_payment_-2069100450059665771 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/aci_ui
async fn should_make_aci_eps_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AciSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
Event::Tri... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_2671220971309568925 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_ui
// Implementation of AuthorizedotnetSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"authorizedotnet".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_gpay_payment_2671220971309568925 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_ui
async fn should_make_gpay_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AuthorizedotnetSeleniumTest {};
let amount = rand::thread_rng().gen_range(1..1000); //This connect... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 8,
"total_crates": null
} |
fn_clm_test_utils_should_make_paypal_payment_2671220971309568925 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_ui
async fn should_make_paypal_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AuthorizedotnetSeleniumTest {};
conn.make_paypal_payment(
web_driver,
&format!("... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_gpay_payment_test_2671220971309568925 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_ui
fn should_make_gpay_payment_test() {
tester!(should_make_gpay_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_should_make_paypal_payment_test_2671220971309568925 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_ui
fn should_make_paypal_payment_test() {
tester!(should_make_paypal_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_-4974219162943926285 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/globalpay_ui
// Implementation of GlobalpaySeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"globalpay".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_gpay_payment_-4974219162943926285 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/globalpay_ui
async fn should_make_gpay_payment(driver: WebDriver) -> Result<(), WebDriverError> {
let conn = GlobalpaySeleniumTest {};
let pub_key = conn
.get_configs()
.automation_configs
.unw... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 4,
"total_crates": null
} |
fn_clm_test_utils_should_make_globalpay_sofort_payment_-4974219162943926285 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/globalpay_ui
async fn should_make_globalpay_sofort_payment(driver: WebDriver) -> Result<(), WebDriverError> {
let conn = GlobalpaySeleniumTest {};
conn.make_redirection_payment(
driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 4,
"total_crates": null
} |
fn_clm_test_utils_should_make_globalpay_paypal_payment_-4974219162943926285 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/globalpay_ui
async fn should_make_globalpay_paypal_payment(driver: WebDriver) -> Result<(), WebDriverError> {
let conn = GlobalpaySeleniumTest {};
conn.make_paypal_payment(
driver,
&format!("{CHECKOUT_... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_globalpay_ideal_payment_-4974219162943926285 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/globalpay_ui
async fn should_make_globalpay_ideal_payment(driver: WebDriver) -> Result<(), WebDriverError> {
let conn = GlobalpaySeleniumTest {};
conn.make_redirection_payment(
driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_4844944244503222801 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/mollie_ui
// Implementation of MollieSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"mollie".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_mollie_paypal_payment_4844944244503222801 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/mollie_ui
async fn should_make_mollie_paypal_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = MollieSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_mollie_sofort_payment_4844944244503222801 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/mollie_ui
async fn should_make_mollie_sofort_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = MollieSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_mollie_ideal_payment_4844944244503222801 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/mollie_ui
async fn should_make_mollie_ideal_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn: MollieSeleniumTest = MollieSeleniumTest {};
conn.make_redirection_payment(
web_driver,
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_mollie_eps_payment_4844944244503222801 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/mollie_ui
async fn should_make_mollie_eps_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = MollieSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
E... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_-606391733409404698 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/airwallex_ui
// Implementation of AirwallexSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"airwallex".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_airwallex_gpay_payment_-606391733409404698 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/airwallex_ui
async fn should_make_airwallex_gpay_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AirwallexSeleniumTest {};
let merchant_name = conn
.get_configs()
.automation_... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 4,
"total_crates": null
} |
fn_clm_test_utils_should_make_airwallex_3ds_payment_-606391733409404698 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/airwallex_ui
async fn should_make_airwallex_3ds_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AirwallexSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_airwallex_3ds_payment_test_-606391733409404698 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/airwallex_ui
fn should_make_airwallex_3ds_payment_test() {
tester!(should_make_airwallex_3ds_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_should_make_airwallex_gpay_payment_test_-606391733409404698 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/airwallex_ui
fn should_make_airwallex_gpay_payment_test() {
tester!(should_make_airwallex_gpay_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_7608519598242126204 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/bambora_ui
// Implementation of BamboraSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"bambora".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_3ds_payment_7608519598242126204 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/bambora_ui
async fn should_make_3ds_payment(c: WebDriver) -> Result<(), WebDriverError> {
let mycon = BamboraSeleniumTest {};
mycon
.make_redirection_payment(
c,
vec![
E... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_3ds_payment_test_7608519598242126204 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/bambora_ui
fn should_make_3ds_payment_test() {
tester!(should_make_3ds_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_7139485711615875695 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_wh_ui
// Implementation of AuthorizedotnetSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"authorizedotnet".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_webhook_7139485711615875695 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_wh_ui
async fn should_make_webhook(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AuthorizedotnetSeleniumTest {};
let amount = rand::thread_rng().gen_range(50..1000); //This connecto... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 6,
"total_crates": null
} |
fn_clm_test_utils_should_make_webhook_test_7139485711615875695 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/authorizedotnet_wh_ui
fn should_make_webhook_test() {
tester!(should_make_webhook);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_-9175647799858222266 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/zen_ui
// Implementation of ZenSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"zen".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_zen_3ds_payment_-9175647799858222266 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/zen_ui
async fn should_make_zen_3ds_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let mycon = ZenSeleniumTest {};
mycon
.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_zen_3ds_payment_test_-9175647799858222266 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/zen_ui
fn should_make_zen_3ds_payment_test() {
tester!(should_make_zen_3ds_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_7616796182318303785 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/bluesnap_wh_ui
// Implementation of BluesnapSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"bluesnap".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_webhook_7616796182318303785 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/bluesnap_wh_ui
async fn should_make_webhook(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = BluesnapSeleniumTest {};
conn.make_webhook_test(
web_driver,
&format!("{CHECKOUT_BASE_URL}/... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_webhook_test_7616796182318303785 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/bluesnap_wh_ui
fn should_make_webhook_test() {
tester!(should_make_webhook);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_-7791938675623916858 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/noon_ui
// Implementation of NoonSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"noon".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_noon_3ds_payment_-7791938675623916858 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/noon_ui
async fn should_make_noon_3ds_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = NoonSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
Event::... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_noon_3ds_mandate_payment_-7791938675623916858 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/noon_ui
async fn should_make_noon_3ds_mandate_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = NoonSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_noon_non_3ds_mandate_payment_-7791938675623916858 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/noon_ui
async fn should_make_noon_non_3ds_mandate_payment(
web_driver: WebDriver,
) -> Result<(), WebDriverError> {
let conn = NoonSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_noon_3ds_payment_test_-7791938675623916858 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/noon_ui
fn should_make_noon_3ds_payment_test() {
tester!(should_make_noon_3ds_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_8881165102422017224 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/worldline_ui
// Implementation of WorldlineSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"worldline".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_should_make_card_non_3ds_payment_8881165102422017224 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/worldline_ui
async fn should_make_card_non_3ds_payment(c: WebDriver) -> Result<(), WebDriverError> {
let conn = WorldlineSeleniumTest {};
conn.make_redirection_payment(
c,
vec![
Event::Trig... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_worldline_ideal_redirect_payment_8881165102422017224 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/worldline_ui
async fn should_make_worldline_ideal_redirect_payment(c: WebDriver) -> Result<(), WebDriverError> {
let conn = WorldlineSeleniumTest {};
conn.make_redirection_payment(
c,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_worldline_giropay_redirect_payment_8881165102422017224 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/worldline_ui
async fn should_make_worldline_giropay_redirect_payment(
c: WebDriver,
) -> Result<(), WebDriverError> {
let conn = WorldlineSeleniumTest {};
conn.make_redirection_payment(
c,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 2,
"total_crates": null
} |
fn_clm_test_utils_should_make_worldline_giropay_redirect_payment_test_8881165102422017224 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/worldline_ui
fn should_make_worldline_giropay_redirect_payment_test() {
tester!(should_make_worldline_giropay_redirect_payment);
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 0,
"total_crates": null
} |
fn_clm_test_utils_get_connector_name_-7236745121802367840 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/adyen_uk_ui
// Implementation of AdyenSeleniumTest for SeleniumTest
fn get_connector_name(&self) -> String {
"adyen_uk".to_string()
}
| {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 28,
"total_crates": null
} |
fn_clm_test_utils_hould_make_adyen_bancontact_card_payment(_-7236745121802367840 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/adyen_uk_ui
sync fn should_make_adyen_bancontact_card_payment(
web_driver: WebDriver,
) -> Result<(), WebDriverError> {
let conn = AdyenSeleniumTest {};
let user = &conn
.get_configs()
.automation_... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 16,
"total_crates": null
} |
fn_clm_test_utils_should_make_adyen_klarna_mandate_payment_-7236745121802367840 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/adyen_uk_ui
async fn should_make_adyen_klarna_mandate_payment(
web_driver: WebDriver,
) -> Result<(), WebDriverError> {
let conn = AdyenSeleniumTest {};
conn.make_redirection_payment(
web_driver,
v... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 4,
"total_crates": null
} |
fn_clm_test_utils_hould_make_adyen_alipay_hk_payment(_-7236745121802367840 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/adyen_uk_ui
sync fn should_make_adyen_alipay_hk_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AdyenSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 4,
"total_crates": null
} |
fn_clm_test_utils_hould_make_adyen_bizum_payment(_-7236745121802367840 | clm | function | // Repository: hyperswitch
// Crate: test_utils
// Module: crates/test_utils/tests/connectors/adyen_uk_ui
sync fn should_make_adyen_bizum_payment(web_driver: WebDriver) -> Result<(), WebDriverError> {
let conn = AdyenSeleniumTest {};
conn.make_redirection_payment(
web_driver,
vec![
... | {
"crate": "test_utils",
"file": null,
"file_size": null,
"is_async": false,
"is_pub": false,
"num_enums": null,
"num_structs": null,
"num_tables": null,
"score": 4,
"total_crates": null
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.