16971: Added tests to cover more places
[arvados-workbench2.git] / cypress / integration / delete-multiple-files.spec.js
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 describe('Multi-file deletion tests', function () {
6     let activeUser;
7     let adminUser;
8
9     before(function () {
10         cy.getUser('admin', 'Admin', 'User', true, true)
11             .as('adminUser').then(function () {
12                 adminUser = this.adminUser;
13             }
14             );
15         cy.getUser('collectionuser1', 'Collection', 'User', false, true)
16             .as('activeUser').then(function () {
17                 activeUser = this.activeUser;
18             }
19             );
20     });
21
22     beforeEach(function () {
23         cy.clearCookies();
24         cy.clearLocalStorage();
25     });
26
27     it('deletes all files from root dir', function () {
28         cy.createCollection(adminUser.token, {
29             name: `Test collection ${Math.floor(Math.random() * 999999)}`,
30             owner_uuid: activeUser.user.uuid,
31             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n. 37b51d194a7513e45b56f6524f2d51f2+3 0:3:baz\n"
32         })
33             .as('testCollection').then(function () {
34                 cy.loginAs(activeUser);
35                 cy.goToPath(`/collections/${this.testCollection.uuid}`);
36
37                 cy.get('[data-cy=collection-files-panel]').within(() => {
38                     cy.get('[type="checkbox"]').first().check();
39                     cy.get('[type="checkbox"]').last().check();
40                 });
41                 cy.get('[data-cy=collection-files-panel-options-btn]').click();
42                 cy.get('[data-cy=context-menu] div').contains('Remove selected').click();
43                 cy.get('[data-cy=confirmation-dialog-ok-btn]').click();
44                 cy.get('[data-cy=collection-files-panel]')
45                     .should('not.contain', 'baz')
46                     .and('not.contain', 'bar');
47             });
48     });
49
50     it('deletes all files from non root dir', function () {
51         cy.createCollection(adminUser.token, {
52             name: `Test collection ${Math.floor(Math.random() * 999999)}`,
53             owner_uuid: activeUser.user.uuid,
54             manifest_text: "./subdir 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo\n. 37b51d194a7513e45b56f6524f2d51f2+3 0:3:baz\n"
55         })
56             .as('testCollection').then(function () {
57                 cy.loginAs(activeUser);
58                 cy.goToPath(`/collections/${this.testCollection.uuid}`);
59
60                 cy.get('[data-cy=virtual-file-tree] > div > i').first().click();
61                 cy.get('[data-cy=collection-files-panel]')
62                     .should('contain', 'foo');
63
64                 cy.get('[data-cy=collection-files-panel]')
65                     .contains('foo').closest('[data-cy=virtual-file-tree]').find('[type="checkbox"]').click();
66
67                 cy.get('[data-cy=collection-files-panel-options-btn]').click();
68                 cy.get('[data-cy=context-menu] div').contains('Remove selected').click();
69                 cy.get('[data-cy=confirmation-dialog-ok-btn]').click();
70
71                 cy.get('[data-cy=collection-files-panel]')
72                     .should('not.contain', 'subdir')
73                     .and('contain', 'baz');
74             });
75     });
76 })