mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
596c472ecc
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com> Co-authored-by: Val <68596159+valya@users.noreply.github.com> Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in> Co-authored-by: Valya Bullions <valya@n8n.io> Co-authored-by: Danny Martini <danny@n8n.io> Co-authored-by: Danny Martini <despair.blue@gmail.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: oleg <me@olegivaniv.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: Elias Meire <elias@meire.dev> Co-authored-by: Giulio Andreini <andreini@netseven.it> Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Ayato Hayashi <go12limchangyong@gmail.com>
191 lines
6.8 KiB
TypeScript
191 lines
6.8 KiB
TypeScript
import { INSTANCE_MEMBERS, INSTANCE_OWNER, INSTANCE_ADMIN } from '../constants';
|
|
import {
|
|
CredentialsModal,
|
|
CredentialsPage,
|
|
NDV,
|
|
WorkflowPage,
|
|
WorkflowSharingModal,
|
|
WorkflowsPage,
|
|
} from '../pages';
|
|
import { getVisibleSelect } from '../utils';
|
|
|
|
/**
|
|
* User U1 - Instance owner
|
|
* User U2 - User, owns C1, W1, W2
|
|
* User U3 - User, owns C2
|
|
*
|
|
* W1 - Workflow owned by User U2, shared with User U3
|
|
* W2 - Workflow owned by User U2
|
|
*
|
|
* C1 - Credential owned by User U2
|
|
* C2 - Credential owned by User U3, shared with User U1 and User U2
|
|
*/
|
|
|
|
const credentialsPage = new CredentialsPage();
|
|
const credentialsModal = new CredentialsModal();
|
|
|
|
const workflowsPage = new WorkflowsPage();
|
|
const workflowPage = new WorkflowPage();
|
|
const workflowSharingModal = new WorkflowSharingModal();
|
|
const ndv = new NDV();
|
|
|
|
describe('Sharing', { disableAutoLogin: true }, () => {
|
|
before(() => cy.enableFeature('sharing'));
|
|
|
|
let workflowW2Url = '';
|
|
it('should create C1, W1, W2, share W1 with U3, as U2', () => {
|
|
cy.signin(INSTANCE_MEMBERS[0]);
|
|
|
|
cy.visit(credentialsPage.url);
|
|
credentialsPage.getters.emptyListCreateCredentialButton().click();
|
|
credentialsModal.getters.newCredentialTypeOption('Notion API').click();
|
|
credentialsModal.getters.newCredentialTypeButton().click();
|
|
credentialsModal.getters.connectionParameter('Internal Integration Secret').type('1234567890');
|
|
credentialsModal.actions.setName('Credential C1');
|
|
credentialsModal.actions.save();
|
|
credentialsModal.actions.close();
|
|
|
|
workflowPage.actions.visit();
|
|
workflowPage.actions.setWorkflowName('Workflow W1');
|
|
workflowPage.actions.addInitialNodeToCanvas('Manual Trigger');
|
|
workflowPage.actions.addNodeToCanvas('Notion', true, true);
|
|
ndv.getters.credentialInput().find('input').should('have.value', 'Credential C1');
|
|
ndv.actions.close();
|
|
|
|
workflowPage.actions.openShareModal();
|
|
workflowSharingModal.actions.addUser(INSTANCE_MEMBERS[1].email);
|
|
workflowSharingModal.actions.save();
|
|
workflowPage.actions.saveWorkflowOnButtonClick();
|
|
|
|
cy.visit(workflowsPage.url);
|
|
workflowsPage.getters.createWorkflowButton().click();
|
|
cy.createFixtureWorkflow('Test_workflow_1.json', 'Workflow W2');
|
|
workflowPage.actions.saveWorkflowOnButtonClick();
|
|
cy.url().then((url) => {
|
|
workflowW2Url = url;
|
|
});
|
|
});
|
|
|
|
it('should create C2, share C2 with U1 and U2, as U3', () => {
|
|
cy.signin(INSTANCE_MEMBERS[1]);
|
|
|
|
cy.visit(credentialsPage.url);
|
|
credentialsPage.getters.emptyListCreateCredentialButton().click();
|
|
credentialsModal.getters.newCredentialTypeOption('Airtable Personal Access Token API').click();
|
|
credentialsModal.getters.newCredentialTypeButton().click();
|
|
credentialsModal.getters.connectionParameter('Access Token').type('1234567890');
|
|
credentialsModal.actions.setName('Credential C2');
|
|
credentialsModal.actions.changeTab('Sharing');
|
|
credentialsModal.actions.addUser(INSTANCE_OWNER.email);
|
|
credentialsModal.actions.addUser(INSTANCE_MEMBERS[0].email);
|
|
credentialsModal.actions.save();
|
|
credentialsModal.actions.close();
|
|
});
|
|
|
|
it('should open W1, add node using C2 as U3', () => {
|
|
cy.signin(INSTANCE_MEMBERS[1]);
|
|
|
|
cy.visit(workflowsPage.url);
|
|
workflowsPage.getters.workflowCards().should('have.length', 1);
|
|
workflowsPage.getters.workflowCard('Workflow W1').click();
|
|
workflowPage.actions.addNodeToCanvas('Airtable', true, true);
|
|
ndv.getters.credentialInput().find('input').should('have.value', 'Credential C2');
|
|
ndv.actions.close();
|
|
workflowPage.actions.saveWorkflowOnButtonClick();
|
|
|
|
workflowPage.actions.openNode('Notion');
|
|
ndv.getters.credentialInput().should('have.value', 'Credential C1').should('be.disabled');
|
|
ndv.actions.close();
|
|
});
|
|
|
|
it('should open W1, add node using C2 as U2', () => {
|
|
cy.signin(INSTANCE_MEMBERS[0]);
|
|
|
|
cy.visit(workflowsPage.url);
|
|
workflowsPage.getters.workflowCards().should('have.length', 2);
|
|
workflowsPage.getters.workflowCard('Workflow W1').click();
|
|
workflowPage.actions.addNodeToCanvas('Airtable', true, true);
|
|
ndv.getters.credentialInput().find('input').should('have.value', 'Credential C2');
|
|
ndv.actions.close();
|
|
workflowPage.actions.saveWorkflowOnButtonClick();
|
|
|
|
workflowPage.actions.openNode('Notion');
|
|
ndv.getters
|
|
.credentialInput()
|
|
.find('input')
|
|
.should('have.value', 'Credential C1')
|
|
.should('be.enabled');
|
|
ndv.actions.close();
|
|
});
|
|
|
|
it('should not have access to W2, as U3', () => {
|
|
cy.signin(INSTANCE_MEMBERS[1]);
|
|
|
|
cy.visit(workflowW2Url);
|
|
cy.waitForLoad();
|
|
cy.wait(1000);
|
|
cy.get('.el-notification').contains('Could not find workflow').should('be.visible');
|
|
});
|
|
|
|
it('should have access to W1, W2, as U1', () => {
|
|
cy.signin(INSTANCE_OWNER);
|
|
|
|
cy.visit(workflowsPage.url);
|
|
workflowsPage.getters.workflowCards().should('have.length', 2);
|
|
workflowsPage.getters.workflowCard('Workflow W1').click();
|
|
workflowPage.actions.openNode('Notion');
|
|
ndv.getters.credentialInput().should('have.value', 'Credential C1').should('be.disabled');
|
|
ndv.actions.close();
|
|
|
|
cy.waitForLoad();
|
|
cy.visit(workflowsPage.url);
|
|
workflowsPage.getters.workflowCard('Workflow W2').click('top');
|
|
workflowPage.actions.executeWorkflow();
|
|
});
|
|
|
|
it('should automatically test C2 when opened by U2 sharee', () => {
|
|
cy.signin(INSTANCE_MEMBERS[0]);
|
|
|
|
cy.visit(credentialsPage.url);
|
|
credentialsPage.getters.credentialCard('Credential C2').click();
|
|
credentialsModal.getters.testSuccessTag().should('be.visible');
|
|
});
|
|
|
|
it('should work for admin role on credentials created by others (also can share it with themselves)', () => {
|
|
cy.signin(INSTANCE_MEMBERS[0]);
|
|
|
|
cy.visit(credentialsPage.url);
|
|
credentialsPage.getters.createCredentialButton().click();
|
|
credentialsModal.getters.newCredentialTypeOption('Notion API').click();
|
|
credentialsModal.getters.newCredentialTypeButton().click({ force: true });
|
|
credentialsModal.getters.connectionParameter('Internal Integration Secret').type('1234567890');
|
|
credentialsModal.actions.setName('Credential C3');
|
|
credentialsModal.actions.save();
|
|
credentialsModal.actions.close();
|
|
|
|
cy.signout();
|
|
cy.signin(INSTANCE_ADMIN);
|
|
cy.visit(credentialsPage.url);
|
|
credentialsPage.getters.credentialCard('Credential C3').click();
|
|
credentialsModal.getters.testSuccessTag().should('be.visible');
|
|
cy.get('input').should('not.have.length');
|
|
credentialsModal.actions.changeTab('Sharing');
|
|
cy.contains(
|
|
'Sharing a credential allows people to use it in their workflows. They cannot access credential details.',
|
|
).should('be.visible');
|
|
|
|
credentialsModal.getters.usersSelect().click();
|
|
cy.getByTestId('project-sharing-info')
|
|
.filter(':visible')
|
|
.should('have.length', 3)
|
|
.contains(INSTANCE_ADMIN.email)
|
|
.should('have.length', 1);
|
|
getVisibleSelect().contains(INSTANCE_OWNER.email.toLowerCase()).click();
|
|
|
|
credentialsModal.actions.addUser(INSTANCE_MEMBERS[1].email);
|
|
credentialsModal.actions.addUser(INSTANCE_ADMIN.email);
|
|
credentialsModal.actions.saveSharing();
|
|
credentialsModal.actions.close();
|
|
});
|
|
});
|