18169: Fixed upload cancelation on a single file 18169-cancel-button-not-working
authorDaniel Kutyła <daniel.kutyla@contractors.roche.com>
Thu, 25 Nov 2021 16:16:31 +0000 (17:16 +0100)
committerDaniel Kutyła <daniel.kutyla@contractors.roche.com>
Thu, 25 Nov 2021 16:16:31 +0000 (17:16 +0100)
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla@contractors.roche.com>

cypress/integration/collection.spec.js
src/components/file-upload/file-upload.tsx
src/store/file-uploader/file-uploader-reducer.ts

index e46be0c366717da85f09f7e60d121393e91cfd65..eb06a06c92549b7a06e684054610d6d0ca8d1ffa 100644 (file)
@@ -795,14 +795,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 +817,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 +827,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 +839,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');
                     });
                 });
         });
index 579746a6d83484ee970fd767e380e4830da6b30f..54d5b5db2b9513a34579d1d5465a89587c3fb8eb 100644 (file)
@@ -123,6 +123,17 @@ export const FileUpload = withStyles(styles)(
             if (!disabled) {
                 onDelete(file);
             }
+
+            let interval = setInterval(() => {
+                const key = Object.keys((window as any).cancelTokens).find(key => key.indexOf(file.file.name) > -1);
+
+                if (key) {
+                    clearInterval(interval);
+                    (window as any).cancelTokens[key]();
+                    delete (window as any).cancelTokens[key];
+                }
+            }, 100);
+
         }
         render() {
             const { classes, onDrop, disabled, files } = this.props;
index bade4c8f88082aa6057d6e8f7c1d07f2cc134979..4218fbee61a9df1689fa3b69a36d40d328e2d2a2 100644 (file)
@@ -41,24 +41,22 @@ export const fileUploaderReducer = (state: UploaderState = initialState, action:
             const idToDelete: number = file.id;
             const updatedState = state.filter(file => file.id !== idToDelete);
 
-            const key: string | undefined = Object.keys((window as any).cancelTokens)
-                .find(key => key.indexOf(file.file.name) > -1);
-
-            if (key) {
-                (window as any).cancelTokens[key]();
-                delete (window as any).cancelTokens[key];
-            }
-
             return updatedState;
         },
         CANCEL_FILES_UPLOAD: () => {
-            Object.keys((window as any).cancelTokens)
-                .forEach((key) => {
-                    (window as any).cancelTokens[key]();
-                    delete (window as any).cancelTokens[key];
-                });
+            state.forEach((file) => {
+                let interval = setInterval(() => {
+                    const key = Object.keys((window as any).cancelTokens).find(key => key.indexOf(file.file.name) > -1);
+    
+                    if (key) {
+                        clearInterval(interval);
+                        (window as any).cancelTokens[key]();
+                        delete (window as any).cancelTokens[key];
+                    }
+                }, 100);
+            });
 
-            return state;
+            return [];
         },
         START_UPLOAD: () => {
             const startTime = Date.now();