Skip to content
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

Add more tests #666

Merged
merged 2 commits into from
Dec 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cypress/fixtures/contact.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "John Doe",
"email": "[email protected]",
"message": "Lorem ipsum dolor sit amet",
"phone": "0"
}
5 changes: 0 additions & 5 deletions cypress/fixtures/example.json

This file was deleted.

29 changes: 29 additions & 0 deletions cypress/integration/events.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
describe("Events", () => {
beforeEach(() => {
cy.visit("/dev/events/payment//");
});

it("should focus stripe form when stripe event is fired", () => {
cy.get(
"a[href='/dev/events/payment?event=pricing:change&product=Starting%20plan&price=$9.99/mo&currency=usd']"
).click();
cy.get("#stripe input[name=email]").should("focused", true);
cy.get("#stripe .price-display .btn-group label")
.should("have.length", 1)
.should("contain", "$9.99/mo");
});

it("should focus contact form when contact event is fired", () => {
cy.get(
"a[href='/dev/events/payment?e=P2V2ZW50PWNvbnRhY3Q6dXBkYXRlJm1lc3NhZ2U9VGl0bGU6IExldCdzIG5lZ290aWF0ZQpQbGFuOiBFbnRlcnByaXNlIHBsYW4KWW91ciBtZXNzYWdlOgo=']"
).click();
cy.get("#contact input[name=name]").should("focused", true);
cy.get("#contact textarea[name=message]").should(
"contain",
`Title: Let's negotiate
Plan: Enterprise plan
Your message:
`
);
});
});
33 changes: 33 additions & 0 deletions cypress/integration/form-errors.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
describe("Form errors", () => {
beforeEach(() => {
cy.visit("/fragments/contact/");
});

it("should not be displayed by default", () => {
cy.get("#contact .form-group .has-error").should("have.length", 0);
});

it("should be displayed if field is touched", () => {
cy.get("#contact .form-group input[name=name]").focus()
cy.get("#contact .form-group .has-error").should("have.length", 1);
});

it("should be not be displayed if field is touched but filled with valid information", () => {
cy.fixture('contact').then(({name}) => cy.get("#contact .form-group input[name=name]").type(name));
cy.get("#contact .form-group .has-error").should("have.length", 0);
});

it("should all be displayed if all inputs are touched", () => {
cy.get("#contact .form-group input, #contact .form-group textarea").each((node, i) => setTimeout(() => node.focus(), i * 250));
cy.get("#contact .form-group .has-error").should("have.length", 4);
});

it("should not be displayed if all fields are touched but filled with valid information", () => {
cy.fixture('contact').then(fields =>
Object.keys(fields).forEach(field =>
cy.get(`#contact .form-group ${field === 'message' ? 'textarea' : 'input'}[name=${field}]`).type(fields[field])
)
);
cy.get("#contact .form-group .has-error").should("have.length", 0);
});
});

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"Target":"style.min.186bc2691b3b0267fb7a27723217f3b96c3c44739751202d136f9460f847ac6f.css","MediaType":"text/css","Data":{"Integrity":"sha256-GGvCaRs7Amf7eidyMhfzuWw8RHOXUSAtE2+UYPhHrG8="}}
{"Target":"style.min.186bc2691b3b0267fb7a27723217f3b96c3c44739751202d136f9460f847ac6f.css","MediaType":"text/css","Data":{"Integrity":"sha256-GGvCaRs7Amf7eidyMhfzuWw8RHOXUSAtE2+UYPhHrG8="}}