X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ecdb95a4396dd239e762c4aef55675a69f0a04cc..8c34b0f275ac1ecf18257e6de7687d01d620e1c1:/cypress/integration/project.spec.js diff --git a/cypress/integration/project.spec.js b/cypress/integration/project.spec.js index 76a6d0ff..ea795e6c 100644 --- a/cypress/integration/project.spec.js +++ b/cypress/integration/project.spec.js @@ -28,13 +28,13 @@ describe('Project tests', function() { cy.clearLocalStorage(); }); - it('adds creates a new project with properties', function() { + it('creates a new project with multiple properties', function() { const projName = `Test project (${Math.floor(999999 * Math.random())})`; cy.loginAs(activeUser); cy.get('[data-cy=side-panel-button]').click(); cy.get('[data-cy=side-panel-new-project]').click(); cy.get('[data-cy=form-dialog]') - .should('contain', 'New project') + .should('contain', 'New Project') .within(() => { cy.get('[data-cy=name-field]').within(() => { cy.get('input').type(projName); @@ -42,6 +42,7 @@ describe('Project tests', function() { }); // Key: Color (IDTAGCOLORS) - Value: Magenta (IDVALCOLORS3) + cy.get('[data-cy=form-dialog]').should('not.contain', 'Color: Magenta'); cy.get('[data-cy=resource-properties-form]').within(() => { cy.get('[data-cy=property-field-key]').within(() => { cy.get('input').type('Color'); @@ -50,9 +51,26 @@ describe('Project tests', function() { cy.get('input').type('Magenta'); }); cy.root().submit(); + cy.get('[data-cy=property-field-value]').within(() => { + cy.get('input').type('Pink'); + }); + cy.root().submit(); + cy.get('[data-cy=property-field-value]').within(() => { + cy.get('input').type('Yellow'); + }); + cy.root().submit(); }); // Confirm proper vocabulary labels are displayed on the UI. cy.get('[data-cy=form-dialog]').should('contain', 'Color: Magenta'); + cy.get('[data-cy=form-dialog]').should('contain', 'Color: Pink'); + cy.get('[data-cy=form-dialog]').should('contain', 'Color: Yellow'); + + cy.get('[data-cy=resource-properties-form]').within(() => { + cy.get('[data-cy=property-field-key]').within(() => { + cy.get('input').focus(); + }); + cy.get('[data-cy=property-field-key]').should('not.contain', 'Color'); + }); // Create project and confirm the properties' real values. cy.get('[data-cy=form-submit-btn]').click(); @@ -64,7 +82,41 @@ describe('Project tests', function() { .then(function() { expect(this.projects).to.have.lengthOf(1); expect(this.projects[0].properties).to.deep.equal( - {IDTAGCOLORS: 'IDVALCOLORS3'}); + // Pink is not in the test vocab + {IDTAGCOLORS: ['IDVALCOLORS3', 'Pink', 'IDVALCOLORS1']}); + }); + + // Open project edit via breadcrumbs + cy.get('[data-cy=breadcrumbs]').contains(projName).rightclick(); + cy.get('[data-cy=context-menu]').contains('Edit').click(); + cy.get('[data-cy=form-dialog]').within(() => { + cy.get('[data-cy=resource-properties-list]').within(() => { + cy.get('div[role=button]').contains('Color: Magenta'); + cy.get('div[role=button]').contains('Color: Pink'); + cy.get('div[role=button]').contains('Color: Yellow'); + }); + }); + // Add another property + cy.get('[data-cy=resource-properties-form]').within(() => { + cy.get('[data-cy=property-field-key]').within(() => { + cy.get('input').type('Animal'); + }); + cy.get('[data-cy=property-field-value]').within(() => { + cy.get('input').type('Dog'); + }); + cy.root().submit(); + }); + cy.get('[data-cy=form-submit-btn]').click(); + // Reopen edit via breadcrumbs and verify properties + cy.get('[data-cy=breadcrumbs]').contains(projName).rightclick(); + cy.get('[data-cy=context-menu]').contains('Edit').click(); + cy.get('[data-cy=form-dialog]').within(() => { + cy.get('[data-cy=resource-properties-list]').within(() => { + cy.get('div[role=button]').contains('Color: Magenta'); + cy.get('div[role=button]').contains('Color: Pink'); + cy.get('div[role=button]').contains('Color: Yellow'); + cy.get('div[role=button]').contains('Animal: Dog'); + }); }); }); @@ -73,7 +125,7 @@ describe('Project tests', function() { cy.get('[data-cy=side-panel-button]').click(); cy.get('[data-cy=side-panel-new-project]').click(); cy.get('[data-cy=form-dialog]') - .should('contain', 'New project') + .should('contain', 'New Project') .within(() => { cy.get('[data-cy=parent-field]').within(() => { cy.get('input').invoke('val').then((val) => { @@ -105,4 +157,184 @@ describe('Project tests', function() { cy.get('[data-cy=breadcrumb-first]').should('contain', 'Projects'); cy.get('[data-cy=breadcrumb-last]').should('contain', subProjName); }); -}) \ No newline at end of file + + it('navigates to the parent project after trashing the one being displayed', function() { + cy.createGroup(activeUser.token, { + name: `Test root project ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + }).as('testRootProject').then(function() { + cy.createGroup(activeUser.token, { + name : `Test subproject ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + owner_uuid: this.testRootProject.uuid, + }).as('testSubProject'); + }); + cy.getAll('@testRootProject', '@testSubProject').then(function([testRootProject, testSubProject]) { + cy.loginAs(activeUser); + + // Go to subproject and trash it. + cy.goToPath(`/projects/${testSubProject.uuid}`); + cy.get('[data-cy=side-panel-tree]').should('contain', testSubProject.name); + cy.get('[data-cy=breadcrumb-last]') + .should('contain', testSubProject.name) + .rightclick(); + cy.get('[data-cy=context-menu]').contains('Move to trash').click(); + + // Confirm that the parent project should be displayed. + cy.get('[data-cy=breadcrumb-last]').should('contain', testRootProject.name); + cy.url().should('contain', `/projects/${testRootProject.uuid}`); + cy.get('[data-cy=side-panel-tree]').should('not.contain', testSubProject.name); + + // Checks for bugfix #17637. + cy.get('[data-cy=not-found-content]').should('not.exist'); + cy.get('[data-cy=not-found-page]').should('not.exist'); + }); + }); + + it('navigates to the root project after trashing the parent of the one being displayed', function() { + cy.createGroup(activeUser.token, { + name: `Test root project ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + }).as('testRootProject').then(function() { + cy.createGroup(activeUser.token, { + name : `Test subproject ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + owner_uuid: this.testRootProject.uuid, + }).as('testSubProject').then(function() { + cy.createGroup(activeUser.token, { + name : `Test sub subproject ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + owner_uuid: this.testSubProject.uuid, + }).as('testSubSubProject'); + }); + }); + cy.getAll('@testRootProject', '@testSubProject', '@testSubSubProject').then(function([testRootProject, testSubProject, testSubSubProject]) { + cy.loginAs(activeUser); + + // Go to innermost project and trash its parent. + cy.goToPath(`/projects/${testSubSubProject.uuid}`); + cy.get('[data-cy=side-panel-tree]').should('contain', testSubSubProject.name); + cy.get('[data-cy=breadcrumb-last]').should('contain', testSubSubProject.name); + cy.get('[data-cy=side-panel-tree]') + .contains(testSubProject.name) + .rightclick(); + cy.get('[data-cy=context-menu]').contains('Move to trash').click(); + + // Confirm that the trashed project's parent should be displayed. + cy.get('[data-cy=breadcrumb-last]').should('contain', testRootProject.name); + cy.url().should('contain', `/projects/${testRootProject.uuid}`); + cy.get('[data-cy=side-panel-tree]').should('not.contain', testSubProject.name); + cy.get('[data-cy=side-panel-tree]').should('not.contain', testSubSubProject.name); + + // Checks for bugfix #17637. + cy.get('[data-cy=not-found-content]').should('not.exist'); + cy.get('[data-cy=not-found-page]').should('not.exist'); + }); + }); + + it('shows details panel when clicking on the info icon', () => { + cy.createGroup(activeUser.token, { + name: `Test root project ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + }).as('testRootProject').then(function(testRootProject) { + cy.loginAs(activeUser); + + cy.get('[data-cy=side-panel-tree]').contains(testRootProject.name).click(); + + cy.get('[data-cy=additional-info-icon]').click(); + + cy.contains(testRootProject.uuid).should('exist'); + }); + }); + + it('clears search input when changing project', () => { + cy.createGroup(activeUser.token, { + name: `Test root project ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + }).as('testProject1').then((testProject1) => { + cy.shareWith(adminUser.token, activeUser.user.uuid, testProject1.uuid, 'can_write'); + }); + + cy.getAll('@testProject1').then(function([testProject1]) { + cy.loginAs(activeUser); + + cy.get('[data-cy=side-panel-tree]').contains(testProject1.name).click(); + + cy.get('[data-cy=search-input] input').type('test123'); + + cy.get('[data-cy=side-panel-tree]').contains('Projects').click(); + + cy.get('[data-cy=search-input] input').should('not.have.value', 'test123'); + }); + }); + + it('opens advanced popup for project with username', () => { + const projectName = `Test project ${Math.floor(Math.random() * 999999)}`; + + cy.createGroup(adminUser.token, { + name: projectName, + group_class: 'project', + }).as('mainProject') + + cy.getAll('@mainProject') + .then(function ([mainProject]) { + cy.loginAs(adminUser); + + cy.get('[data-cy=side-panel-tree]').contains('Groups').click(); + + cy.get('[data-cy=uuid]').eq(0).invoke('text').then(uuid => { + cy.createLink(adminUser.token, { + name: 'can_write', + link_class: 'permission', + head_uuid: mainProject.uuid, + tail_uuid: uuid + }); + + cy.createLink(adminUser.token, { + name: 'can_write', + link_class: 'permission', + head_uuid: mainProject.uuid, + tail_uuid: activeUser.user.uuid + }); + + cy.get('[data-cy=side-panel-tree]').contains('Projects').click(); + + cy.get('main').contains(projectName).rightclick(); + + cy.get('[data-cy=context-menu]').contains('API Details').click(); + + cy.get('[role=tablist]').contains('METADATA').click(); + + cy.get('td').contains(uuid).should('exist'); + + cy.get('td').contains(activeUser.user.uuid).should('exist'); + }); + }); + }); + + it('copies project URL to clipboard', () => { + const projectName = `Test project (${Math.floor(999999 * Math.random())})`; + + cy.loginAs(activeUser); + cy.get('[data-cy=side-panel-button]').click(); + cy.get('[data-cy=side-panel-new-project]').click(); + cy.get('[data-cy=form-dialog]') + .should('contain', 'New Project') + .within(() => { + cy.get('[data-cy=name-field]').within(() => { + cy.get('input').type(projectName); + }); + cy.get('[data-cy=form-submit-btn]').click(); + }); + + cy.get('[data-cy=side-panel-tree]').contains('Projects').click(); + cy.get('[data-cy=project-panel]').contains(projectName).rightclick(); + cy.get('[data-cy=context-menu]').contains('Copy to clipboard').click(); + cy.window().then((win) => ( + win.navigator.clipboard.readText().then((text) => { + expect(text).to.match(/https\:\/\/localhost\:[0-9]+\/projects\/[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{15}/,); + }) + )); + + }); +});