21700: Install Bundler system-wide in Rails postinst
[arvados.git] / services / workbench2 / cypress / e2e / favorites.cy.js
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 describe('Favorites 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         cy.getUser('collectionuser1', 'Collection', 'User', false, true)
19             .as('activeUser').then(function () {
20                 activeUser = this.activeUser;
21             });
22     });
23
24     it('creates and removes a public favorite', function () {
25         cy.loginAs(adminUser);
26
27         cy.createGroup(adminUser.token, {
28             name: `my-favorite-project`,
29             group_class: 'project',
30         }).as('myFavoriteProject').then(function () {
31             cy.contains('Refresh').click();
32             cy.get('main').contains('my-favorite-project').rightclick();
33             cy.contains('Add to public favorites').click();
34             cy.contains('Public Favorites').click();
35             cy.get('main').contains('my-favorite-project').rightclick();
36             cy.contains('Remove from public favorites').click();
37             cy.get('main').contains('my-favorite-project').should('not.exist');
38             cy.trashGroup(adminUser.token, this.myFavoriteProject.uuid);
39         });
40     });
41
42     // Disabled while addressing #18587
43     it.skip('can copy selected into the collection', () => {
44         cy.createCollection(adminUser.token, {
45             name: `Test source collection ${Math.floor(Math.random() * 999999)}`,
46             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
47         }).as('testSourceCollection').then(function (testSourceCollection) {
48             cy.shareWith(adminUser.token, activeUser.user.uuid, testSourceCollection.uuid, 'can_read');
49         });
50         cy.createCollection(adminUser.token, {
51             name: `Test target collection ${Math.floor(Math.random() * 999999)}`,
52         }).as('testTargetCollection').then(function (testTargetCollection) {
53             cy.shareWith(adminUser.token, activeUser.user.uuid, testTargetCollection.uuid, 'can_write');
54             cy.addToFavorites(activeUser.token, activeUser.user.uuid, testTargetCollection.uuid);
55         });
56
57         cy.getAll('@testSourceCollection', '@testTargetCollection')
58             .then(function ([testSourceCollection, testTargetCollection]) {
59                 cy.loginAs(activeUser);
60                 cy.goToPath(`/collections/${testSourceCollection.uuid}`);
61                 cy.get('[data-cy=collection-files-panel]').contains('bar');
62                 cy.get('[data-cy=collection-files-panel]').find('input[type=checkbox]').click();
63                 cy.get('[data-cy=collection-files-panel-options-btn]').click();
64                 cy.get('[data-cy=context-menu]')
65                     .contains('Copy selected into the collection').click();
66                 cy.get('[data-cy=projects-tree-favourites-tree-picker]')
67                     .find('i')
68                     .click();
69                 cy.get('[data-cy=projects-tree-favourites-tree-picker]')
70                     .contains(testTargetCollection.name)
71                     .click();
72                 cy.get('[data-cy=form-submit-btn]').click();
73                 cy.get('.layout-pane-primary').contains('Projects').click();
74                 cy.goToPath(`/collections/${testTargetCollection.uuid}`);
75                 cy.get('[data-cy=collection-files-panel]').contains('bar');
76             });
77     });
78
79     it('can copy collection to favorites', () => {
80         cy.createProject({
81             owningUser: adminUser,
82             targetUser: activeUser,
83             projectName: 'mySharedWritableProject',
84             canWrite: true,
85             addToFavorites: true
86         });
87         cy.createProject({
88             owningUser: adminUser,
89             targetUser: activeUser,
90             projectName: 'mySharedReadonlyProject',
91             canWrite: false,
92             addToFavorites: true
93         });
94         cy.createProject({
95             owningUser: activeUser,
96             projectName: 'myProject1',
97             addToFavorites: true
98         });
99
100         cy.createCollection(adminUser.token, {
101             name: `Test collection ${Math.floor(Math.random() * 999999)}`,
102             owner_uuid: activeUser.user.uuid,
103             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
104         })
105             .as('testCollection');
106
107         cy.getAll('@mySharedWritableProject', '@mySharedReadonlyProject', '@myProject1', '@testCollection')
108             .then(function ([mySharedWritableProject, mySharedReadonlyProject, myProject1, testCollection]) {
109                 cy.loginAs(activeUser);
110
111                 cy.contains(testCollection.name).rightclick();
112                 cy.get('[data-cy=context-menu]').within(() => {
113                     cy.contains('Move to').click();
114                 });
115
116                 cy.get('[data-cy=form-dialog]').within(function () {
117                     // must use .then to avoid selecting instead of expanding https://github.com/cypress-io/cypress/issues/5529
118                     cy.get('[data-cy=projects-tree-favourites-tree-picker]')
119                         .find('i')
120                         .then(el => el.click());
121                     cy.contains(myProject1.name);
122                     cy.contains(mySharedWritableProject.name);
123                     cy.get('[data-cy=projects-tree-favourites-tree-picker]')
124                         .should('not.contain', mySharedReadonlyProject.name);
125                     cy.contains(mySharedWritableProject.name).click();
126                     cy.get('[data-cy=form-submit-btn]').click();
127                 });
128
129                 cy.goToPath(`/projects/${mySharedWritableProject.uuid}`);
130                 cy.get('main').contains(testCollection.name);
131             });
132     });
133
134     it('can edit project and collections in favorites', () => {
135         cy.createProject({
136             owningUser: adminUser,
137             projectName: 'mySharedWritableProject',
138             canWrite: true,
139             addToFavorites: true
140         });
141
142         cy.createCollection(adminUser.token, {
143             owner_uuid: adminUser.user.uuid,
144             name: `Test target collection ${Math.floor(Math.random() * 999999)}`,
145         }).as('testTargetCollection').then(function (testTargetCollection) {
146             cy.addToFavorites(adminUser.token, adminUser.user.uuid, testTargetCollection.uuid);
147         });
148
149         cy.getAll('@mySharedWritableProject', '@testTargetCollection')
150             .then(function ([mySharedWritableProject, testTargetCollection]) {
151                 cy.loginAs(adminUser);
152
153                 cy.get('[data-cy=side-panel-tree]').contains('My Favorites').click();
154
155                 const newProjectName = `New project name ${mySharedWritableProject.name}`;
156                 const newProjectDescription = `New project description ${mySharedWritableProject.name}`;
157                 const newCollectionName = `New collection name ${testTargetCollection.name}`;
158                 const newCollectionDescription = `New collection description ${testTargetCollection.name}`;
159
160                 cy.testEditProjectOrCollection('main', mySharedWritableProject.name, newProjectName, newProjectDescription);
161                 cy.testEditProjectOrCollection('main', testTargetCollection.name, newCollectionName, newCollectionDescription, false);
162
163                 cy.get('[data-cy=side-panel-tree]').contains('Projects').click();
164
165                 cy.get('main').contains(newProjectName).rightclick();
166                 cy.contains('Add to public favorites').click();
167                 cy.get('main').contains(newCollectionName).rightclick();
168                 cy.contains('Add to public favorites').click();
169
170                 cy.get('[data-cy=side-panel-tree]').contains('Public Favorites').click();
171
172                 cy.testEditProjectOrCollection('main', newProjectName, mySharedWritableProject.name, 'newProjectDescription');
173                 cy.testEditProjectOrCollection('main', newCollectionName, testTargetCollection.name, 'newCollectionDescription', false);
174             });
175     });
176
177     it('can view favorites in workflow', () => {
178         cy.createProject({
179             owningUser: adminUser,
180             targetUser: activeUser,
181             projectName: 'mySharedWritableProject',
182             canWrite: true,
183             addToFavorites: true
184         });
185         cy.createProject({
186             owningUser: adminUser,
187             targetUser: activeUser,
188             projectName: 'mySharedReadonlyProject',
189             canWrite: false,
190             addToFavorites: true
191         });
192         cy.createProject({
193             owningUser: activeUser,
194             projectName: 'myProject1',
195             addToFavorites: true
196         });
197
198         cy.getAll('@mySharedWritableProject', '@mySharedReadonlyProject', '@myProject1')
199             .then(function ([mySharedWritableProject, mySharedReadonlyProject, myProject1]) {
200                 cy.createWorkflow(adminUser.token, {
201                     name: `TestWorkflow${Math.floor(Math.random() * 999999)}.cwl`,
202                     definition: "{\n    \"$graph\": [\n        {\n            \"class\": \"Workflow\",\n            \"doc\": \"Reverse the lines in a document, then sort those lines.\",\n            \"hints\": [\n                {\n                    \"acrContainerImage\": \"99b0201f4cade456b4c9d343769a3b70+261\",\n                    \"class\": \"http://arvados.org/cwl#WorkflowRunnerResources\"\n                }\n            ],\n            \"id\": \"#main\",\n            \"inputs\": [\n                {\n                    \"default\": null,\n                    \"doc\": \"The input file to be processed.\",\n                    \"id\": \"#main/input\",\n                    \"type\": \"File\"\n                },\n                {\n                    \"default\": true,\n                    \"doc\": \"If true, reverse (decending) sort\",\n                    \"id\": \"#main/reverse_sort\",\n                    \"type\": \"boolean\"\n                }\n            ],\n            \"outputs\": [\n                {\n                    \"doc\": \"The output with the lines reversed and sorted.\",\n                    \"id\": \"#main/output\",\n                    \"outputSource\": \"#main/sorted/output\",\n                    \"type\": \"File\"\n                }\n            ],\n            \"steps\": [\n                {\n                    \"id\": \"#main/rev\",\n                    \"in\": [\n                        {\n                            \"id\": \"#main/rev/input\",\n                            \"source\": \"#main/input\"\n                        }\n                    ],\n                    \"out\": [\n                        \"#main/rev/output\"\n                    ],\n                    \"run\": \"#revtool.cwl\"\n                },\n                {\n                    \"id\": \"#main/sorted\",\n                    \"in\": [\n                        {\n                            \"id\": \"#main/sorted/input\",\n                            \"source\": \"#main/rev/output\"\n                        },\n                        {\n                            \"id\": \"#main/sorted/reverse\",\n                            \"source\": \"#main/reverse_sort\"\n                        }\n                    ],\n                    \"out\": [\n                        \"#main/sorted/output\"\n                    ],\n                    \"run\": \"#sorttool.cwl\"\n                }\n            ]\n        },\n        {\n            \"baseCommand\": \"rev\",\n            \"class\": \"CommandLineTool\",\n            \"doc\": \"Reverse each line using the `rev` command\",\n            \"hints\": [\n                {\n                    \"class\": \"ResourceRequirement\",\n                    \"ramMin\": 8\n                }\n            ],\n            \"id\": \"#revtool.cwl\",\n            \"inputs\": [\n                {\n                    \"id\": \"#revtool.cwl/input\",\n                    \"inputBinding\": {},\n                    \"type\": \"File\"\n                }\n            ],\n            \"outputs\": [\n                {\n                    \"id\": \"#revtool.cwl/output\",\n                    \"outputBinding\": {\n                        \"glob\": \"output.txt\"\n                    },\n                    \"type\": \"File\"\n                }\n            ],\n            \"stdout\": \"output.txt\"\n        },\n        {\n            \"baseCommand\": \"sort\",\n            \"class\": \"CommandLineTool\",\n            \"doc\": \"Sort lines using the `sort` command\",\n            \"hints\": [\n                {\n                    \"class\": \"ResourceRequirement\",\n                    \"ramMin\": 8\n                }\n            ],\n            \"id\": \"#sorttool.cwl\",\n            \"inputs\": [\n                {\n                    \"id\": \"#sorttool.cwl/reverse\",\n                    \"inputBinding\": {\n                        \"position\": 1,\n                        \"prefix\": \"-r\"\n                    },\n                    \"type\": \"boolean\"\n                },\n                {\n                    \"id\": \"#sorttool.cwl/input\",\n                    \"inputBinding\": {\n                        \"position\": 2\n                    },\n                    \"type\": \"File\"\n                }\n            ],\n            \"outputs\": [\n                {\n                    \"id\": \"#sorttool.cwl/output\",\n                    \"outputBinding\": {\n                        \"glob\": \"output.txt\"\n                    },\n                    \"type\": \"File\"\n                }\n            ],\n            \"stdout\": \"output.txt\"\n        }\n    ],\n    \"cwlVersion\": \"v1.0\"\n}",
203                     owner_uuid: myProject1.uuid,
204                 })
205                     .as('testWorkflow');
206
207                 cy.createWorkflow(adminUser.token, {
208                     name: `TestWorkflow2-${Math.floor(Math.random() * 999999)}.cwl`,
209                     definition: "{     \"$graph\": [         {             \"$namespaces\": {                 \"arv\": \"http://arvados.org/cwl#\"             },             \"class\": \"Workflow\",             \"doc\": \"Detect blurriness of WSI data.\",             \"id\": \"#main\",             \"inputs\": [                 {                     \"default\": {                         \"basename\": \"3d3cb547725e72ddb442bc620adbc342+2463\",                         \"class\": \"Directory\",                         \"location\": \"keep:3d3cb547725e72ddb442bc620adbc342+2463\"                     },                     \"doc\": \"Collection containing all pipeline input images\",                     \"id\": \"#main/image_collection\",                     \"type\": \"Directory\"                 }             ],             \"outputs\": [                 {                     \"id\": \"#main/blur_report\",                     \"outputSource\": \"#main/blurdetection/report\",                     \"type\": \"Any\"                 }             ],             \"steps\": [                 {                     \"id\": \"#main/blurdetection\",                     \"in\": [                         {                             \"id\": \"#main/blurdetection/image_collection\",                             \"source\": \"#main/image_collection\"                         }                     ],                     \"out\": [                         \"#main/blurdetection/report\"                     ],                     \"run\": \"#blurdetection.cwl\"                 }             ]         },         {             \"arguments\": [                 \"--num_workers\",                 \"0\",                 \"--wsi_dir\",                 \"$(inputs.image_collection)\",                 \"--tile_out_dir\",                 \"$(runtime.outdir)\"             ],             \"baseCommand\": [                 \"python3\",                 \"/updated_blur_on_folder.py\"             ],             \"class\": \"CommandLineTool\",             \"hints\": [                 {                     \"class\": \"DockerRequirement\",                     \"dockerPull\": \"updated_score_aws:cpu2\",                     \"http://arvados.org/cwl#dockerCollectionPDH\": \"0d6702518d1408ce2c471ffec40695cf+4924\"                 },                 {                     \"class\": \"ResourceRequirement\",                     \"coresMin\": 8,                     \"ramMin\": 20000                 },                 {                     \"class\": \"http://arvados.org/cwl#RuntimeConstraints\",                     \"keep_cache\": 2000                 }             ],             \"id\": \"#blurdetection.cwl\",             \"inputs\": [                 {                     \"doc\": \"Collection containing all pipeline input images\",                     \"id\": \"#blurdetection.cwl/image_collection\",                     \"type\": \"Directory\"                 }             ],             \"outputs\": [                 {                     \"id\": \"#blurdetection.cwl/report\",                     \"outputBinding\": {                         \"glob\": \"*.csv\"                     },                     \"type\": \"Any\"                 }             ]         }     ],     \"cwlVersion\": \"v1.0\" }",
210                     owner_uuid: myProject1.uuid,
211                 })
212                     .as('testWorkflow2');
213
214                 cy.loginAs(activeUser);
215
216                 cy.get('main').contains(myProject1.name).click();
217
218                 cy.get('[data-cy=side-panel-button]').click();
219
220                 cy.get('#aside-menu-list').contains('Run a workflow').click();
221
222                 cy.get('@testWorkflow')
223                     .then((testWorkflow) => {
224                         cy.get('main').contains(testWorkflow.name).click();
225                         cy.get('[data-cy=run-process-next-button]').click();
226                         cy.get('[data-cy=new-process-panel]')
227                             .within(() => {
228                                 cy.contains('input').next().click();
229                             });
230                         cy.get('[data-cy=choose-a-file-dialog]').as('chooseFileDialog');
231                         cy.get('[data-cy=projects-tree-favourites-tree-picker]').contains('Favorites').closest('ul').find('i').click();
232                         cy.get('@chooseFileDialog').find(`[data-id=${mySharedWritableProject.uuid}]`);
233                         cy.get('@chooseFileDialog').find(`[data-id=${mySharedReadonlyProject.uuid}]`);
234                         cy.get('button').contains('Cancel').click();
235                     });
236
237                 cy.get('button').contains('Back').click();
238
239                 cy.get('@testWorkflow2')
240                     .then((testWorkflow2) => {
241                         cy.get('main').contains(testWorkflow2.name).click();
242                         cy.get('button').contains('Change Workflow').click();
243                         cy.get('[data-cy=run-process-next-button]').click();
244                         cy.get('[data-cy=new-process-panel]')
245                             .within(() => {
246                                 cy.contains('image_collection').next().click();
247                             });
248                         cy.get('[data-cy=choose-a-directory-dialog]').as('chooseDirectoryDialog');
249                         cy.get('[data-cy=projects-tree-favourites-tree-picker]').contains('Favorites').closest('ul').find('i').click();
250                         cy.get('@chooseDirectoryDialog').find(`[data-id=${mySharedWritableProject.uuid}]`);
251                         cy.get('@chooseDirectoryDialog').find(`[data-id=${mySharedReadonlyProject.uuid}]`);
252                     });
253             });
254     });
255 });