2022-11-08 04:21:10 -08:00
|
|
|
// ***********************************************
|
|
|
|
// This example commands.js shows you how to
|
|
|
|
// create various custom commands and overwrite
|
|
|
|
// existing commands.
|
|
|
|
//
|
|
|
|
// For more comprehensive examples of custom
|
|
|
|
// commands please read more here:
|
|
|
|
// https://on.cypress.io/custom-commands
|
|
|
|
// ***********************************************
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a parent command --
|
|
|
|
// Cypress.Commands.add('login', (email, password) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a child command --
|
|
|
|
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This is a dual command --
|
|
|
|
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// -- This will overwrite an existing command --
|
|
|
|
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
|
|
|
|
|
|
|
|
import { WorkflowsPage, SigninPage, SignupPage } from "../pages";
|
|
|
|
import { N8N_AUTH_COOKIE } from "../constants";
|
2022-11-11 00:07:14 -08:00
|
|
|
import { WorkflowPage as WorkflowPageClass } from '../pages/workflow';
|
2022-11-24 03:52:09 -08:00
|
|
|
import { MessageBox } from '../pages/modals/message-box';
|
2022-11-08 04:21:10 -08:00
|
|
|
|
|
|
|
Cypress.Commands.add('getByTestId', (selector, ...args) => {
|
|
|
|
return cy.get(`[data-test-id="${selector}"]`, ...args)
|
|
|
|
})
|
|
|
|
|
2022-11-11 00:07:14 -08:00
|
|
|
Cypress.Commands.add('createFixtureWorkflow', (fixtureKey, workflowName) => {
|
|
|
|
const WorkflowPage = new WorkflowPageClass()
|
|
|
|
|
|
|
|
// We need to force the click because the input is hidden
|
2022-11-22 01:37:26 -08:00
|
|
|
WorkflowPage.getters.workflowImportInput().selectFile(`cypress/fixtures/${fixtureKey}`, { force: true});
|
|
|
|
WorkflowPage.getters.workflowNameInput().should('be.disabled');
|
|
|
|
WorkflowPage.getters.workflowNameInput().parent().click()
|
|
|
|
WorkflowPage.getters.workflowNameInput().should('be.enabled');
|
|
|
|
WorkflowPage.getters.workflowNameInput().clear().type(workflowName).type('{enter}');
|
2022-11-11 00:07:14 -08:00
|
|
|
|
2022-11-22 01:37:26 -08:00
|
|
|
WorkflowPage.getters.saveButton().should('contain', 'Saved');
|
2022-11-11 00:07:14 -08:00
|
|
|
})
|
|
|
|
|
|
|
|
Cypress.Commands.add('findChildByTestId', { prevSubject: true }, (subject: Cypress.Chainable<JQuery<HTMLElement>>, childTestId) => {
|
|
|
|
return subject.find(`[data-test-id="${childTestId}"]`);
|
|
|
|
})
|
|
|
|
|
2022-11-08 04:21:10 -08:00
|
|
|
Cypress.Commands.add(
|
|
|
|
'signin',
|
|
|
|
(email, password) => {
|
|
|
|
const signinPage = new SigninPage();
|
|
|
|
const workflowsPage = new WorkflowsPage();
|
|
|
|
|
|
|
|
cy.session([email, password], () => {
|
|
|
|
cy.visit(signinPage.url);
|
|
|
|
|
2022-11-22 01:37:26 -08:00
|
|
|
signinPage.getters.form().within(() => {
|
|
|
|
signinPage.getters.email().type(email);
|
|
|
|
signinPage.getters.password().type(password);
|
|
|
|
signinPage.getters.submit().click();
|
2022-11-08 04:21:10 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
// we should be redirected to /workflows
|
|
|
|
cy.url().should('include', workflowsPage.url);
|
|
|
|
},
|
|
|
|
{
|
|
|
|
validate() {
|
|
|
|
cy.getCookie(N8N_AUTH_COOKIE).should('exist');
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-11-24 03:52:09 -08:00
|
|
|
// todo rename to setup
|
2022-11-08 04:21:10 -08:00
|
|
|
Cypress.Commands.add('signup', (email, firstName, lastName, password) => {
|
|
|
|
const signupPage = new SignupPage();
|
|
|
|
|
|
|
|
cy.visit(signupPage.url);
|
|
|
|
|
2022-11-22 01:37:26 -08:00
|
|
|
signupPage.getters.form().within(() => {
|
2022-11-08 04:21:10 -08:00
|
|
|
cy.url().then((url) => {
|
|
|
|
if (url.endsWith(signupPage.url)) {
|
2022-11-22 01:37:26 -08:00
|
|
|
signupPage.getters.email().type(email);
|
|
|
|
signupPage.getters.firstName().type(firstName);
|
|
|
|
signupPage.getters.lastName().type(lastName);
|
|
|
|
signupPage.getters.password().type(password);
|
|
|
|
signupPage.getters.submit().click();
|
2022-11-08 04:21:10 -08:00
|
|
|
} else {
|
|
|
|
cy.log('User already signed up');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|
2022-11-24 03:52:09 -08:00
|
|
|
|
|
|
|
Cypress.Commands.add('skipSetup', () => {
|
|
|
|
const signupPage = new SignupPage();
|
|
|
|
const workflowsPage = new WorkflowsPage();
|
|
|
|
const Confirmation = new MessageBox();
|
|
|
|
|
|
|
|
cy.visit(signupPage.url);
|
|
|
|
|
|
|
|
signupPage.getters.form().within(() => {
|
|
|
|
cy.url().then((url) => {
|
|
|
|
if (url.endsWith(signupPage.url)) {
|
|
|
|
signupPage.getters.skip().click();
|
|
|
|
|
|
|
|
|
|
|
|
Confirmation.getters.header().should('contain.text', 'Skip owner account setup?');
|
|
|
|
Confirmation.actions.confirm();
|
|
|
|
|
|
|
|
// we should be redirected to /workflows
|
|
|
|
cy.url().should('include', workflowsPage.url);
|
|
|
|
} else {
|
|
|
|
cy.log('User already signed up');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
})
|