Files
hyperswitch/cypress-tests/cypress/e2e/RoutingTest/00000-PriorityRouting.cy.js
Pa1NarK 64383915bd feat(cypress): add multiple creds and flags support (#6588)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
2024-12-03 10:48:29 +00:00

187 lines
5.2 KiB
JavaScript

import * as fixtures from "../../fixtures/imports";
import State from "../../utils/State";
import * as utils from "../RoutingUtils/Utils";
let globalState;
describe("Priority Based Routing Test", () => {
let shouldContinue = true;
context("Login", () => {
before("seed global state", () => {
cy.task("getGlobalState").then((state) => {
globalState = new State(state);
});
});
after("flush global state", () => {
cy.task("setGlobalState", globalState.data);
});
it("User login", () => {
cy.userLogin(globalState);
cy.terminate2Fa(globalState);
cy.userInfo(globalState);
});
it("merchant retrieve call", () => {
cy.merchantRetrieveCall(globalState);
});
});
context("Routing with Stripe as top priority", () => {
before("seed global state", () => {
cy.task("getGlobalState").then((state) => {
globalState = new State(state);
});
});
after("flush global state", () => {
cy.task("setGlobalState", globalState.data);
});
it("list-mca-by-mid", () => {
cy.ListMcaByMid(globalState);
});
it("api-key-create-call-test", () => {
cy.apiKeyCreateTest(fixtures.apiKeyCreateBody, globalState);
});
it("customer-create-call-test", () => {
cy.createCustomerCallTest(fixtures.customerCreateBody, globalState);
});
it("add-routing-config", () => {
const data = utils.getConnectorDetails("common")["priorityRouting"];
const routing_data = [
{
connector: "stripe",
merchant_connector_id: globalState.get("stripeMcaId"),
},
{
connector: "adyen",
merchant_connector_id: globalState.get("adyenMcaId"),
},
];
cy.addRoutingConfig(
fixtures.routingConfigBody,
data,
"priority",
routing_data,
globalState
);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("retrieve-routing-call-test", () => {
const data = utils.getConnectorDetails("common")["priorityRouting"];
cy.retrieveRoutingConfig(data, globalState);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("activate-routing-call-test", () => {
const data = utils.getConnectorDetails("common")["priorityRouting"];
cy.activateRoutingConfig(data, globalState);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("payment-routing-test", () => {
const data =
utils.getConnectorDetails("stripe")["card_pm"]["No3DSAutoCapture"];
cy.createConfirmPaymentTest(
fixtures.createConfirmPaymentBody,
data,
"no_three_ds",
"automatic",
globalState
);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("retrieve-payment-call-test", () => {
cy.retrievePaymentCallTest(globalState, null);
});
});
context("Routing with adyen as top priority", () => {
before("seed global state", () => {
cy.task("getGlobalState").then((state) => {
globalState = new State(state);
});
});
after("flush global state", () => {
cy.task("setGlobalState", globalState.data);
});
it("list-mca-by-mid", () => {
cy.ListMcaByMid(globalState);
});
it("api-key-create-call-test", () => {
cy.apiKeyCreateTest(fixtures.apiKeyCreateBody, globalState);
});
it("customer-create-call-test", () => {
cy.createCustomerCallTest(fixtures.customerCreateBody, globalState);
});
it("add-routing-config", () => {
const data = utils.getConnectorDetails("common")["priorityRouting"];
const routing_data = [
{
connector: "adyen",
merchant_connector_id: globalState.get("adyenMcaId"),
},
{
connector: "stripe",
merchant_connector_id: globalState.get("stripeMcaId"),
},
];
cy.addRoutingConfig(
fixtures.routingConfigBody,
data,
"priority",
routing_data,
globalState
);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("retrieve-routing-call-test", () => {
const data = utils.getConnectorDetails("common")["priorityRouting"];
cy.retrieveRoutingConfig(data, globalState);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("activate-routing-call-test", () => {
const data = utils.getConnectorDetails("common")["priorityRouting"];
cy.activateRoutingConfig(data, globalState);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("payment-routing-test", () => {
const data =
utils.getConnectorDetails("adyen")["card_pm"]["No3DSAutoCapture"];
cy.createConfirmPaymentTest(
fixtures.createConfirmPaymentBody,
data,
"no_three_ds",
"automatic",
globalState
);
if (shouldContinue) shouldContinue = utils.should_continue_further(data);
});
it("retrieve-payment-call-test", () => {
cy.retrievePaymentCallTest(globalState, null);
});
});
});