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) => { ... })
|
|
|
|
|
2022-12-15 07:39:59 -08:00
|
|
|
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) => {
|
2022-12-15 07:39:59 -08:00
|
|
|
return cy.get(`[data-test-id="${selector}"]`, ...args);
|
|
|
|
});
|
2022-11-08 04:21:10 -08:00
|
|
|
|
2022-11-11 00:07:14 -08:00
|
|
|
Cypress.Commands.add('createFixtureWorkflow', (fixtureKey, workflowName) => {
|
2022-12-15 07:39:59 -08:00
|
|
|
const WorkflowPage = new WorkflowPageClass();
|
2022-11-11 00:07:14 -08:00
|
|
|
|
|
|
|
// We need to force the click because the input is hidden
|
2022-12-15 07:39:59 -08:00
|
|
|
WorkflowPage.getters
|
|
|
|
.workflowImportInput()
|
|
|
|
.selectFile(`cypress/fixtures/${fixtureKey}`, { force: true });
|
2022-11-22 01:37:26 -08:00
|
|
|
WorkflowPage.getters.workflowNameInput().should('be.disabled');
|
2022-12-15 07:39:59 -08:00
|
|
|
WorkflowPage.getters.workflowNameInput().parent().click();
|
2022-11-22 01:37:26 -08:00
|
|
|
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-12-15 07:39:59 -08:00
|
|
|
});
|
2022-11-11 00:07:14 -08:00
|
|
|
|
2022-12-15 07:39:59 -08:00
|
|
|
Cypress.Commands.add(
|
|
|
|
'findChildByTestId',
|
|
|
|
{ prevSubject: true },
|
|
|
|
(subject: Cypress.Chainable<JQuery<HTMLElement>>, childTestId) => {
|
|
|
|
return subject.find(`[data-test-id="${childTestId}"]`);
|
|
|
|
},
|
|
|
|
);
|
2022-11-11 00:07:14 -08:00
|
|
|
|
2022-12-13 02:55:51 -08:00
|
|
|
Cypress.Commands.add('waitForLoad', () => {
|
|
|
|
cy.getByTestId('node-view-loader').should('not.exist', { timeout: 10000 });
|
|
|
|
cy.get('.el-loading-mask').should('not.exist', { timeout: 10000 });
|
2022-12-15 07:39:59 -08:00
|
|
|
});
|
2022-12-13 02:55:51 -08:00
|
|
|
|
2022-12-15 07:39:59 -08:00
|
|
|
Cypress.Commands.add('signin', ({ email, password }) => {
|
|
|
|
const signinPage = new SigninPage();
|
|
|
|
const workflowsPage = new WorkflowsPage();
|
2022-11-08 04:21:10 -08:00
|
|
|
|
2022-12-15 07:39:59 -08:00
|
|
|
cy.session(
|
|
|
|
[email, password],
|
|
|
|
() => {
|
2022-11-08 04:21:10 -08:00
|
|
|
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-12-15 07:39:59 -08:00
|
|
|
},
|
|
|
|
);
|
2022-11-08 04:21:10 -08:00
|
|
|
});
|
|
|
|
|
2022-11-28 09:11:33 -08:00
|
|
|
Cypress.Commands.add('setup', ({ email, firstName, lastName, password }) => {
|
2022-11-08 04:21:10 -08:00
|
|
|
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-12-15 07:39:59 -08:00
|
|
|
});
|
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');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2022-12-15 07:39:59 -08:00
|
|
|
});
|
2022-11-28 09:11:33 -08:00
|
|
|
|
|
|
|
Cypress.Commands.add('resetAll', () => {
|
|
|
|
cy.task('reset');
|
|
|
|
Cypress.session.clearAllSavedSessions();
|
|
|
|
});
|
|
|
|
|
|
|
|
Cypress.Commands.add('setupOwner', (payload) => {
|
|
|
|
cy.task('setup-owner', payload);
|
|
|
|
});
|
2022-12-05 05:31:14 -08:00
|
|
|
|
2022-12-07 09:16:38 -08:00
|
|
|
Cypress.Commands.add('grantBrowserPermissions', (...permissions: string[]) => {
|
2022-12-15 07:39:59 -08:00
|
|
|
if (Cypress.isBrowser('chrome')) {
|
|
|
|
cy.wrap(
|
|
|
|
Cypress.automation('remote:debugger:protocol', {
|
|
|
|
command: 'Browser.grantPermissions',
|
|
|
|
params: {
|
|
|
|
permissions,
|
|
|
|
origin: window.location.origin,
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
2022-12-07 09:16:38 -08:00
|
|
|
}
|
|
|
|
});
|
2022-12-15 07:39:59 -08:00
|
|
|
Cypress.Commands.add('readClipboard', () =>
|
|
|
|
cy.window().its('navigator.clipboard').invoke('readText'),
|
|
|
|
);
|
2022-12-14 01:33:44 -08:00
|
|
|
|
2022-12-05 05:31:14 -08:00
|
|
|
Cypress.Commands.add('paste', { prevSubject: true }, (selector, pastePayload) => {
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Element/paste_event
|
2022-12-15 07:39:59 -08:00
|
|
|
cy.wrap(selector).then(($destination) => {
|
2022-12-05 05:31:14 -08:00
|
|
|
const pasteEvent = Object.assign(new Event('paste', { bubbles: true, cancelable: true }), {
|
2022-12-15 07:39:59 -08:00
|
|
|
clipboardData: {
|
|
|
|
getData: () => pastePayload,
|
|
|
|
},
|
2022-12-05 05:31:14 -08:00
|
|
|
});
|
|
|
|
$destination[0].dispatchEvent(pasteEvent);
|
|
|
|
});
|
|
|
|
});
|
2022-12-14 01:33:44 -08:00
|
|
|
|
|
|
|
Cypress.Commands.add('drag', (selector, xDiff, yDiff) => {
|
|
|
|
const element = cy.get(selector);
|
|
|
|
element.should('exist');
|
|
|
|
|
|
|
|
const originalLocation = Cypress.$(selector)[0].getBoundingClientRect();
|
|
|
|
|
|
|
|
element.trigger('mousedown');
|
|
|
|
element.trigger('mousemove', {
|
|
|
|
which: 1,
|
|
|
|
pageX: originalLocation.right + xDiff,
|
|
|
|
pageY: originalLocation.top + yDiff,
|
|
|
|
force: true,
|
|
|
|
});
|
|
|
|
element.trigger('mouseup');
|
|
|
|
});
|