X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c797ff39572137b5552f76f29d39b94c7554b1a0..65ad44ac98393e9e7a7f3da8732b536fc051cf51:/cypress/integration/project.spec.js diff --git a/cypress/integration/project.spec.js b/cypress/integration/project.spec.js index f369330e..520ad26a 100644 --- a/cypress/integration/project.spec.js +++ b/cypress/integration/project.spec.js @@ -200,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); @@ -216,29 +218,142 @@ describe('Project tests', function() { }); it('opens advanced popup for project with username', () => { - const projectName = `Test root project ${Math.floor(Math.random() * 999999)}`; - - cy.createProject({ - owningUser: adminUser, - targetUser: activeUser, - projectName, - canWrite: true, - addToFavorites: true - }).as('mySharedProject'); - - cy.getAll('@mySharedProject') - .then(function ([mySharedProject]) { - cy.loginAs(activeUser); + 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'); + }); + }); + }); + + describe('Frozen projects', () => { + beforeEach(() => { + cy.createGroup(activeUser.token, { + name: `Main project ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + }).as('mainProject'); + + cy.createGroup(adminUser.token, { + name: `Admin project ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + }).as('adminProject').then((mainProject) => { + cy.shareWith(adminUser.token, activeUser.user.uuid, mainProject.uuid, 'can_write'); + }); + + cy.get('@mainProject').then((mainProject) => { + cy.createGroup(adminUser.token, { + name : `Sub project ${Math.floor(Math.random() * 999999)}`, + group_class: 'project', + owner_uuid: mainProject.uuid, + }).as('subProject'); + + cy.createCollection(adminUser.token, { + name: `Main collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: mainProject.uuid, + manifest_text: "./subdir 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo\n. 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n" + }).as('mainCollection'); + }); + }); + + it('should be able to froze own project', () => { + cy.getAll('@mainProject').then(([mainProject]) => { + cy.loginAs(activeUser); + + cy.get('[data-cy=project-panel]').contains(mainProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').click(); + + cy.get('[data-cy=project-panel]').contains(mainProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').should('not.exist'); + }); + }); + + it('should not be able to modify items within the frozen project', () => { + cy.getAll('@mainProject', '@mainCollection').then(([mainProject, mainCollection]) => { + cy.loginAs(activeUser); + + cy.get('[data-cy=project-panel]').contains(mainProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').click(); + + cy.get('[data-cy=project-panel]').contains(mainProject.name).click(); + + cy.get('[data-cy=project-panel]').contains(mainCollection.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Move to trash').should('not.exist'); + }); + }); + + it('should not be able to froze not owned project', () => { + cy.getAll('@adminProject').then(([adminProject]) => { + cy.loginAs(activeUser); + cy.get('[data-cy=side-panel-tree]').contains('Shared with me').click(); - cy.get('main').contains(projectName).rightclick(); + cy.get('main').contains(adminProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').click(); + + cy.get('main').contains(adminProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').should('exist'); + }); + }); + + it('should be able to unfroze project if user is an admin', () => { + cy.getAll('@adminProject').then(([adminProject]) => { + cy.loginAs(adminUser); + + cy.get('main').contains(adminProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').click(); - cy.get('[data-cy=context-menu]').contains('Advanced').click(); + cy.wait(1000); - cy.get('[role=tablist]').contains('METADATA').click(); + cy.get('main').contains(adminProject.name).rightclick(); - cy.get('td').contains('User: Active User').should('exist'); + cy.get('[data-cy=context-menu]').contains('Unfreeze').click(); + + cy.get('main').contains(adminProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').should('exist'); + }); }); }); }); \ No newline at end of file