1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 describe('Search tests', 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;
19 cy.getUser('collectionuser1', 'Collection', 'User', false, true)
20 .as('activeUser').then(function() {
21 activeUser = this.activeUser;
26 beforeEach(function() {
28 cy.clearLocalStorage()
31 it('can search for old collection versions', function() {
32 const colName = `Versioned Collection ${Math.floor(Math.random() * Math.floor(999999))}`;
34 let oldVersionUuid = '';
35 // Make sure no other collections with this name exist
36 cy.doRequest('GET', '/arvados/v1/collections', null, {
37 filters: `[["name", "=", "${colName}"]]`,
38 include_old_versions: true
40 .its('body.items').as('collections')
42 expect(this.collections).to.be.empty;
44 // Creates the collection using the admin token so we can set up
45 // a bogus manifest text without block signatures.
46 cy.createCollection(adminUser.token, {
48 owner_uuid: activeUser.user.uuid,
49 preserve_version: true,
50 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"})
51 .as('originalVersion').then(function() {
52 // Change the file name to create a new version.
53 cy.updateCollection(adminUser.token, this.originalVersion.uuid, {
54 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:foo\n"
56 colUuid = this.originalVersion.uuid;
58 // Confirm that there are 2 versions of the collection
59 cy.doRequest('GET', '/arvados/v1/collections', null, {
60 filters: `[["name", "=", "${colName}"]]`,
61 include_old_versions: true
63 .its('body.items').as('collections')
65 expect(this.collections).to.have.lengthOf(2);
66 this.collections.map(function(aCollection) {
67 expect(aCollection.current_version_uuid).to.equal(colUuid);
68 if (aCollection.uuid !== aCollection.current_version_uuid) {
69 oldVersionUuid = aCollection.uuid;
72 cy.loginAs(activeUser);
73 const searchQuery = `${colName} type:arvados#collection`;
74 // Search for only collection's current version
75 cy.doSearch(`${searchQuery}`);
76 cy.get('[data-cy=search-results]').should('contain', 'head version');
77 cy.get('[data-cy=search-results]').should('not.contain', 'version 1');
78 // ...and then, include old versions.
79 cy.doSearch(`${searchQuery} is:pastVersion`);
80 cy.get('[data-cy=search-results]').should('contain', 'head version');
81 cy.get('[data-cy=search-results]').should('contain', 'version 1');
85 it('can display path of the selected item', function() {
86 const colName = `Collection ${Math.floor(Math.random() * Math.floor(999999))}`;
88 // Creates the collection using the admin token so we can set up
89 // a bogus manifest text without block signatures.
90 cy.createCollection(adminUser.token, {
92 owner_uuid: activeUser.user.uuid,
93 preserve_version: true,
94 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
96 cy.loginAs(activeUser);
100 cy.get('[data-cy=search-results]').should('contain', colName);
102 cy.get('[data-cy=search-results]').contains(colName).closest('tr').click();
104 cy.get('[data-cy=element-path]').should('contain', `/ Projects / ${colName}`);
108 it('can search items using quotes', function() {
109 const random = Math.floor(Math.random() * Math.floor(999999));
110 const colName = `Collection ${random}`;
111 const colName2 = `Collection test ${random}`;
113 // Creates the collection using the admin token so we can set up
114 // a bogus manifest text without block signatures.
115 cy.createCollection(adminUser.token, {
117 owner_uuid: activeUser.user.uuid,
118 preserve_version: true,
119 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
120 }).as('collection1');
122 cy.createCollection(adminUser.token, {
124 owner_uuid: activeUser.user.uuid,
125 preserve_version: true,
126 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
127 }).as('collection2');
129 cy.getAll('@collection1', '@collection2')
131 cy.loginAs(activeUser);
133 cy.doSearch(colName);
134 cy.get('[data-cy=search-results] table tbody tr').should('have.length', 2);
136 cy.doSearch(`"${colName}"`);
137 cy.get('[data-cy=search-results] table tbody tr').should('have.length', 1);
141 it('can display owner of the item', function() {
142 const colName = `Collection ${Math.floor(Math.random() * Math.floor(999999))}`;
144 cy.createCollection(adminUser.token, {
146 owner_uuid: activeUser.user.uuid,
147 preserve_version: true,
148 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
150 cy.loginAs(activeUser);
152 cy.doSearch(colName);
154 cy.get('[data-cy=search-results]').should('contain', colName);
156 cy.get('[data-cy=search-results]').contains(colName).closest('tr')
158 cy.get('p').contains(activeUser.user.uuid).should('contain', activeUser.user.full_name);
163 it('shows search context menu', function() {
164 const colName = `Home Collection ${Math.floor(Math.random() * Math.floor(999999))}`;
165 const federatedColName = `Federated Collection ${Math.floor(Math.random() * Math.floor(999999))}`;
166 const federatedColUuid = "xxxxx-4zz18-000000000000000";
168 // Intercept config to insert remote cluster
169 cy.intercept({method: 'GET', hostname: '127.0.0.1', url: '**/arvados/v1/config?nocache=*'}, (req) => {
171 res.body.RemoteClusters = {
172 "*": res.body.RemoteClusters["*"],
174 "ActivateUsers": true,
175 "Host": "xxxxx.fakecluster.tld",
184 // Fake remote cluster config
188 hostname: "xxxxx.fakecluster.tld",
189 url: "**/arvados/v1/config",
200 Mail: { SupportEmailAddress: "arvados@example.com" },
203 ActivateUsers: false,
211 Composer: { ExternalURL: "" },
212 Controller: { ExternalURL: "https://xxxxx.fakecluster.tld:34763/" },
213 DispatchCloud: { ExternalURL: "" },
214 DispatchLSF: { ExternalURL: "" },
215 DispatchSLURM: { ExternalURL: "" },
216 GitHTTP: { ExternalURL: "https://xxxxx.fakecluster.tld:39105/" },
217 GitSSH: { ExternalURL: "" },
218 Health: { ExternalURL: "https://xxxxx.fakecluster.tld:42915/" },
219 Keepbalance: { ExternalURL: "" },
220 Keepproxy: { ExternalURL: "https://xxxxx.fakecluster.tld:46773/" },
221 Keepstore: { ExternalURL: "" },
222 RailsAPI: { ExternalURL: "" },
223 WebDAV: { ExternalURL: "https://xxxxx.fakecluster.tld:36041/" },
224 WebDAVDownload: { ExternalURL: "https://xxxxx.fakecluster.tld:42957/" },
225 WebShell: { ExternalURL: "" },
226 Websocket: { ExternalURL: "wss://xxxxx.fakecluster.tld:37121/websocket" },
227 Workbench1: { ExternalURL: "https://wb1.xxxxx.fakecluster.tld/" },
228 Workbench2: { ExternalURL: "https://wb2.xxxxx.fakecluster.tld/" },
231 default: { Default: true, Priority: 0 },
240 cy.createCollection(adminUser.token, {
242 owner_uuid: activeUser.user.uuid,
243 preserve_version: true,
244 manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
245 }).then(function(testCollection) {
246 cy.loginAs(activeUser);
248 // Intercept search results to add federated result
249 cy.intercept({method: 'GET', url: '**/arvados/v1/groups/contents?*'}, (req) => {
254 ...res.body.items[0],
255 uuid: federatedColUuid,
256 portable_data_hash: "00000000000000000000000000000000+0",
257 name: federatedColName,
258 href: res.body.items[0].href.replace(testCollection.uuid, federatedColUuid),
261 res.body.items_available += 1;
265 cy.doSearch(colName);
268 cy.window().then(win => {
269 cy.stub(win, 'open').as('Open')
272 // Check copy to clipboard
273 cy.get('[data-cy=search-results]').contains(colName).rightclick();
274 cy.get('[data-cy=context-menu]').within((ctx) => {
275 // Check that there are 4 items in the menu
276 cy.get(ctx).children().should('have.length', 4);
277 cy.contains('API Details');
278 cy.contains('Copy to clipboard');
279 cy.contains('Open in new tab');
280 cy.contains('View details');
282 cy.contains('Copy to clipboard').click();
284 cy.window().then((win) => (
285 win.navigator.clipboard.readText().then((text) => {
286 expect(text).to.match(new RegExp(`/collections/${testCollection.uuid}$`));
291 // Check open in new tab
292 cy.get('[data-cy=search-results]').contains(colName).rightclick();
293 cy.get('[data-cy=context-menu]').within(() => {
294 cy.contains('Open in new tab').click();
296 cy.get('@Open').should('have.been.calledOnceWith', `${window.location.origin}/collections/${testCollection.uuid}`)
299 // Check federated result copy to clipboard
300 cy.get('[data-cy=search-results]').contains(federatedColName).rightclick();
301 cy.get('[data-cy=context-menu]').within(() => {
302 cy.contains('Copy to clipboard').click();
304 cy.window().then((win) => (
305 win.navigator.clipboard.readText().then((text) => {
306 expect(text).to.equal(`https://wb2.xxxxx.fakecluster.tld/collections/${federatedColUuid}`);
310 // Check open in new tab
311 cy.get('[data-cy=search-results]').contains(federatedColName).rightclick();
312 cy.get('[data-cy=context-menu]').within(() => {
313 cy.contains('Open in new tab').click();
315 cy.get('@Open').should('have.been.calledWith', `https://wb2.xxxxx.fakecluster.tld/collections/${federatedColUuid}`)