mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
* WIP: Cypress parallel CI run test * Trigger action on branch push * Change build artifacts path * Make sure to checkout the repo for testing job * Use Cypress action for installing * Lock cypress action userd version * Skip node install step since we're using cypress node16 container * Let Cypress handle pnpm install * Use setup-node action for caching pnpm * Set CYPRESS_CACHE_FOLDER * Set CYPRESS_CACHE_FOLDER * Manually cache pnpm store * Dont fix pnpm version * Use caching action also in testing job * Zip packages dist before uploading the artifacts and change caching key * Use absolute build paths for zipping job * Use zip command in action * Use tar for zipping packages * Debuggin directory ls * Debugging caching of modules * Attempt to fix permissions issue * Porivde Cypress executable via `CYPRESS_RUN_BINARY` * Cache /github/home * Adjust caching keys * Debug: search for cypress exec * Debugging: List dirs * Use pnpm install action to install node_modules * Do not log /home/runner * Use node_modules/.bin Cypress binary * Use absolute path to nodue modules * Run Cypress via custom command * Try with patched cypress action * Revert logging * Manually specify cypress config file * Use absolute paths * Fix cypress config name * Debug print cypress config * Remove debugging, increase to 4 containers * Increase amount of containers * Add env-version matrix * Replace node14 with node18 in testing matrix * Remove debugging and add node 14 * Use just node14 * Use cypress:base and remove browser req * Give more general timeouts * Try with node16 * Change cache directive position * Replace zip artifact upload with cache * Cache full packages not just dist * Test with variable inputs * Add commit info message * Remove wrongly commited code * Allow WF API dispatch * Try Chrome browser again for comparison * Include Monaco in the build * Make e2e workflow re-usable * Comment out invalid reusable workflow args * Use electron and add node 14 run * Fix env arg * Provide custom ci-build-id * Refactor remaining e2e workflow to use reusable action * Remove single matrix directive * Refactor ci-pull-req * Make lint job dependant on test jobs * Disable debugging job * Make containers dynamic * Cleanup & install git for linting action * Use regular buntu image for PR linting * Debugging failing tests * Remove fixed spec name * Debug e2e env var * Do not use realkeypress which crashes electron runner * Debugging * chore: remove console * chore: remove console * test: remove node 14 tests * test: replace test branch with master * test: use tests in current branch * test: use relative path * chore: clean up * test: only trigger on approval * ci: update test PR * ci: use curr branch * ci: only run 14 on schedule, not for slack command * ci: only run test on approval * ci: clean up branch, rename step * ci: rename steps * ci: clean up cancel * ci: clean up env var * ci: set var * ci: use chromef * ci: use electron * chore: add console log * chore: add console log * ci: update to string * ci: set all env options * test: build * ci: fix step issue * Fix failing tests & upgrade to Cypress 12 * Allow WF dispatch of e2e reusable * Fix wrong naming in e2e-tests workflow * Redeploy * Fix tests * Fix NDV tests and remove skipping of webhooks execution tests * Fix clipboard read command * Fix execution failing tests * Reset before each 15 and 3 * Fix flaky tests * Cleanup and log envs * Test fixes * Default owner spec fixes * Get rid of CYPRESS_RUN_ENV * Increase amount of containers, cleanup and add mock for credentials test call * Cleanup & fix PR tests unit tests * Wait for WF to loade in sharing spec * Do linting and unit tests first * Use frozen lockfile * Revert back ci pull request jobs order * Refine credential input selector and move cy.waitForLoad to correct position in 15-scheduler spec * test: build * Wait for WF execution instead of arbitraty timeout in WF execution spec, change order of jobs for ci pull request * Fix flaky 3-default owner spec and wait for execution list to load in 20-workflow-executions * Use setup node action * Remove caching for lint/unit tests * Experiment with parallel test & lint on ci * Provide cache key dynamically * Run e2e in parallel on pr * Only run node14 e2e on daily schedule * Make sure to generate generate new ci-build-id on re-runs * Remove debugging prints * Address PR comments * Rename custom onBeforeUnload handler * Make sure 19-execution spec waits for wf to load properly before import fixtures --------- Co-authored-by: Mutasem <mutdmour@gmail.com>
281 lines
12 KiB
TypeScript
281 lines
12 KiB
TypeScript
import {
|
|
NEW_NOTION_ACCOUNT_NAME,
|
|
NOTION_NODE_NAME,
|
|
PIPEDRIVE_NODE_NAME,
|
|
HTTP_REQUEST_NODE_NAME,
|
|
NEW_QUERY_AUTH_ACCOUNT_NAME,
|
|
} from './../constants';
|
|
import {
|
|
DEFAULT_USER_EMAIL,
|
|
DEFAULT_USER_PASSWORD,
|
|
GMAIL_NODE_NAME,
|
|
NEW_GOOGLE_ACCOUNT_NAME,
|
|
NEW_TRELLO_ACCOUNT_NAME,
|
|
SCHEDULE_TRIGGER_NODE_NAME,
|
|
TRELLO_NODE_NAME,
|
|
} from '../constants';
|
|
import { randFirstName, randLastName } from '@ngneat/falso';
|
|
import { CredentialsPage, CredentialsModal, WorkflowPage, NDV } from '../pages';
|
|
|
|
const email = DEFAULT_USER_EMAIL;
|
|
const password = DEFAULT_USER_PASSWORD;
|
|
const firstName = randFirstName();
|
|
const lastName = randLastName();
|
|
const credentialsPage = new CredentialsPage();
|
|
const credentialsModal = new CredentialsModal();
|
|
const workflowPage = new WorkflowPage();
|
|
const nodeDetailsView = new NDV();
|
|
|
|
const NEW_CREDENTIAL_NAME = 'Something else';
|
|
|
|
describe('Credentials', () => {
|
|
before(() => {
|
|
cy.resetAll();
|
|
cy.setup({ email, firstName, lastName, password });
|
|
|
|
// Always intercept the request to test credentials and return a success
|
|
cy.intercept('POST', '/rest/credentials/test', {
|
|
statusCode: 200,
|
|
body: {
|
|
data: { status: 'success', message: 'Tested successfully' },
|
|
}
|
|
});
|
|
});
|
|
|
|
beforeEach(() => {
|
|
cy.on('uncaught:exception', (err, runnable) => {
|
|
expect(err.message).to.include('Not logged in');
|
|
|
|
return false;
|
|
});
|
|
|
|
cy.signin({ email, password });
|
|
cy.visit(credentialsPage.url);
|
|
});
|
|
|
|
it('should create a new credential using empty state', () => {
|
|
credentialsPage.getters.emptyListCreateCredentialButton().click();
|
|
|
|
credentialsModal.getters.newCredentialModal().should('be.visible');
|
|
credentialsModal.getters.newCredentialTypeSelect().should('be.visible');
|
|
credentialsModal.getters.newCredentialTypeOption('Notion API').click();
|
|
|
|
credentialsModal.getters.newCredentialTypeButton().click();
|
|
credentialsModal.getters.connectionParameter('API Key').type('1234567890');
|
|
|
|
credentialsModal.actions.setName('My awesome Notion account');
|
|
credentialsModal.actions.save();
|
|
credentialsModal.actions.close();
|
|
|
|
credentialsPage.getters.credentialCards().should('have.length', 1);
|
|
});
|
|
|
|
it('should create a new credential using Add Credential button', () => {
|
|
credentialsPage.getters.createCredentialButton().click();
|
|
|
|
credentialsModal.getters.newCredentialModal().should('be.visible');
|
|
credentialsModal.getters.newCredentialTypeSelect().should('be.visible');
|
|
credentialsModal.getters.newCredentialTypeOption('Airtable API').click();
|
|
|
|
credentialsModal.getters.newCredentialTypeButton().click();
|
|
credentialsModal.getters.editCredentialModal().should('be.visible');
|
|
credentialsModal.getters.connectionParameter('API Key').type('1234567890');
|
|
|
|
credentialsModal.actions.setName('Airtable Account');
|
|
credentialsModal.actions.save();
|
|
credentialsModal.actions.close();
|
|
|
|
credentialsPage.getters.credentialCards().should('have.length', 2);
|
|
});
|
|
|
|
it('should search credentials', () => {
|
|
// Search by name
|
|
credentialsPage.actions.search('Notion');
|
|
credentialsPage.getters.credentialCards().should('have.length', 1);
|
|
|
|
// Search by Credential type
|
|
credentialsPage.actions.search('Airtable API');
|
|
credentialsPage.getters.credentialCards().should('have.length', 1);
|
|
|
|
// No results
|
|
credentialsPage.actions.search('Google');
|
|
credentialsPage.getters.credentialCards().should('have.length', 0);
|
|
credentialsPage.getters.emptyList().should('be.visible');
|
|
});
|
|
|
|
it('should sort credentials', () => {
|
|
credentialsPage.actions.search('');
|
|
credentialsPage.actions.sortBy('nameDesc');
|
|
credentialsPage.getters.credentialCards().eq(0).should('contain.text', 'Notion');
|
|
credentialsPage.actions.sortBy('nameAsc');
|
|
});
|
|
|
|
it('should create credentials from NDV for node with multiple auth options', () => {
|
|
workflowPage.actions.visit();
|
|
cy.waitForLoad();
|
|
workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME);
|
|
workflowPage.actions.addNodeToCanvas(GMAIL_NODE_NAME);
|
|
workflowPage.getters.canvasNodes().last().click();
|
|
cy.get('body').type('{enter}');
|
|
workflowPage.getters.nodeCredentialsSelect().click();
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').last().click();
|
|
credentialsModal.getters.credentialsEditModal().should('be.visible');
|
|
credentialsModal.getters.credentialAuthTypeRadioButtons().should('have.length', 2);
|
|
credentialsModal.getters.credentialAuthTypeRadioButtons().first().click();
|
|
credentialsModal.actions.fillCredentialsForm();
|
|
cy.get('.el-message-box').find('button').contains('Close').click();
|
|
workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_GOOGLE_ACCOUNT_NAME);
|
|
});
|
|
|
|
it('should show multiple credential types in the same dropdown', () => {
|
|
workflowPage.actions.visit();
|
|
cy.waitForLoad();
|
|
workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME);
|
|
workflowPage.actions.addNodeToCanvas(GMAIL_NODE_NAME);
|
|
workflowPage.getters.canvasNodes().last().click();
|
|
cy.get('body').type('{enter}');
|
|
workflowPage.getters.nodeCredentialsSelect().click();
|
|
// Add oAuth credentials
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').last().click();
|
|
credentialsModal.getters.credentialsEditModal().should('be.visible');
|
|
credentialsModal.getters.credentialAuthTypeRadioButtons().should('have.length', 2);
|
|
credentialsModal.getters.credentialAuthTypeRadioButtons().first().click();
|
|
credentialsModal.actions.fillCredentialsForm();
|
|
cy.get('.el-message-box').find('button').contains('Close').click();
|
|
workflowPage.getters.nodeCredentialsSelect().click();
|
|
// Add Service account credentials
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').last().click();
|
|
credentialsModal.getters.credentialsEditModal().should('be.visible');
|
|
credentialsModal.getters.credentialAuthTypeRadioButtons().should('have.length', 2);
|
|
credentialsModal.getters.credentialAuthTypeRadioButtons().last().click();
|
|
credentialsModal.actions.fillCredentialsForm();
|
|
// Both (+ the 'Create new' option) should be in the dropdown
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').should('have.length.greaterThan', 3);
|
|
});
|
|
|
|
it('should correctly render required and optional credentials', () => {
|
|
workflowPage.actions.visit();
|
|
cy.waitForLoad();
|
|
workflowPage.actions.addNodeToCanvas(PIPEDRIVE_NODE_NAME, true, true);
|
|
cy.get('body').type('{downArrow}');
|
|
cy.get('body').type('{enter}');
|
|
// Select incoming authentication
|
|
nodeDetailsView.getters.parameterInput('incomingAuthentication').should('exist');
|
|
nodeDetailsView.getters.parameterInput('incomingAuthentication').click();
|
|
nodeDetailsView.getters.parameterInput('incomingAuthentication').find('li').first().click();
|
|
// There should be two credential fields
|
|
workflowPage.getters.nodeCredentialsSelect().should('have.length', 2);
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().first().click();
|
|
workflowPage.getters.nodeCredentialsSelect().first().find('li').last().click();
|
|
// This one should show auth type selector
|
|
credentialsModal.getters.credentialAuthTypeRadioButtons().should('have.length', 2);
|
|
cy.get('body').type('{esc}');
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().last().click();
|
|
workflowPage.getters.nodeCredentialsSelect().last().find('li').last().click();
|
|
// This one should not show auth type selector
|
|
credentialsModal.getters.credentialsAuthTypeSelector().should('not.exist');
|
|
});
|
|
|
|
it('should create credentials from NDV for node with no auth options', () => {
|
|
workflowPage.actions.visit();
|
|
cy.waitForLoad();
|
|
workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME);
|
|
workflowPage.actions.addNodeToCanvas(TRELLO_NODE_NAME);
|
|
workflowPage.getters.canvasNodes().last().click();
|
|
cy.get('body').type('{enter}');
|
|
workflowPage.getters.nodeCredentialsSelect().click();
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').last().click();
|
|
credentialsModal.getters.credentialsAuthTypeSelector().should('not.exist');
|
|
credentialsModal.actions.fillCredentialsForm();
|
|
workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_TRELLO_ACCOUNT_NAME);
|
|
});
|
|
|
|
it('should delete credentials from NDV', () => {
|
|
workflowPage.actions.visit();
|
|
cy.waitForLoad();
|
|
workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME);
|
|
workflowPage.actions.addNodeToCanvas(NOTION_NODE_NAME);
|
|
workflowPage.getters.canvasNodes().last().click();
|
|
cy.get('body').type('{enter}');
|
|
workflowPage.getters.nodeCredentialsSelect().click();
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').last().click();
|
|
credentialsModal.actions.fillCredentialsForm();
|
|
workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_NOTION_ACCOUNT_NAME);
|
|
|
|
workflowPage.getters.nodeCredentialsEditButton().click();
|
|
credentialsModal.getters.credentialsEditModal().should('be.visible');
|
|
credentialsModal.getters.deleteButton().click();
|
|
cy.get('.el-message-box').find('button').contains('Yes').click();
|
|
workflowPage.getters.successToast().contains('Credential deleted');
|
|
workflowPage.getters.nodeCredentialsSelect().should('not.contain', NEW_TRELLO_ACCOUNT_NAME);
|
|
});
|
|
|
|
it('should rename credentials from NDV', () => {
|
|
workflowPage.actions.visit();
|
|
cy.waitForLoad();
|
|
workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME);
|
|
workflowPage.actions.addNodeToCanvas(TRELLO_NODE_NAME);
|
|
workflowPage.getters.canvasNodes().last().click();
|
|
cy.get('body').type('{enter}');
|
|
workflowPage.getters.nodeCredentialsSelect().click();
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').last().click();
|
|
credentialsModal.actions.fillCredentialsForm();
|
|
workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_TRELLO_ACCOUNT_NAME);
|
|
|
|
workflowPage.getters.nodeCredentialsEditButton().click();
|
|
credentialsModal.getters.credentialsEditModal().should('be.visible');
|
|
credentialsModal.getters.name().click();
|
|
credentialsModal.actions.renameCredential(NEW_CREDENTIAL_NAME);
|
|
credentialsModal.getters.saveButton().click();
|
|
credentialsModal.getters.closeButton().click();
|
|
workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_CREDENTIAL_NAME);
|
|
});
|
|
|
|
it('should setup generic authentication for HTTP node', () => {
|
|
workflowPage.actions.visit();
|
|
cy.waitForLoad();
|
|
workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME);
|
|
workflowPage.actions.addNodeToCanvas(HTTP_REQUEST_NODE_NAME);
|
|
workflowPage.getters.canvasNodes().last().click();
|
|
cy.get('body').type('{enter}');
|
|
nodeDetailsView.getters.parameterInput('authentication').click();
|
|
nodeDetailsView.getters.parameterInput('authentication').find('li').should('have.length', 3);
|
|
nodeDetailsView.getters.parameterInput('authentication').find('li').last().click();
|
|
nodeDetailsView.getters.parameterInput('genericAuthType').should('exist');
|
|
nodeDetailsView.getters.parameterInput('genericAuthType').click();
|
|
nodeDetailsView.getters
|
|
.parameterInput('genericAuthType')
|
|
.find('li')
|
|
.should('have.length.greaterThan', 0);
|
|
nodeDetailsView.getters.parameterInput('genericAuthType').find('li').last().click();
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().should('exist');
|
|
workflowPage.getters.nodeCredentialsSelect().click();
|
|
workflowPage.getters.nodeCredentialsSelect().find('li').last().click();
|
|
credentialsModal.actions.fillCredentialsForm();
|
|
workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_QUERY_AUTH_ACCOUNT_NAME);
|
|
});
|
|
|
|
it('should render custom node with n8n credential', () => {
|
|
workflowPage.actions.visit();
|
|
workflowPage.actions.addNodeToCanvas('Manual');
|
|
workflowPage.actions.addNodeToCanvas('E2E Node with native n8n credential', true, true);
|
|
workflowPage.getters.nodeCredentialsLabel().click();
|
|
cy.contains('Create New Credential').click();
|
|
credentialsModal.getters.editCredentialModal().should('be.visible');
|
|
credentialsModal.getters.editCredentialModal().should('contain.text', 'Notion API');
|
|
});
|
|
|
|
it('should render custom node with custom credential', () => {
|
|
workflowPage.actions.visit();
|
|
workflowPage.actions.addNodeToCanvas('Manual');
|
|
workflowPage.actions.addNodeToCanvas('E2E Node with custom credential', true, true);
|
|
workflowPage.getters.nodeCredentialsLabel().click();
|
|
cy.contains('Create New Credential').click();
|
|
credentialsModal.getters.editCredentialModal().should('be.visible');
|
|
credentialsModal.getters.editCredentialModal().should('contain.text', 'Custom E2E Credential');
|
|
});
|
|
});
|