-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
1 parent
b1f977e
commit 596c472
Showing
292 changed files
with
14,079 additions
and
3,939 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export const getHomeButton = () => cy.getByTestId('project-home-menu-item'); | ||
export const getMenuItems = () => cy.getByTestId('project-menu-item'); | ||
export const getAddProjectButton = () => cy.getByTestId('add-project-menu-item'); | ||
export const getProjectTabs = () => cy.getByTestId('project-tabs').find('a'); | ||
export const getProjectTabWorkflows = () => getProjectTabs().filter('a[href$="/workflows"]'); | ||
export const getProjectTabCredentials = () => getProjectTabs().filter('a[href$="/credentials"]'); | ||
export const getProjectTabSettings = () => getProjectTabs().filter('a[href$="/settings"]'); | ||
export const getProjectSettingsSaveButton = () => cy.getByTestId('project-settings-save-button'); | ||
export const getProjectSettingsCancelButton = () => | ||
cy.getByTestId('project-settings-cancel-button'); | ||
export const getProjectSettingsDeleteButton = () => | ||
cy.getByTestId('project-settings-delete-button'); | ||
export const getProjectMembersSelect = () => cy.getByTestId('project-members-select'); | ||
|
||
export const addProjectMember = (email: string) => { | ||
getProjectMembersSelect().click(); | ||
getProjectMembersSelect().get('.el-select-dropdown__item').contains(email.toLowerCase()).click(); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
import { INSTANCE_ADMIN, INSTANCE_MEMBERS } from '../constants'; | ||
import { WorkflowsPage, WorkflowPage, CredentialsModal, CredentialsPage } from '../pages'; | ||
import * as projects from '../composables/projects'; | ||
|
||
const workflowsPage = new WorkflowsPage(); | ||
const workflowPage = new WorkflowPage(); | ||
const credentialsPage = new CredentialsPage(); | ||
const credentialsModal = new CredentialsModal(); | ||
|
||
describe('Projects', () => { | ||
beforeEach(() => { | ||
cy.resetDatabase(); | ||
cy.enableFeature('advancedPermissions'); | ||
cy.enableFeature('projectRole:admin'); | ||
cy.enableFeature('projectRole:editor'); | ||
cy.changeQuota('maxTeamProjects', -1); | ||
}); | ||
|
||
it('should handle workflows and credentials', () => { | ||
cy.signin(INSTANCE_ADMIN); | ||
cy.visit(workflowsPage.url); | ||
workflowsPage.getters.workflowCards().should('not.have.length'); | ||
|
||
workflowsPage.getters.newWorkflowButtonCard().click(); | ||
|
||
cy.intercept('POST', '/rest/workflows').as('workflowSave'); | ||
workflowPage.actions.saveWorkflowOnButtonClick(); | ||
|
||
cy.wait('@workflowSave').then((interception) => { | ||
expect(interception.request.body).not.to.have.property('projectId'); | ||
}); | ||
|
||
projects.getHomeButton().click(); | ||
projects.getProjectTabs().should('have.length', 2); | ||
|
||
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('My awesome Notion account'); | ||
|
||
cy.intercept('POST', '/rest/credentials').as('credentialSave'); | ||
credentialsModal.actions.save(); | ||
cy.wait('@credentialSave').then((interception) => { | ||
expect(interception.request.body).not.to.have.property('projectId'); | ||
}); | ||
|
||
credentialsModal.actions.close(); | ||
credentialsPage.getters.credentialCards().should('have.length', 1); | ||
|
||
projects.getProjectTabWorkflows().click(); | ||
workflowsPage.getters.workflowCards().should('have.length', 1); | ||
|
||
projects.getMenuItems().should('not.have.length'); | ||
|
||
cy.intercept('POST', '/rest/projects').as('projectCreate'); | ||
projects.getAddProjectButton().click(); | ||
cy.wait('@projectCreate'); | ||
projects.getMenuItems().should('have.length', 1); | ||
projects.getProjectTabs().should('have.length', 3); | ||
|
||
cy.get('input[name="name"]').type('Development'); | ||
projects.addProjectMember(INSTANCE_MEMBERS[0].email); | ||
|
||
cy.intercept('PATCH', '/rest/projects/*').as('projectSettingsSave'); | ||
projects.getProjectSettingsSaveButton().click(); | ||
cy.wait('@projectSettingsSave').then((interception) => { | ||
expect(interception.request.body).to.have.property('name').and.to.equal('Development'); | ||
expect(interception.request.body).to.have.property('relations').to.have.lengthOf(2); | ||
}); | ||
|
||
projects.getMenuItems().first().click(); | ||
workflowsPage.getters.workflowCards().should('not.have.length'); | ||
projects.getProjectTabs().should('have.length', 3); | ||
|
||
workflowsPage.getters.newWorkflowButtonCard().click(); | ||
|
||
cy.intercept('POST', '/rest/workflows').as('workflowSave'); | ||
workflowPage.actions.saveWorkflowOnButtonClick(); | ||
|
||
cy.wait('@workflowSave').then((interception) => { | ||
expect(interception.request.body).to.have.property('projectId'); | ||
}); | ||
|
||
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('My awesome Notion account'); | ||
|
||
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(); | ||
|
||
projects.getAddProjectButton().click(); | ||
projects.getMenuItems().should('have.length', 2); | ||
|
||
let projectId: string; | ||
projects.getMenuItems().first().click(); | ||
cy.intercept('GET', '/rest/credentials*').as('credentialsList'); | ||
projects.getProjectTabCredentials().click(); | ||
cy.wait('@credentialsList').then((interception) => { | ||
const url = new URL(interception.request.url); | ||
const queryParams = new URLSearchParams(url.search); | ||
const filter = queryParams.get('filter'); | ||
expect(filter).to.be.a('string').and.to.contain('projectId'); | ||
|
||
if (filter) { | ||
projectId = JSON.parse(filter).projectId; | ||
} | ||
}); | ||
|
||
projects.getMenuItems().last().click(); | ||
cy.intercept('GET', '/rest/credentials*').as('credentialsList'); | ||
projects.getProjectTabCredentials().click(); | ||
cy.wait('@credentialsList').then((interception) => { | ||
const url = new URL(interception.request.url); | ||
const queryParams = new URLSearchParams(url.search); | ||
const filter = queryParams.get('filter'); | ||
expect(filter).to.be.a('string').and.to.contain('projectId'); | ||
|
||
if (filter) { | ||
expect(JSON.parse(filter).projectId).not.to.equal(projectId); | ||
} | ||
}); | ||
|
||
projects.getHomeButton().click(); | ||
workflowsPage.getters.workflowCards().should('have.length', 2); | ||
|
||
cy.intercept('GET', '/rest/credentials*').as('credentialsList'); | ||
projects.getProjectTabCredentials().click(); | ||
cy.wait('@credentialsList').then((interception) => { | ||
expect(interception.request.url).not.to.contain('filter'); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.