|
|
|
|
@@ -1,18 +1,21 @@
|
|
|
|
|
import { INSTANCE_ADMIN, INSTANCE_MEMBERS } from '../constants';
|
|
|
|
|
import { INSTANCE_ADMIN, INSTANCE_MEMBERS, INSTANCE_OWNER, MANUAL_TRIGGER_NODE_NAME, NOTION_NODE_NAME } from '../constants';
|
|
|
|
|
import {
|
|
|
|
|
WorkflowsPage,
|
|
|
|
|
WorkflowPage,
|
|
|
|
|
CredentialsModal,
|
|
|
|
|
CredentialsPage,
|
|
|
|
|
WorkflowExecutionsTab,
|
|
|
|
|
NDV,
|
|
|
|
|
} from '../pages';
|
|
|
|
|
import * as projects from '../composables/projects';
|
|
|
|
|
import { getVisibleSelect } from '../utils';
|
|
|
|
|
|
|
|
|
|
const workflowsPage = new WorkflowsPage();
|
|
|
|
|
const workflowPage = new WorkflowPage();
|
|
|
|
|
const credentialsPage = new CredentialsPage();
|
|
|
|
|
const credentialsModal = new CredentialsModal();
|
|
|
|
|
const executionsTab = new WorkflowExecutionsTab();
|
|
|
|
|
const ndv = new NDV();
|
|
|
|
|
|
|
|
|
|
describe('Projects', () => {
|
|
|
|
|
before(() => {
|
|
|
|
|
@@ -150,9 +153,9 @@ describe('Projects', () => {
|
|
|
|
|
projects.getHomeButton().click();
|
|
|
|
|
workflowsPage.getters.workflowCards().should('have.length', 2);
|
|
|
|
|
|
|
|
|
|
cy.intercept('GET', '/rest/credentials*').as('credentialsListFilterless');
|
|
|
|
|
cy.intercept('GET', '/rest/credentials*').as('credentialsListUnfiltered');
|
|
|
|
|
projects.getProjectTabCredentials().click();
|
|
|
|
|
cy.wait('@credentialsListFilterless').then((interception) => {
|
|
|
|
|
cy.wait('@credentialsListUnfiltered').then((interception) => {
|
|
|
|
|
expect(interception.request.url).not.to.contain('filter');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
@@ -228,4 +231,140 @@ describe('Projects', () => {
|
|
|
|
|
projects.getAddProjectButton().should('not.exist');
|
|
|
|
|
projects.getMenuItems().should('not.exist');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('when starting from scratch', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
cy.resetDatabase();
|
|
|
|
|
cy.enableFeature('sharing');
|
|
|
|
|
cy.enableFeature('advancedPermissions');
|
|
|
|
|
cy.enableFeature('projectRole:admin');
|
|
|
|
|
cy.enableFeature('projectRole:editor');
|
|
|
|
|
cy.changeQuota('maxTeamProjects', -1);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should filter credentials by project ID when creating new workflow or hard reloading an opened workflow', () => {
|
|
|
|
|
cy.signin(INSTANCE_OWNER);
|
|
|
|
|
cy.visit(workflowsPage.url);
|
|
|
|
|
|
|
|
|
|
// Create a project and add a credential to it
|
|
|
|
|
cy.intercept('POST', '/rest/projects').as('projectCreate');
|
|
|
|
|
projects.getAddProjectButton().should('contain', 'Add project').should('be.visible').click();
|
|
|
|
|
cy.wait('@projectCreate');
|
|
|
|
|
projects.getMenuItems().should('have.length', 1);
|
|
|
|
|
projects.getMenuItems().first().click();
|
|
|
|
|
projects.getProjectTabCredentials().click();
|
|
|
|
|
credentialsPage.getters.credentialCards().should('not.have.length');
|
|
|
|
|
|
|
|
|
|
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('Internal Integration Secret').type('1234567890');
|
|
|
|
|
credentialsModal.actions.setName('Notion account project 1');
|
|
|
|
|
|
|
|
|
|
cy.intercept('POST', '/rest/credentials').as('credentialSave');
|
|
|
|
|
credentialsModal.actions.save();
|
|
|
|
|
cy.wait('@credentialSave').then((interception) => {
|
|
|
|
|
expect(interception.request.body).to.have.property('projectId');
|
|
|
|
|
});
|
|
|
|
|
credentialsModal.actions.close();
|
|
|
|
|
|
|
|
|
|
// Create another project and add a credential to it
|
|
|
|
|
projects.getAddProjectButton().click();
|
|
|
|
|
cy.wait('@projectCreate');
|
|
|
|
|
projects.getMenuItems().should('have.length', 2);
|
|
|
|
|
projects.getMenuItems().last().click();
|
|
|
|
|
projects.getProjectTabCredentials().click();
|
|
|
|
|
credentialsPage.getters.credentialCards().should('not.have.length');
|
|
|
|
|
|
|
|
|
|
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('Internal Integration Secret').type('1234567890');
|
|
|
|
|
credentialsModal.actions.setName('Notion account project 2');
|
|
|
|
|
|
|
|
|
|
credentialsModal.actions.save();
|
|
|
|
|
cy.wait('@credentialSave').then((interception) => {
|
|
|
|
|
expect(interception.request.body).to.have.property('projectId');
|
|
|
|
|
});
|
|
|
|
|
credentialsModal.actions.close();
|
|
|
|
|
|
|
|
|
|
// Create a credential in Home project
|
|
|
|
|
projects.getHomeButton().click();
|
|
|
|
|
projects.getProjectTabCredentials().click();
|
|
|
|
|
|
|
|
|
|
credentialsPage.getters.credentialCards().should('have.length', 2);
|
|
|
|
|
|
|
|
|
|
credentialsPage.getters.createCredentialButton().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('Internal Integration Secret').type('1234567890');
|
|
|
|
|
credentialsModal.actions.setName('Notion account personal project');
|
|
|
|
|
|
|
|
|
|
cy.intercept('POST', '/rest/credentials').as('credentialSave');
|
|
|
|
|
credentialsModal.actions.save();
|
|
|
|
|
cy.wait('@credentialSave')
|
|
|
|
|
credentialsModal.actions.close();
|
|
|
|
|
|
|
|
|
|
// Go to the first project and create a workflow
|
|
|
|
|
projects.getMenuItems().first().click();
|
|
|
|
|
workflowsPage.getters.workflowCards().should('not.have.length');
|
|
|
|
|
workflowsPage.getters.newWorkflowButtonCard().click();
|
|
|
|
|
workflowPage.actions.addNodeToCanvas(MANUAL_TRIGGER_NODE_NAME);
|
|
|
|
|
workflowPage.actions.addNodeToCanvas(NOTION_NODE_NAME, true, true);
|
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().first().click();
|
|
|
|
|
getVisibleSelect().find('li').should('have.length', 2).first().should('contain.text', 'Notion account project 1');
|
|
|
|
|
ndv.getters.backToCanvas().click();
|
|
|
|
|
workflowPage.actions.saveWorkflowOnButtonClick();
|
|
|
|
|
|
|
|
|
|
cy.reload();
|
|
|
|
|
workflowPage.getters.canvasNodeByName(NOTION_NODE_NAME).should('be.visible').dblclick();
|
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().first().click();
|
|
|
|
|
getVisibleSelect().find('li').should('have.length', 2).first().should('contain.text', 'Notion account project 1');
|
|
|
|
|
ndv.getters.backToCanvas().click();
|
|
|
|
|
|
|
|
|
|
// Go to the second project and create a workflow
|
|
|
|
|
projects.getMenuItems().last().click();
|
|
|
|
|
workflowsPage.getters.workflowCards().should('not.have.length');
|
|
|
|
|
workflowsPage.getters.newWorkflowButtonCard().click();
|
|
|
|
|
workflowPage.actions.addNodeToCanvas(MANUAL_TRIGGER_NODE_NAME);
|
|
|
|
|
workflowPage.actions.addNodeToCanvas(NOTION_NODE_NAME, true, true);
|
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().first().click();
|
|
|
|
|
getVisibleSelect().find('li').should('have.length', 2).first().should('contain.text', 'Notion account project 2');
|
|
|
|
|
ndv.getters.backToCanvas().click();
|
|
|
|
|
workflowPage.actions.saveWorkflowOnButtonClick();
|
|
|
|
|
|
|
|
|
|
cy.reload();
|
|
|
|
|
workflowPage.getters.canvasNodeByName(NOTION_NODE_NAME).should('be.visible').dblclick();
|
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().first().click();
|
|
|
|
|
getVisibleSelect().find('li').should('have.length', 2).first().should('contain.text', 'Notion account project 2');
|
|
|
|
|
ndv.getters.backToCanvas().click();
|
|
|
|
|
|
|
|
|
|
// Go to the Home project and create a workflow
|
|
|
|
|
projects.getHomeButton().click();
|
|
|
|
|
projects.getProjectTabCredentials().click();
|
|
|
|
|
credentialsPage.getters.credentialCards().should('have.length', 3);
|
|
|
|
|
|
|
|
|
|
projects.getProjectTabWorkflows().click();
|
|
|
|
|
workflowsPage.getters.workflowCards().should('have.length', 2);
|
|
|
|
|
workflowsPage.getters.createWorkflowButton().click();
|
|
|
|
|
workflowPage.actions.addNodeToCanvas(MANUAL_TRIGGER_NODE_NAME);
|
|
|
|
|
workflowPage.actions.addNodeToCanvas(NOTION_NODE_NAME, true, true);
|
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().first().click();
|
|
|
|
|
getVisibleSelect().find('li').should('have.length', 2).first().should('contain.text', 'Notion account personal project');
|
|
|
|
|
ndv.getters.backToCanvas().click();
|
|
|
|
|
workflowPage.actions.saveWorkflowOnButtonClick();
|
|
|
|
|
|
|
|
|
|
cy.reload();
|
|
|
|
|
workflowPage.getters.canvasNodeByName(NOTION_NODE_NAME).should('be.visible').dblclick();
|
|
|
|
|
workflowPage.getters.nodeCredentialsSelect().first().click();
|
|
|
|
|
getVisibleSelect().find('li').should('have.length', 2).first().should('contain.text', 'Notion account personal project');
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|