Merge branch '17018-readonly-file-actions-fix'
[arvados-workbench2.git] / cypress / integration / collection-panel.spec.js
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 describe('Collection panel tests', function() {
6     let activeUser;
7     let adminUser;
8
9     before(function() {
10         // Only set up common users once. These aren't set up as aliases because
11         // aliases are cleaned up after every test. Also it doesn't make sense
12         // to set the same users on beforeEach() over and over again, so we
13         // separate a little from Cypress' 'Best Practices' here.
14         cy.getUser('admin', 'Admin', 'User', true, true)
15             .as('adminUser').then(function() {
16                 adminUser = this.adminUser;
17             }
18         );
19         cy.getUser('collectionuser1', 'Collection', 'User', false, true)
20             .as('activeUser').then(function() {
21                 activeUser = this.activeUser;
22             }
23         );
24     })
25
26     beforeEach(function() {
27         cy.clearCookies()
28         cy.clearLocalStorage()
29     })
30
31     it('shows collection by URL', function() {
32         cy.loginAs(activeUser);
33         [true, false].map(function(isWritable) {
34             cy.createGroup(adminUser.token, {
35                 name: 'Shared project',
36                 group_class: 'project',
37             }).as('sharedGroup').then(function() {
38                 // Creates the collection using the admin token so we can set up
39                 // a bogus manifest text without block signatures.
40                 cy.createCollection(adminUser.token, {
41                     name: 'Test collection',
42                     owner_uuid: this.sharedGroup.uuid,
43                     properties: {someKey: 'someValue'},
44                     manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"})
45                 .as('testCollection').then(function() {
46                     // Share the group with active user.
47                     cy.createLink(adminUser.token, {
48                         name: isWritable ? 'can_write' : 'can_read',
49                         link_class: 'permission',
50                         head_uuid: this.sharedGroup.uuid,
51                         tail_uuid: activeUser.user.uuid
52                     })
53                     cy.visit(`/collections/${this.testCollection.uuid}`);
54                     // Check that name & uuid are correct.
55                     cy.get('[data-cy=collection-info-panel]')
56                         .should('contain', this.testCollection.name)
57                         .and('contain', this.testCollection.uuid)
58                         .and('not.contain', 'This is an old version');
59                     // Check for the read-only icon
60                     cy.get('[data-cy=read-only-icon]').should(`${isWritable ? 'not.' : ''}exist`);
61                     // Check that both read and write operations are available on
62                     // the 'More options' menu.
63                     cy.get('[data-cy=collection-panel-options-btn]')
64                         .click()
65                     cy.get('[data-cy=context-menu]')
66                         .should('contain', 'Add to favorites')
67                         .and(`${isWritable ? '' : 'not.'}contain`, 'Edit collection');
68                     cy.get('body').click(); // Collapse the menu avoiding details panel expansion
69                     cy.get('[data-cy=collection-properties-panel]')
70                         .should('contain', 'someKey')
71                         .and('contain', 'someValue')
72                         .and('not.contain', 'anotherKey')
73                         .and('not.contain', 'anotherValue')
74                     if (isWritable === true) {
75                         // Check that properties can be added.
76                         cy.get('[data-cy=collection-properties-form]').within(() => {
77                             cy.get('[data-cy=property-field-key]').within(() => {
78                                 cy.get('input').type('anotherKey');
79                             });
80                             cy.get('[data-cy=property-field-value]').within(() => {
81                                 cy.get('input').type('anotherValue');
82                             });
83                             cy.root().submit();
84                         })
85                         cy.get('[data-cy=collection-properties-panel]')
86                             .should('contain', 'anotherKey')
87                             .and('contain', 'anotherValue')
88                     } else {
89                         // Properties form shouldn't be displayed.
90                         cy.get('[data-cy=collection-properties-form]').should('not.exist');
91                     }
92                     // Check that the file listing show both read & write operations
93                     cy.get('[data-cy=collection-files-panel]').within(() => {
94                         cy.root().should('contain', 'bar');
95                         cy.get('[data-cy=upload-button]')
96                             .should(`${isWritable ? '' : 'not.'}contain`, 'Upload data');
97                     });
98                     cy.get('[data-cy=collection-files-panel]')
99                         .contains('bar').rightclick();
100                     cy.get('[data-cy=context-menu]')
101                         .should('contain', 'Download')
102                         .and('contain', 'Open in new tab')
103                         .and('contain', 'Copy to clipboard')
104                         .and(`${isWritable ? '' : 'not.'}contain`, 'Rename')
105                         .and(`${isWritable ? '' : 'not.'}contain`, 'Remove');
106                     cy.get('body').click(); // Collapse the menu
107                     // Hamburger 'more options' menu button
108                     cy.get('[data-cy=collection-files-panel-options-btn]')
109                         .click()
110                     cy.get('[data-cy=context-menu]')
111                         .should('contain', 'Select all')
112                         .click()
113                     cy.get('[data-cy=collection-files-panel-options-btn]')
114                         .click()
115                     cy.get('[data-cy=context-menu]')
116                         // .should('contain', 'Download selected')
117                         .should(`${isWritable ? '' : 'not.'}contain`, 'Remove selected')
118                     cy.get('body').click(); // Collapse the menu
119                     // File item 'more options' button
120                     cy.get('[data-cy=file-item-options-btn')
121                         .click()
122                     cy.get('[data-cy=context-menu]')
123                         .should('contain', 'Download')
124                         .and(`${isWritable ? '' : 'not.'}contain`, 'Remove');
125                     cy.get('body').click(); // Collapse the menu
126                 })
127             })
128         })
129     })
130
131     it('can correctly display old versions', function() {
132         const colName = `Versioned Collection ${Math.floor(Math.random() * Math.floor(999999))}`;
133         let colUuid = '';
134         let oldVersionUuid = '';
135         // Make sure no other collections with this name exist
136         cy.doRequest('GET', '/arvados/v1/collections', null, {
137             filters: `[["name", "=", "${colName}"]]`,
138             include_old_versions: true
139         })
140         .its('body.items').as('collections')
141         .then(function() {
142             expect(this.collections).to.be.empty;
143         });
144         // Creates the collection using the admin token so we can set up
145         // a bogus manifest text without block signatures.
146         cy.createCollection(adminUser.token, {
147             name: colName,
148             owner_uuid: activeUser.user.uuid,
149             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"})
150         .as('originalVersion').then(function() {
151             // Change the file name to create a new version.
152             cy.updateCollection(adminUser.token, this.originalVersion.uuid, {
153                 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo\n"
154             })
155             colUuid = this.originalVersion.uuid;
156         });
157         // Confirm that there are 2 versions of the collection
158         cy.doRequest('GET', '/arvados/v1/collections', null, {
159             filters: `[["name", "=", "${colName}"]]`,
160             include_old_versions: true
161         })
162         .its('body.items').as('collections')
163         .then(function() {
164             expect(this.collections).to.have.lengthOf(2);
165             this.collections.map(function(aCollection) {
166                 expect(aCollection.current_version_uuid).to.equal(colUuid);
167                 if (aCollection.uuid !== aCollection.current_version_uuid) {
168                     oldVersionUuid = aCollection.uuid;
169                 }
170             });
171             // Check the old version displays as what it is.
172             cy.loginAs(activeUser)
173             cy.visit(`/collections/${oldVersionUuid}`);
174             cy.get('[data-cy=collection-info-panel]').should('contain', 'This is an old version');
175             cy.get('[data-cy=read-only-icon]').should('exist');
176             cy.get('[data-cy=collection-info-panel]').should('contain', colName);
177             cy.get('[data-cy=collection-files-panel]').should('contain', 'bar');
178         });
179     });
180 })