X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/58db72fee358d5987139a1b8526c0ca873e07dbf..4b75b09d1c75d6796e75efc55e7b06917834b63e:/cypress/integration/project.spec.js diff --git a/cypress/integration/project.spec.js b/cypress/integration/project.spec.js index b3d6bbed..0017e416 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 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'); @@ -73,7 +74,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) => { @@ -199,7 +200,9 @@ describe('Project tests', function() { cy.createGroup(activeUser.token, { name: `Test root project ${Math.floor(Math.random() * 999999)}`, group_class: 'project', - }).as('testProject1'); + }).as('testProject1').then((testProject1) => { + cy.shareWith(adminUser.token, activeUser.user.uuid, testProject1.uuid, 'can_write'); + }); cy.getAll('@testProject1').then(function([testProject1]) { cy.loginAs(activeUser); @@ -213,4 +216,48 @@ describe('Project tests', function() { 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('Advanced').click(); + + cy.get('[role=tablist]').contains('METADATA').click(); + + cy.get('td').contains(uuid).should('exist'); + + cy.get('td').contains(activeUser.user.uuid).should('exist'); + }); + }); + }); }); \ No newline at end of file