9d51cc7fc9553f1930b40117d9392b2a0473ae3b
[arvados-workbench2.git] / cypress / integration / favorites.spec.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     beforeEach(function () {
25         cy.clearCookies()
26         cy.clearLocalStorage()
27     });
28
29     it('creates and removes a public favorite', function () {
30         cy.loginAs(adminUser);
31
32         cy.createGroup(adminUser.token, {
33             name: `my-favorite-project`,
34             group_class: 'project',
35         }).as('myFavoriteProject').then(function () {
36             cy.contains('Refresh').click();
37             cy.get('main').contains('my-favorite-project').rightclick();
38             cy.contains('Add to public favorites').click();
39             cy.contains('Public Favorites').click();
40             cy.get('main').contains('my-favorite-project').rightclick();
41             cy.contains('Remove from public favorites').click();
42             cy.get('main').contains('my-favorite-project').should('not.exist');
43             cy.trashGroup(adminUser.token, this.myFavoriteProject.uuid);
44         });
45     });
46
47     it('can copy selected into the collection', () => {
48         cy.loginAs(adminUser);
49
50         cy.createCollection(adminUser.token, {
51             name: `Test source collection ${Math.floor(Math.random() * 999999)}`,
52             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
53         }).as('testSourceCollection').then(function (testSourceCollection) {
54             cy.shareWith(adminUser.token, activeUser.user.uuid, testSourceCollection.uuid, 'can_read');
55         });
56
57         cy.createCollection(adminUser.token, {
58             name: `Test target collection ${Math.floor(Math.random() * 999999)}`,
59         }).as('testTargetCollection').then(function (testTargetCollection) {
60             cy.shareWith(adminUser.token, activeUser.user.uuid, testTargetCollection.uuid, 'can_write');
61             cy.addToFavorites(activeUser.token, activeUser.user.uuid, testTargetCollection.uuid);
62         });
63
64         cy.getAll('@testSourceCollection', '@testTargetCollection')
65             .then(function ([testSourceCollection, testTargetCollection]) {
66                 cy.get('.layout-pane-primary').contains('Projects').click();
67                 cy.get('main').contains(testSourceCollection.name).click();
68                 cy.get('[data-cy=collection-files-panel]').contains('bar');
69                 cy.get('[data-cy=collection-files-panel]').find('input[type=checkbox]').click({ force: true });
70                 cy.get('[data-cy=collection-files-panel-options-btn]').click();
71                 cy.get('[data-cy=context-menu]')
72                     .contains('Copy selected into the collection').click();
73
74                 cy.get('[data-cy=projects-tree-favourites-tree-picker]')
75                     .find('i')
76                     .click();
77
78                 cy.get('[data-cy=projects-tree-favourites-tree-picker]')
79                     .contains(testTargetCollection.name)
80                     .click();
81
82                 cy.get('[data-cy=form-submit-btn]').click();
83
84                 cy.get('.layout-pane-primary')
85                     .contains('Projects').click();
86
87                 cy.get('main').contains(testTargetCollection.name).click();
88
89                 cy.get('[data-cy=collection-files-panel]').contains('bar');
90             });
91     });
92
93     it('can copy collection to favorites', () => {
94         cy.createProject({
95             owningUser: adminUser,
96             targetUser: activeUser,
97             projectName: 'mySharedWritableProject',
98             canWrite: true,
99             addToFavorites: true
100         });
101         cy.createProject({
102             owningUser: adminUser,
103             targetUser: activeUser,
104             projectName: 'mySharedReadonlyProject',
105             canWrite: false,
106             addToFavorites: true
107         });
108         cy.createProject({
109             owningUser: activeUser,
110             projectName: 'myProject1',
111             addToFavorites: true
112         });
113
114         cy.createCollection(adminUser.token, {
115             name: `Test collection ${Math.floor(Math.random() * 999999)}`,
116             owner_uuid: activeUser.user.uuid,
117             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
118         })
119             .as('testCollection');
120
121         cy.getAll('@mySharedWritableProject', '@mySharedReadonlyProject', '@myProject1', '@testCollection')
122             .then(function ([mySharedWritableProject, mySharedReadonlyProject, myProject1, testCollection]) {
123                 cy.loginAs(activeUser);
124
125                 cy.contains(testCollection.name).rightclick();
126                 cy.get('[data-cy=context-menu]').within(() => {
127                     cy.contains('Move to').click();
128                 });
129
130                 cy.get('[data-cy=form-dialog]').within(function () {
131                     cy.get('[data-cy=projects-tree-favourites-tree-picker]').find('i').click();
132                     cy.contains(myProject1.name);
133                     cy.contains(mySharedWritableProject.name);
134                     cy.get('[data-cy=projects-tree-favourites-tree-picker]')
135                         .should('not.contain', mySharedReadonlyProject.name);
136                     cy.contains(mySharedWritableProject.name).click();
137                     cy.get('[data-cy=form-submit-btn]').click();
138                 });
139
140                 cy.goToPath(`/projects/${mySharedWritableProject.uuid}`);
141                 cy.get('main').contains(testCollection.name);
142             });
143     });
144
145     it('can view favourites in workflow', () => {
146         cy.createProject({
147             owningUser: adminUser,
148             targetUser: activeUser,
149             projectName: 'mySharedWritableProject',
150             canWrite: true,
151             addToFavorites: true
152         });
153         cy.createProject({
154             owningUser: adminUser,
155             targetUser: activeUser,
156             projectName: 'mySharedReadonlyProject',
157             canWrite: false,
158             addToFavorites: true
159         });
160         cy.createProject({
161             owningUser: activeUser,
162             projectName: 'myProject1',
163             addToFavorites: true
164         });
165
166         cy.getAll('@mySharedWritableProject', '@mySharedReadonlyProject', '@myProject1')
167             .then(function ([mySharedWritableProject, mySharedReadonlyProject, myProject1]) {
168                 cy.createWorkflow(adminUser.token, {
169                     name: `TestWorkflow${Math.floor(Math.random() * 999999)}.cwl`,
170                     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}",
171                     owner_uuid: myProject1.uuid,
172                 })
173                     .as('testWorkflow');
174
175                 cy.createWorkflow(adminUser.token, {
176                     name: `TestWorkflow2-${Math.floor(Math.random() * 999999)}.cwl`,
177                     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\" }",
178                     owner_uuid: myProject1.uuid,
179                 })
180                     .as('testWorkflow2');
181
182                 cy.loginAs(activeUser);
183
184                 cy.get('main').contains(myProject1.name).click();
185
186                 cy.get('[data-cy=side-panel-button]').click();
187
188                 cy.get('#aside-menu-list').contains('Run a process').click();
189
190                 cy.get('@testWorkflow')
191                     .then((testWorkflow) => {
192                         cy.get('main').contains(testWorkflow.name).click();
193                         cy.get('[data-cy=run-process-next-button]').click();
194                         cy.get('[readonly]').click();
195                         cy.get('[data-cy=choose-a-file-dialog]').as('chooseFileDialog');
196                         cy.get('[data-cy=projects-tree-favourites-tree-picker]').contains('Favorites').closest('ul').find('i').click();
197                         cy.get('@chooseFileDialog').find(`[data-id=${mySharedWritableProject.uuid}]`);
198                         cy.get('@chooseFileDialog').find(`[data-id=${mySharedReadonlyProject.uuid}]`);
199                         cy.get('button').contains('Cancel').click();
200                     });
201
202                 cy.get('button').contains('Back').click();
203
204                 cy.get('@testWorkflow2')
205                     .then((testWorkflow2) => {
206                         cy.get('main').contains(testWorkflow2.name).click();
207                         cy.get('button').contains('Change Workflow').click();
208                         cy.get('[data-cy=run-process-next-button]').click();
209                         cy.get('[readonly]').click();
210                         cy.get('[data-cy=choose-a-directory-dialog]').as('chooseDirectoryDialog');
211                         cy.get('[data-cy=projects-tree-favourites-tree-picker]').contains('Favorites').closest('ul').find('i').click();
212                         cy.get('@chooseDirectoryDialog').find(`[data-id=${mySharedWritableProject.uuid}]`);
213                         cy.get('@chooseDirectoryDialog').find(`[data-id=${mySharedReadonlyProject.uuid}]`);
214                     });
215             });
216     });
217 });