Merge branch '16719-collection-version-basic-ui'
[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                         .type('{esc}'); // Collapse the options menu
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                     // Hamburger 'more options' menu button
99                     cy.get('[data-cy=collection-files-panel-options-btn]')
100                         .click()
101                     cy.get('[data-cy=context-menu]')
102                         .should('contain', 'Select all')
103                         .click()
104                     cy.get('[data-cy=collection-files-panel-options-btn]')
105                         .click()
106                     cy.get('[data-cy=context-menu]')
107                         // .should('contain', 'Download selected')
108                         .should(`${isWritable ? '' : 'not.'}contain`, 'Remove selected')
109                         .type('{esc}'); // Collapse the options menu
110                     // File item 'more options' button
111                     cy.get('[data-cy=file-item-options-btn')
112                         .click()
113                     cy.get('[data-cy=context-menu]')
114                         .should('contain', 'Download')
115                         .and(`${isWritable ? '' : 'not.'}contain`, 'Remove')
116                         .type('{esc}'); // Collapse
117                 })
118             })
119         })
120     })
121
122     it('can correctly display old versions', function() {
123         const colName = `Versioned Collection ${Math.floor(Math.random() * Math.floor(999999))}`;
124         let colUuid = '';
125         let oldVersionUuid = '';
126         // Make sure no other collections with this name exist
127         cy.doRequest('GET', '/arvados/v1/collections', null, {
128             filters: `[["name", "=", "${colName}"]]`,
129             include_old_versions: true
130         })
131         .its('body.items').as('collections')
132         .then(function() {
133             expect(this.collections).to.be.empty;
134         });
135         // Creates the collection using the admin token so we can set up
136         // a bogus manifest text without block signatures.
137         cy.createCollection(adminUser.token, {
138             name: colName,
139             owner_uuid: activeUser.user.uuid,
140             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"})
141         .as('originalVersion').then(function() {
142             // Change the file name to create a new version.
143             cy.updateCollection(adminUser.token, this.originalVersion.uuid, {
144                 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo\n"
145             })
146             colUuid = this.originalVersion.uuid;
147         });
148         // Confirm that there are 2 versions of the collection
149         cy.doRequest('GET', '/arvados/v1/collections', null, {
150             filters: `[["name", "=", "${colName}"]]`,
151             include_old_versions: true
152         })
153         .its('body.items').as('collections')
154         .then(function() {
155             expect(this.collections).to.have.lengthOf(2);
156             this.collections.map(function(aCollection) {
157                 expect(aCollection.current_version_uuid).to.equal(colUuid);
158                 if (aCollection.uuid !== aCollection.current_version_uuid) {
159                     oldVersionUuid = aCollection.uuid;
160                 }
161             });
162             // Check the old version displays as what it is.
163             cy.loginAs(activeUser)
164             cy.visit(`/collections/${oldVersionUuid}`);
165             cy.get('[data-cy=collection-info-panel]').should('contain', 'This is an old version');
166             cy.get('[data-cy=read-only-icon]').should('exist');
167             cy.get('[data-cy=collection-info-panel]').should('contain', colName);
168             cy.get('[data-cy=collection-files-panel]').should('contain', 'bar');
169         });
170     });
171 })