Merge branch 'master' into 6507-node-manager-azure
[arvados.git] / apps / workbench / test / integration / projects_test.rb
1 require 'integration_helper'
2 require 'helpers/share_object_helper'
3 require_relative 'integration_test_utils'
4
5 class ProjectsTest < ActionDispatch::IntegrationTest
6   include ShareObjectHelper
7
8   setup do
9     need_javascript
10   end
11
12   test 'Check collection count for A Project in the tab pane titles' do
13     project_uuid = api_fixture('groups')['aproject']['uuid']
14     visit page_with_token 'active', '/projects/' + project_uuid
15     click_link 'Data collections'
16     wait_for_ajax
17     collection_count = page.all("[data-pk*='collection']").count
18     assert_selector '#Data_collections-tab span', text: "(#{collection_count})"
19   end
20
21   test 'Find a project and edit its description' do
22     visit page_with_token 'active', '/'
23     find("#projects-menu").click
24     find(".dropdown-menu a", text: "A Project").click
25     within('.container-fluid', text: api_fixture('groups')['aproject']['name']) do
26       find('span', text: api_fixture('groups')['aproject']['name']).click
27       within('.arv-description-as-subtitle') do
28         find('.fa-pencil').click
29         find('.editable-input textarea').set('I just edited this.')
30         find('.editable-submit').click
31       end
32       wait_for_ajax
33     end
34     visit current_path
35     assert(find?('.container-fluid', text: 'I just edited this.'),
36            "Description update did not survive page refresh")
37   end
38
39   test 'Create a project and move it into a different project' do
40     visit page_with_token 'active', '/projects'
41     find("#projects-menu").click
42     find(".dropdown-menu a", text: "Home").click
43     find('.btn', text: "Add a subproject").click
44
45     within('h2') do
46       find('.fa-pencil').click
47       find('.editable-input input').set('Project 1234')
48       find('.glyphicon-ok').click
49     end
50     wait_for_ajax
51
52     visit '/projects'
53     find("#projects-menu").click
54     find(".dropdown-menu a", text: "Home").click
55     find('.btn', text: "Add a subproject").click
56     within('h2') do
57       find('.fa-pencil').click
58       find('.editable-input input').set('Project 5678')
59       find('.glyphicon-ok').click
60     end
61     wait_for_ajax
62
63     click_link 'Move project...'
64     find('.selectable', text: 'Project 1234').click
65     find('.modal-footer a,button', text: 'Move').click
66     wait_for_ajax
67
68     # Wait for the page to refresh and show the new parent in Sharing panel
69     click_link 'Sharing'
70     assert(page.has_link?("Project 1234"),
71            "Project 5678 should now be inside project 1234")
72   end
73
74   def open_groups_sharing(project_name="aproject", token_name="active")
75     project = api_fixture("groups", project_name)
76     visit(page_with_token(token_name, "/projects/#{project['uuid']}"))
77     click_on "Sharing"
78     click_on "Share with groups"
79   end
80
81   def group_name(group_key)
82     api_fixture("groups", group_key, "name")
83   end
84
85   test "projects not publicly sharable when anonymous browsing disabled" do
86     Rails.configuration.anonymous_user_token = false
87     open_groups_sharing
88     # Check for a group we do expect first, to make sure the modal's loaded.
89     assert_selector(".modal-container .selectable",
90                     text: group_name("all_users"))
91     assert_no_selector(".modal-container .selectable",
92                        text: group_name("anonymous_group"))
93   end
94
95   test "projects publicly sharable when anonymous browsing enabled" do
96     Rails.configuration.anonymous_user_token = "testonlytoken"
97     open_groups_sharing
98     assert_selector(".modal-container .selectable",
99                     text: group_name("anonymous_group"))
100   end
101
102   test "project owner can manage sharing for another user" do
103     add_user = api_fixture('users')['future_project_user']
104     new_name = ["first_name", "last_name"].map { |k| add_user[k] }.join(" ")
105
106     show_object_using('active', 'groups', 'aproject', 'A Project')
107     click_on "Sharing"
108     add_share_and_check("users", new_name, add_user)
109     modify_share_and_check(new_name)
110   end
111
112   test "project owner can manage sharing for another group" do
113     new_name = api_fixture('groups')['future_project_viewing_group']['name']
114
115     show_object_using('active', 'groups', 'aproject', 'A Project')
116     click_on "Sharing"
117     add_share_and_check("groups", new_name)
118     modify_share_and_check(new_name)
119   end
120
121   test "'share with group' listing does not offer projects" do
122     show_object_using('active', 'groups', 'aproject', 'A Project')
123     click_on "Sharing"
124     click_on "Share with groups"
125     good_uuid = api_fixture("groups")["private"]["uuid"]
126     assert(page.has_selector?(".selectable[data-object-uuid=\"#{good_uuid}\"]"),
127            "'share with groups' listing missing owned user group")
128     bad_uuid = api_fixture("groups")["asubproject"]["uuid"]
129     assert(page.has_no_selector?(".selectable[data-object-uuid=\"#{bad_uuid}\"]"),
130            "'share with groups' listing includes project")
131   end
132
133   [
134     ['Move',api_fixture('collections')['collection_to_move_around_in_aproject'],
135       api_fixture('groups')['aproject'],api_fixture('groups')['asubproject']],
136     ['Remove',api_fixture('collections')['collection_to_move_around_in_aproject'],
137       api_fixture('groups')['aproject']],
138     ['Copy',api_fixture('collections')['collection_to_move_around_in_aproject'],
139       api_fixture('groups')['aproject'],api_fixture('groups')['asubproject']],
140     ['Remove',api_fixture('collections')['collection_in_aproject_with_same_name_as_in_home_project'],
141       api_fixture('groups')['aproject'],nil,true],
142   ].each do |action, my_collection, src, dest=nil, expect_name_change=nil|
143     test "selection #{action} -> #{expect_name_change.inspect} for project" do
144       perform_selection_action src, dest, my_collection, action
145
146       case action
147       when 'Copy'
148         assert page.has_text?(my_collection['name']), 'Collection not found in src project after copy'
149         visit page_with_token 'active', '/'
150         find("#projects-menu").click
151         find(".dropdown-menu a", text: dest['name']).click
152         click_link 'Data collections'
153         assert page.has_text?(my_collection['name']), 'Collection not found in dest project after copy'
154
155       when 'Move'
156         assert page.has_no_text?(my_collection['name']), 'Collection still found in src project after move'
157         visit page_with_token 'active', '/'
158         find("#projects-menu").click
159         find(".dropdown-menu a", text: dest['name']).click
160         click_link 'Data collections'
161         assert page.has_text?(my_collection['name']), 'Collection not found in dest project after move'
162
163       when 'Remove'
164         assert page.has_no_text?(my_collection['name']), 'Collection still found in src project after remove'
165       end
166     end
167   end
168
169   def perform_selection_action src, dest, item, action
170     visit page_with_token 'active', '/'
171     find("#projects-menu").click
172     find(".dropdown-menu a", text: src['name']).click
173     click_link 'Data collections'
174     assert page.has_text?(item['name']), 'Collection not found in src project'
175
176     within('tr', text: item['name']) do
177       find('input[type=checkbox]').click
178     end
179
180     click_button 'Selection'
181
182     within('.selection-action-container') do
183       assert page.has_text?("Compare selected"), "Compare selected link text not found"
184       assert page.has_link?("Copy selected"), "Copy selected link not found"
185       assert page.has_link?("Move selected"), "Move selected link not found"
186       assert page.has_link?("Remove selected"), "Remove selected link not found"
187
188       click_link "#{action} selected"
189     end
190
191     # select the destination project if a Copy or Move action is being performed
192     if action == 'Copy' || action == 'Move'
193       within(".modal-container") do
194         find('.selectable', text: dest['name']).click
195         find('.modal-footer a,button', text: action).click
196         wait_for_ajax
197       end
198     end
199   end
200
201   # Test copy action state. It should not be available when a subproject is selected.
202   test "copy action is disabled when a subproject is selected" do
203     my_project = api_fixture('groups')['aproject']
204     my_collection = api_fixture('collections')['collection_to_move_around_in_aproject']
205     my_subproject = api_fixture('groups')['asubproject']
206
207     # verify that selection options are disabled on the project until an item is selected
208     visit page_with_token 'active', '/'
209     find("#projects-menu").click
210     find(".dropdown-menu a", text: my_project['name']).click
211
212     click_link 'Data collections'
213     click_button 'Selection'
214     within('.selection-action-container') do
215       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
216       assert_selector 'li.disabled', text: 'Compare selected'
217       assert_selector 'li.disabled', text: 'Copy selected'
218       assert_selector 'li.disabled', text: 'Move selected'
219       assert_selector 'li.disabled', text: 'Remove selected'
220     end
221
222     # select collection and verify links are enabled
223     visit page_with_token 'active', '/'
224     find("#projects-menu").click
225     find(".dropdown-menu a", text: my_project['name']).click
226     click_link 'Data collections'
227     assert page.has_text?(my_collection['name']), 'Collection not found in project'
228
229     within('tr', text: my_collection['name']) do
230       find('input[type=checkbox]').click
231     end
232
233     click_button 'Selection'
234     within('.selection-action-container') do
235       assert_no_selector 'li.disabled', text: 'Create new collection with selected collections'
236       assert_selector 'li', text: 'Create new collection with selected collections'
237       assert_selector 'li.disabled', text: 'Compare selected'
238       assert_no_selector 'li.disabled', text: 'Copy selected'
239       assert_selector 'li', text: 'Copy selected'
240       assert_no_selector 'li.disabled', text: 'Move selected'
241       assert_selector 'li', text: 'Move selected'
242       assert_no_selector 'li.disabled', text: 'Remove selected'
243       assert_selector 'li', text: 'Remove selected'
244     end
245
246     # select subproject and verify that copy action is disabled
247     visit page_with_token 'active', '/'
248     find("#projects-menu").click
249     find(".dropdown-menu a", text: my_project['name']).click
250
251     click_link 'Subprojects'
252     assert page.has_text?(my_subproject['name']), 'Subproject not found in project'
253
254     within('tr', text: my_subproject['name']) do
255       find('input[type=checkbox]').click
256     end
257
258     click_button 'Selection'
259     within('.selection-action-container') do
260       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
261       assert_selector 'li.disabled', text: 'Compare selected'
262       assert_selector 'li.disabled', text: 'Copy selected'
263       assert_no_selector 'li.disabled', text: 'Move selected'
264       assert_selector 'li', text: 'Move selected'
265       assert_no_selector 'li.disabled', text: 'Remove selected'
266       assert_selector 'li', text: 'Remove selected'
267     end
268
269     # select subproject and a collection and verify that copy action is still disabled
270     visit page_with_token 'active', '/'
271     find("#projects-menu").click
272     find(".dropdown-menu a", text: my_project['name']).click
273
274     click_link 'Subprojects'
275     assert page.has_text?(my_subproject['name']), 'Subproject not found in project'
276
277     within('tr', text: my_subproject['name']) do
278       find('input[type=checkbox]').click
279     end
280
281     click_link 'Data collections'
282     assert page.has_text?(my_collection['name']), 'Collection not found in project'
283
284     within('tr', text: my_collection['name']) do
285       find('input[type=checkbox]').click
286     end
287
288     click_link 'Subprojects'
289     click_button 'Selection'
290     within('.selection-action-container') do
291       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
292       assert_selector 'li.disabled', text: 'Compare selected'
293       assert_selector 'li.disabled', text: 'Copy selected'
294       assert_no_selector 'li.disabled', text: 'Move selected'
295       assert_selector 'li', text: 'Move selected'
296       assert_no_selector 'li.disabled', text: 'Remove selected'
297       assert_selector 'li', text: 'Remove selected'
298     end
299   end
300
301   # When project tabs are switched, only options applicable to the current tab's selections are enabled.
302   test "verify selection options when tabs are switched" do
303     my_project = api_fixture('groups')['aproject']
304     my_collection = api_fixture('collections')['collection_to_move_around_in_aproject']
305     my_subproject = api_fixture('groups')['asubproject']
306
307     # select subproject and a collection and verify that copy action is still disabled
308     visit page_with_token 'active', '/'
309     find("#projects-menu").click
310     find(".dropdown-menu a", text: my_project['name']).click
311
312     # Select a sub-project
313     click_link 'Subprojects'
314     assert page.has_text?(my_subproject['name']), 'Subproject not found in project'
315
316     within('tr', text: my_subproject['name']) do
317       find('input[type=checkbox]').click
318     end
319
320     # Select a collection
321     click_link 'Data collections'
322     assert page.has_text?(my_collection['name']), 'Collection not found in project'
323
324     within('tr', text: my_collection['name']) do
325       find('input[type=checkbox]').click
326     end
327
328     # Go back to Subprojects tab
329     click_link 'Subprojects'
330     click_button 'Selection'
331     within('.selection-action-container') do
332       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
333       assert_selector 'li.disabled', text: 'Compare selected'
334       assert_selector 'li.disabled', text: 'Copy selected'
335       assert_no_selector 'li.disabled', text: 'Move selected'
336       assert_selector 'li', text: 'Move selected'
337       assert_no_selector 'li.disabled', text: 'Remove selected'
338       assert_selector 'li', text: 'Remove selected'
339     end
340
341     # Close the dropdown by clicking outside it.
342     find('.dropdown-toggle', text: 'Selection').find(:xpath, '..').click
343
344     # Go back to Data collections tab
345     find('.nav-tabs a', text: 'Data collections').click
346     click_button 'Selection'
347     within('.selection-action-container') do
348       assert_no_selector 'li.disabled', text: 'Create new collection with selected collections'
349       assert_selector 'li', text: 'Create new collection with selected collections'
350       assert_selector 'li.disabled', text: 'Compare selected'
351       assert_no_selector 'li.disabled', text: 'Copy selected'
352       assert_selector 'li', text: 'Copy selected'
353       assert_no_selector 'li.disabled', text: 'Move selected'
354       assert_selector 'li', text: 'Move selected'
355       assert_no_selector 'li.disabled', text: 'Remove selected'
356       assert_selector 'li', text: 'Remove selected'
357     end
358   end
359
360   # "Move selected" and "Remove selected" options should not be
361   # available when current user cannot write to the project
362   test "move selected and remove selected actions not available when current user cannot write to project" do
363     my_project = api_fixture('groups')['anonymously_accessible_project']
364     visit page_with_token 'active', "/projects/#{my_project['uuid']}"
365
366     click_link 'Data collections'
367     click_button 'Selection'
368     within('.selection-action-container') do
369       assert_selector 'li', text: 'Create new collection with selected collections'
370       assert_selector 'li', text: 'Compare selected'
371       assert_selector 'li', text: 'Copy selected'
372       assert_no_selector 'li', text: 'Move selected'
373       assert_no_selector 'li', text: 'Remove selected'
374     end
375   end
376
377   [
378     ['active', true],
379     ['project_viewer', false],
380   ].each do |user, expect_collection_in_aproject|
381     test "combine selected collections into new collection #{user} #{expect_collection_in_aproject}" do
382       my_project = api_fixture('groups')['aproject']
383       my_collection = api_fixture('collections')['collection_to_move_around_in_aproject']
384
385       visit page_with_token user, "/projects/#{my_project['uuid']}"
386       click_link 'Data collections'
387       assert page.has_text?(my_collection['name']), 'Collection not found in project'
388
389       within('tr', text: my_collection['name']) do
390         find('input[type=checkbox]').click
391       end
392
393       click_button 'Selection'
394       within('.selection-action-container') do
395         click_link 'Create new collection with selected collections'
396       end
397
398       # now in the new collection page
399       if expect_collection_in_aproject
400         assert page.has_text?("Created new collection in the project #{my_project['name']}"),
401                               'Not found flash message that new collection is created in aproject'
402       else
403         assert page.has_text?("Created new collection in your Home project"),
404                               'Not found flash message that new collection is created in Home project'
405       end
406     end
407   end
408
409   def scroll_setup(project_name,
410                    total_nbr_items,
411                    item_list_parameter,
412                    sorted = false,
413                    sort_parameters = nil)
414     project_uuid = api_fixture('groups')[project_name]['uuid']
415     visit page_with_token 'user1_with_load', '/projects/' + project_uuid
416
417     assert(page.has_text?("#{item_list_parameter.humanize} (#{total_nbr_items})"), "Number of #{item_list_parameter.humanize} did not match the input amount")
418
419     click_link item_list_parameter.humanize
420     wait_for_ajax
421
422     if sorted
423       find("th[data-sort-order='#{sort_parameters.gsub(/\s/,'')}']").click
424       wait_for_ajax
425     end
426   end
427
428   def scroll_items_check(nbr_items,
429                          fixture_prefix,
430                          item_list_parameter,
431                          item_selector,
432                          sorted = false)
433     items = []
434     for i in 1..nbr_items
435       items << "#{fixture_prefix}#{i}"
436     end
437
438     verify_items = items.dup
439     unexpected_items = []
440     item_count = 0
441     within(".arv-project-#{item_list_parameter}") do
442       page.execute_script "window.scrollBy(0,999000)"
443       begin
444         wait_for_ajax
445       rescue
446       end
447
448       # Visit all rows. If not all expected items are found, retry
449       found_items = page.all(item_selector)
450       item_count = found_items.count
451
452       previous = nil
453       (0..item_count-1).each do |i|
454         # Found row text using the fixture string e.g. "Show Collection_#{n} "
455         item_name = found_items[i].text.split[1]
456         if !items.include? item_name
457           unexpected_items << item_name
458         else
459           verify_items.delete item_name
460         end
461         if sorted
462           # check sort order
463           assert_operator( previous.downcase, :<=, item_name.downcase) if previous
464           previous = item_name
465         end
466       end
467
468       assert_equal true, unexpected_items.empty?, "Found unexpected #{item_list_parameter.humanize} #{unexpected_items.inspect}"
469       assert_equal nbr_items, item_count, "Found different number of #{item_list_parameter.humanize}"
470       assert_equal true, verify_items.empty?, "Did not find all the #{item_list_parameter.humanize}"
471     end
472   end
473
474   [
475     ['project_with_10_collections', 10],
476     ['project_with_201_collections', 201], # two pages of data
477   ].each do |project_name, nbr_items|
478     test "scroll collections tab for #{project_name} with #{nbr_items} objects" do
479       item_list_parameter = "Data_collections"
480       scroll_setup project_name,
481                    nbr_items,
482                    item_list_parameter
483       scroll_items_check nbr_items,
484                          "Collection_",
485                          item_list_parameter,
486                          'tr[data-kind="arvados#collection"]'
487     end
488   end
489
490   [
491     ['project_with_10_collections', 10],
492     ['project_with_201_collections', 201], # two pages of data
493   ].each do |project_name, nbr_items|
494     test "scroll collections tab for #{project_name} with #{nbr_items} objects with ascending sort (case insensitive)" do
495       item_list_parameter = "Data_collections"
496       scroll_setup project_name,
497                    nbr_items,
498                    item_list_parameter,
499                    true,
500                    "collections.name"
501       scroll_items_check nbr_items,
502                          "Collection_",
503                          item_list_parameter,
504                          'tr[data-kind="arvados#collection"]',
505                          true
506     end
507   end
508
509   [
510     ['project_with_10_pipelines', 10, 0],
511     ['project_with_2_pipelines_and_60_jobs', 2, 60],
512     ['project_with_25_pipelines', 25, 0],
513   ].each do |project_name, num_pipelines, num_jobs|
514     test "scroll pipeline instances tab for #{project_name} with #{num_pipelines} pipelines and #{num_jobs} jobs" do
515       item_list_parameter = "Jobs_and_pipelines"
516       scroll_setup project_name,
517                    num_pipelines + num_jobs,
518                    item_list_parameter
519       # check the general scrolling and the pipelines
520       scroll_items_check num_pipelines,
521                          "pipeline_",
522                          item_list_parameter,
523                          'tr[data-kind="arvados#pipelineInstance"]'
524       # Check job count separately
525       jobs_found = page.all('tr[data-kind="arvados#job"]')
526       found_job_count = jobs_found.count
527       assert_equal num_jobs, found_job_count, 'Did not find expected number of jobs'
528     end
529   end
530
531   test "error while loading tab" do
532     original_arvados_v1_base = Rails.configuration.arvados_v1_base
533
534     visit page_with_token 'active', '/projects/' + api_fixture('groups')['aproject']['uuid']
535
536     # Point to a bad api server url to generate error
537     Rails.configuration.arvados_v1_base = "https://[::1]:1/"
538     click_link 'Other objects'
539     within '#Other_objects' do
540       # Error
541       assert_selector('a', text: 'Reload tab')
542
543       # Now point back to the orig api server and reload tab
544       Rails.configuration.arvados_v1_base = original_arvados_v1_base
545       click_link 'Reload tab'
546       assert_no_selector('a', text: 'Reload tab')
547       assert_selector('button', text: 'Selection')
548       within '.selection-action-container' do
549         assert_selector 'tr[data-kind="arvados#trait"]'
550       end
551     end
552   end
553
554   test "add new project using projects dropdown" do
555     # verify that selection options are disabled on the project until an item is selected
556     visit page_with_token 'active', '/'
557
558     # Add a new project
559     find("#projects-menu").click
560     click_link 'Add a new project'
561     assert_text 'New project'
562     assert_text 'No description provided'
563
564     # Add one more new project
565     find("#projects-menu").click
566     click_link 'Add a new project'
567     match = /New project \(\d\)/.match page.text
568     assert match, 'Expected project name not found'
569     assert_text 'No description provided'
570   end
571
572   test "first tab loads data when visiting other tab directly" do
573     # As of 2014-12-19, the first tab of project#show uses infinite scrolling.
574     # Make sure that it loads data even if we visit another tab directly.
575     need_selenium 'to land on specified tab using {url}#Advanced'
576     user = api_fixture("users", "active")
577     visit(page_with_token("active_trustedclient",
578                           "/projects/#{user['uuid']}#Advanced"))
579     assert_text("API response")
580     find("#page-wrapper .nav-tabs :first-child a").click
581     assert_text("Collection modified at")
582   end
583
584   # "Select all" and "Unselect all" options
585   test "select all and unselect all actions" do
586     need_selenium 'to check and uncheck checkboxes'
587
588     visit page_with_token 'active', '/projects/' + api_fixture('groups')['aproject']['uuid']
589
590     # Go to "Data collections" tab and click on "Select all"
591     click_link 'Data collections'
592     wait_for_ajax
593
594     # Initially, all selection options for this tab should be disabled
595     click_button 'Selection'
596     within('.selection-action-container') do
597       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
598       assert_selector 'li.disabled', text: 'Copy selected'
599     end
600
601     # Select all
602     click_button 'Select all'
603
604     assert_checkboxes_state('input[type=checkbox]', true, '"select all" should check all checkboxes')
605
606     # Now the selection options should be enabled
607     click_button 'Selection'
608     within('.selection-action-container') do
609       assert_selector 'li', text: 'Create new collection with selected collections'
610       assert_no_selector 'li.disabled', text: 'Copy selected'
611       assert_selector 'li', text: 'Create new collection with selected collections'
612       assert_no_selector 'li.disabled', text: 'Copy selected'
613     end
614
615     # Go to Jobs and pipelines tab and assert none selected
616     click_link 'Jobs and pipelines'
617     wait_for_ajax
618
619     # Since this is the first visit to this tab, all selection options should be disabled
620     click_button 'Selection'
621     within('.selection-action-container') do
622       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
623       assert_selector 'li.disabled', text: 'Copy selected'
624     end
625
626     assert_checkboxes_state('input[type=checkbox]', false, '"select all" should check all checkboxes')
627
628     # Select all
629     click_button 'Select all'
630     assert_checkboxes_state('input[type=checkbox]', true, '"select all" should check all checkboxes')
631
632     # Applicable selection options should be enabled
633     click_button 'Selection'
634     within('.selection-action-container') do
635       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
636       assert_selector 'li', text: 'Copy selected'
637       assert_no_selector 'li.disabled', text: 'Copy selected'
638     end
639
640     # Unselect all
641     click_button 'Unselect all'
642     assert_checkboxes_state('input[type=checkbox]', false, '"select all" should check all checkboxes')
643
644     # All selection options should be disabled again
645     click_button 'Selection'
646     within('.selection-action-container') do
647       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
648       assert_selector 'li.disabled', text: 'Copy selected'
649     end
650
651     # Go back to Data collections tab and verify all are still selected
652     click_link 'Data collections'
653     wait_for_ajax
654
655     # Selection options should be enabled based on the fact that all collections are still selected in this tab
656     click_button 'Selection'
657     within('.selection-action-container') do
658       assert_selector 'li', text: 'Create new collection with selected collections'
659       assert_no_selector 'li.disabled', text: 'Copy selected'
660       assert_selector 'li', text: 'Create new collection with selected collections'
661       assert_no_selector 'li.disabled', text: 'Copy selected'
662     end
663
664     assert_checkboxes_state('input[type=checkbox]', true, '"select all" should check all checkboxes')
665
666     # Unselect all
667     find('button#unselect-all').click
668     assert_checkboxes_state('input[type=checkbox]', false, '"unselect all" should clear all checkboxes')
669
670     # Now all selection options should be disabled because none of the collections are checked
671     click_button 'Selection'
672     within('.selection-action-container') do
673       assert_selector 'li.disabled', text: 'Copy selected'
674       assert_selector 'li.disabled', text: 'Copy selected'
675     end
676
677     # Verify checking just one checkbox still works as expected
678     within('tr', text: api_fixture('collections')['collection_to_move_around_in_aproject']['name']) do
679       find('input[type=checkbox]').click
680     end
681
682     click_button 'Selection'
683     within('.selection-action-container') do
684       assert_selector 'li', text: 'Create new collection with selected collections'
685       assert_no_selector 'li.disabled', text: 'Copy selected'
686       assert_selector 'li', text: 'Create new collection with selected collections'
687       assert_no_selector 'li.disabled', text: 'Copy selected'
688     end
689   end
690
691   test "test search all projects menu item in projects menu" do
692      need_selenium
693      visit page_with_token('active')
694      find('#projects-menu').click
695      within('.dropdown-menu') do
696        assert_selector 'a', text: 'Search all projects'
697        find('a', text: 'Search all projects').click
698      end
699      within('.modal-content') do
700         assert page.has_text?('All projects'), 'No text - All projects'
701         assert page.has_text?('Search'), 'No text - Search'
702         assert page.has_text?('Cancel'), 'No text - Cancel'
703         fill_in "Search", with: 'Unrestricted public data'
704         wait_for_ajax
705         assert_selector 'div', text: 'Unrestricted public data'
706         find(:xpath, '//*[@id="choose-scroll"]/div[2]/div').click
707         click_button 'Show'
708      end
709      assert page.has_text?('Unrestricted public data'), 'No text - Unrestricted public data'
710      assert page.has_text?('An anonymously accessible project'), 'No text - An anonymously accessible project'
711   end
712 end