-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: add automated Cypress test for card number input validation #796
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,107 @@ | ||||||||||||||||||||||||||||
import * as testIds from "../../../src/Utilities/TestUtils.bs"; | ||||||||||||||||||||||||||||
import { getClientURL } from "../support/utils"; | ||||||||||||||||||||||||||||
import { createPaymentBody } from "../support/utils"; | ||||||||||||||||||||||||||||
import { changeObjectKeyValue } from "../support/utils"; | ||||||||||||||||||||||||||||
import { stripeCards } from "cypress/support/cards"; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
describe("Card number validation test", () => { | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') | ||||||||||||||||||||||||||||
const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') | ||||||||||||||||||||||||||||
let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; | ||||||||||||||||||||||||||||
let iframeSelector = | ||||||||||||||||||||||||||||
"#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
// changeObjectKeyValue(createPaymentBody,"profile_id","YOUR_PROFILE_ID") | ||||||||||||||||||||||||||||
changeObjectKeyValue(createPaymentBody,"customer_id","new_user") | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
beforeEach(() => { | ||||||||||||||||||||||||||||
getIframeBody = () => cy.iframe(iframeSelector); | ||||||||||||||||||||||||||||
cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { | ||||||||||||||||||||||||||||
cy.getGlobalState("clientSecret").then((clientSecret) => { | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
cy.visit(getClientURL(clientSecret, publishableKey)); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it("should complete the card payment successfully", () => { | ||||||||||||||||||||||||||||
const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.successCard; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cardNoInput]').type(cardNo); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cvvInput]').type(cvc); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().get("#submit").click(); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
cy.wait(3000); | ||||||||||||||||||||||||||||
cy.contains("Thanks for your order!").should("be.visible"); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is already being tested in an existing test case, please remove this |
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it("should fail with an undetectable card brand", () => { | ||||||||||||||||||||||||||||
const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cardNoInput]').type("111111"); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cvvInput]').type(cvc); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().get("#submit").click(); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
cy.wait(3000); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('.Error.pt-1').should('be.visible') | ||||||||||||||||||||||||||||
.and('contain.text', "Please enter a valid card number."); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it("should fail with a detectable but invalid card number", () => { | ||||||||||||||||||||||||||||
const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cardNoInput]').type("424242"); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cvvInput]').type(cvc); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().get("#submit").click(); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
cy.wait(3000); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('.Error.pt-1').should('be.visible') | ||||||||||||||||||||||||||||
.and('contain.text', "Card number is invalid."); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it("should fail with an unsupported card brand (RuPay)", () => { | ||||||||||||||||||||||||||||
const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cardNoInput]').type("6082015309577308"); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cvvInput]').type(cvc); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().get("#submit").click(); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
cy.wait(3000); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('.Error.pt-1').should('be.visible') | ||||||||||||||||||||||||||||
.and('contain.text', "RuPay is not supported at the moment."); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
it("should fail with an empty card number", () => { | ||||||||||||||||||||||||||||
const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); | ||||||||||||||||||||||||||||
getIframeBody().find('[data-testid=cvvInput]').type(cvc); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().get("#submit").click(); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
cy.wait(3000); | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
getIframeBody().find('.Error.pt-1').should('be.visible') | ||||||||||||||||||||||||||||
.and('contain.text', "Card Number cannot be empty"); | ||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add a test suite to verify that when a user enters a value in the card input field and then clears it, no error message is displayed as long as the focus remains on the card input field.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay