From 4710b7919dcdc3435bab7bd7e706169175991cf5 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Mon, 1 May 2023 14:38:00 -0400 Subject: [PATCH] 20031: Add tests for copy/move files to existing/new/separate collections Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- cypress/integration/collection.spec.js | 179 ++++++++++++++++++++++++- 1 file changed, 178 insertions(+), 1 deletion(-) diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js index 977a28c2..a49c18db 100644 --- a/cypress/integration/collection.spec.js +++ b/cypress/integration/collection.spec.js @@ -905,7 +905,7 @@ describe('Collection panel tests', function () { }); }); - it('creates collection from selected files of another collection', () => { + it('copies selected files into new collection', () => { cy.createCollection(adminUser.token, { name: `Test Collection ${Math.floor(Math.random() * 999999)}`, owner_uuid: activeUser.user.uuid, @@ -934,6 +934,183 @@ describe('Collection panel tests', function () { }); }); + it('copies selected files into existing collection', () => { + cy.createCollection(adminUser.token, { + name: `Test Collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + preserve_version: true, + manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo 0:3:bar\n" + }).as('sourceCollection') + + cy.createCollection(adminUser.token, { + name: `Destination Collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + preserve_version: true, + manifest_text: "" + }).as('destinationCollection'); + + cy.getAll('@sourceCollection', '@destinationCollection').then(function ([sourceCollection, destinationCollection]) { + // Visit collection, check basic information + cy.loginAs(activeUser) + cy.goToPath(`/collections/${sourceCollection.uuid}`); + + cy.get('[data-cy=collection-files-panel]').within(() => { + cy.get('input[type=checkbox]').first().click(); + }); + + cy.get('[data-cy=collection-files-panel-options-btn]').click(); + cy.get('[data-cy=context-menu]').contains('Copy selected into existing collection').click(); + + cy.get('[data-cy=form-dialog]').contains(destinationCollection.name).click(); + + cy.get('[data-cy=form-submit-btn]').click(); + cy.wait(2000); + + cy.goToPath(`/collections/${destinationCollection.uuid}`); + + cy.get('main').contains(destinationCollection.name).should('exist'); + cy.get('[data-cy=collection-files-panel]') + .and('contain', 'bar'); + }); + }); + + it('copies selected files into separate collections', () => { + cy.createCollection(adminUser.token, { + name: `Test Collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + preserve_version: true, + manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo 0:3:bar\n" + }).as('sourceCollection') + + cy.getAll('@sourceCollection').then(function ([sourceCollection]) { + // Visit collection, check basic information + cy.loginAs(activeUser) + cy.goToPath(`/collections/${sourceCollection.uuid}`); + + cy.get('[data-cy=collection-files-panel]').within(() => { + cy.get('input[type=checkbox]').first().click(); + }); + + cy.get('[data-cy=collection-files-panel-options-btn]').click(); + cy.get('[data-cy=context-menu]').contains('Copy selected into separate collections').click(); + + cy.get('[data-cy=form-dialog]').contains('Projects').click(); + cy.get('[data-cy=form-submit-btn]').click(); + + cy.waitForDom().get('.layout-pane-primary', { timeout: 12000 }).contains('Projects').click(); + + // cy.goToPath(`/collections/${destinationCollection.uuid}`); + + cy.get('main').contains(`File copied from collection ${sourceCollection.name}/bar`).click(); + cy.get('[data-cy=collection-files-panel]') + .and('contain', 'bar'); + }); + }); + + it('moves selected files into new collection', () => { + cy.createCollection(adminUser.token, { + name: `Test Collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + preserve_version: true, + manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo 0:3:bar\n" + }) + .as('collection').then(function () { + // Visit collection, check basic information + cy.loginAs(activeUser) + cy.goToPath(`/collections/${this.collection.uuid}`); + + cy.get('[data-cy=collection-files-panel]').within(() => { + cy.get('input[type=checkbox]').first().click(); + }); + + cy.get('[data-cy=collection-files-panel-options-btn]').click(); + cy.get('[data-cy=context-menu]').contains('Move selected into new collection').click(); + + cy.get('[data-cy=form-dialog]').contains('Projects').click(); + + cy.get('[data-cy=form-submit-btn]').click(); + + cy.waitForDom().get('.layout-pane-primary', { timeout: 12000 }).contains('Projects').click(); + + cy.get('main').contains(`Files moved from: ${this.collection.name}`).click(); + cy.get('[data-cy=collection-files-panel]') + .and('contain', 'bar'); + }); + }); + + it('moves selected files into existing collection', () => { + cy.createCollection(adminUser.token, { + name: `Test Collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + preserve_version: true, + manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo 0:3:bar\n" + }).as('sourceCollection') + + cy.createCollection(adminUser.token, { + name: `Destination Collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + preserve_version: true, + manifest_text: "" + }).as('destinationCollection'); + + cy.getAll('@sourceCollection', '@destinationCollection').then(function ([sourceCollection, destinationCollection]) { + // Visit collection, check basic information + cy.loginAs(activeUser) + cy.goToPath(`/collections/${sourceCollection.uuid}`); + + cy.get('[data-cy=collection-files-panel]').within(() => { + cy.get('input[type=checkbox]').first().click(); + }); + + cy.get('[data-cy=collection-files-panel-options-btn]').click(); + cy.get('[data-cy=context-menu]').contains('Move selected into existing collection').click(); + + cy.get('[data-cy=form-dialog]').contains(destinationCollection.name).click(); + + cy.get('[data-cy=form-submit-btn]').click(); + cy.wait(2000); + + cy.goToPath(`/collections/${destinationCollection.uuid}`); + + cy.get('main').contains(destinationCollection.name).should('exist'); + cy.get('[data-cy=collection-files-panel]') + .and('contain', 'bar'); + }); + }); + + it('moves selected files into separate collections', () => { + cy.createCollection(adminUser.token, { + name: `Test Collection ${Math.floor(Math.random() * 999999)}`, + owner_uuid: activeUser.user.uuid, + preserve_version: true, + manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo 0:3:bar\n" + }).as('sourceCollection') + + cy.getAll('@sourceCollection').then(function ([sourceCollection]) { + // Visit collection, check basic information + cy.loginAs(activeUser) + cy.goToPath(`/collections/${sourceCollection.uuid}`); + + cy.get('[data-cy=collection-files-panel]').within(() => { + cy.get('input[type=checkbox]').first().click(); + }); + + cy.get('[data-cy=collection-files-panel-options-btn]').click(); + cy.get('[data-cy=context-menu]').contains('Move selected into separate collections').click(); + + cy.get('[data-cy=form-dialog]').contains('Projects').click(); + cy.get('[data-cy=form-submit-btn]').click(); + + cy.waitForDom().get('.layout-pane-primary', { timeout: 12000 }).contains('Projects').click(); + + // cy.goToPath(`/collections/${destinationCollection.uuid}`); + + cy.get('main').contains(`File moved from collection ${sourceCollection.name}/bar`).click(); + cy.get('[data-cy=collection-files-panel]') + .and('contain', 'bar'); + }); + }); + it('creates new collection with properties on home project', function () { cy.loginAs(activeUser); cy.goToPath(`/projects/${activeUser.user.uuid}`); -- 2.30.2