X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9876549a482c2c330143f5c9eebc8ab47cb8fa1d..a23cfd6defb8dab9ac9afe13034f7b667f07acca:/cypress/integration/project.spec.js diff --git a/cypress/integration/project.spec.js b/cypress/integration/project.spec.js index c4983e3e16..d4d32117c9 100644 --- a/cypress/integration/project.spec.js +++ b/cypress/integration/project.spec.js @@ -85,6 +85,39 @@ describe('Project tests', function() { // 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'); + }); + }); }); it('creates new project on home project and then a subproject inside it', function() { @@ -278,4 +311,97 @@ describe('Project tests', function() { }); }); }); + + 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 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(adminProject.name).rightclick(); + + cy.get('[data-cy=context-menu]').contains('Freeze').should('not.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.wait(1000); + + cy.get('main').contains(adminProject.name).rightclick(); + + 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'); + }); + }); + }); }); +