18584: Adds Cypress test for collection copy action.
[arvados-workbench2.git] / cypress / integration / collection.spec.js
index e46be0c366717da85f09f7e60d121393e91cfd65..0ff26706375efe1b2d18e94f4745cda11775ddb6 100644 (file)
@@ -595,6 +595,39 @@ describe('Collection panel tests', function () {
         })
     });
 
+    it('makes a copy of an existing collection', function() {
+        const collName = `Test Collection ${Math.floor(Math.random() * 999999)}`;
+        const copyName = `Copy of: ${collName}`;
+
+        cy.createCollection(adminUser.token, {
+            name: collName,
+            owner_uuid: activeUser.user.uuid,
+            manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:some-file\n",
+        }).as('collection').then(function () {
+            cy.loginAs(activeUser)
+            cy.goToPath(`/collections/${this.collection.uuid}`);
+            cy.get('[data-cy=collection-files-panel]')
+                .should('contain', 'some-file');
+            cy.get('[data-cy=collection-panel-options-btn]').click();
+            cy.get('[data-cy=context-menu]').contains('Make a copy').click();
+            cy.get('[data-cy=form-dialog]')
+                .should('contain', 'Make a copy')
+                .within(() => {
+                    cy.get('[data-cy=projects-tree-home-tree-picker]')
+                        .contains('Projects')
+                        .click();
+                    cy.get('[data-cy=form-submit-btn]').click();
+                });
+            cy.get('[data-cy=snackbar]')
+                .contains('Collection has been copied.')
+            cy.get('[data-cy=snackbar-goto-action]').click();
+            cy.get('[data-cy=project-panel]')
+                .contains(copyName).click();
+            cy.get('[data-cy=collection-files-panel]')
+                .should('contain', 'some-file');
+        });
+    });
+
     it('uses the collection version browser to view a previous version', function () {
         const colName = `Test Collection ${Math.floor(Math.random() * 999999)}`;
 
@@ -795,14 +828,16 @@ describe('Collection panel tests', function () {
     });
 
     describe('file upload', () => {
-        it('allows to cancel running upload', () => {
+        beforeEach(() => {
             cy.createCollection(adminUser.token, {
                 name: `Test collection ${Math.floor(Math.random() * 999999)}`,
                 owner_uuid: activeUser.user.uuid,
                 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
             })
                 .as('testCollection1');
+        });
 
+        it('allows to cancel running upload', () => {
             cy.getAll('@testCollection1')
                 .then(function([testCollection1]) {
                     cy.loginAs(activeUser);
@@ -815,12 +850,8 @@ describe('Collection panel tests', function () {
                         cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_a.bin');
                         cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_b.bin');
 
-                        cy.wait(1000);
-
                         cy.get('[data-cy=form-submit-btn]').click();
 
-                        cy.wait(10);
-
                         cy.get('button').contains('Cancel').click();
 
                         cy.get('[data-cy=form-submit-btn]').should('not.exist');
@@ -829,13 +860,6 @@ describe('Collection panel tests', function () {
         });
 
         it('allows to cancel single file from the running upload', () => {
-            cy.createCollection(adminUser.token, {
-                name: `Test collection ${Math.floor(Math.random() * 999999)}`,
-                owner_uuid: activeUser.user.uuid,
-                manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
-            })
-                .as('testCollection1');
-
             cy.getAll('@testCollection1')
                 .then(function([testCollection1]) {
                     cy.loginAs(activeUser);
@@ -848,13 +872,35 @@ describe('Collection panel tests', function () {
                         cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_a.bin');
                         cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_b.bin');
 
-                        cy.wait(1000);
+                        cy.get('[data-cy=form-submit-btn]').click();
+
+                        cy.get('button[aria-label=Remove]').eq(1).click();
+
+                        cy.get('[data-cy=form-submit-btn]').should('not.exist');
+
+                        cy.get('[data-cy=collection-files-panel]').contains('5mb_a.bin').should('exist');
+                    });
+                });
+        });
+
+        it('allows to cancel all files from the running upload', () => {
+            cy.getAll('@testCollection1')
+                .then(function([testCollection1]) {
+                    cy.loginAs(activeUser);
+
+                    cy.goToPath(`/collections/${testCollection1.uuid}`);
+
+                    cy.get('[data-cy=upload-button]').click();
+
+                    cy.fixture('files/5mb.bin', 'base64').then(content => {
+                        cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_a.bin');
+                        cy.get('[data-cy=drag-and-drop]').upload(content, '5mb_b.bin');
 
                         cy.get('[data-cy=form-submit-btn]').click();
 
-                        cy.wait(10);
+                        cy.get('button[aria-label=Remove]').click({ multiple: true });
 
-                        cy.get('button[aria-label=Remove]').eq(1).click();
+                        cy.get('[data-cy=form-submit-btn]').should('not.exist');
                     });
                 });
         });