Merge branch 'crunch-dispatch-docker-bin-env' of https://github.com/wtsi-hgi/arvados...
[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, '/'
386       find("#projects-menu").click
387       find(".dropdown-menu a", text: my_project['name']).click
388       click_link 'Data collections'
389       assert page.has_text?(my_collection['name']), 'Collection not found in project'
390
391       within('tr', text: my_collection['name']) do
392         find('input[type=checkbox]').click
393       end
394
395       click_button 'Selection'
396       within('.selection-action-container') do
397         click_link 'Create new collection with selected collections'
398       end
399
400       # now in the new collection page
401       if expect_collection_in_aproject
402         assert page.has_text?("Created new collection in the project #{my_project['name']}"),
403                               'Not found flash message that new collection is created in aproject'
404       else
405         assert page.has_text?("Created new collection in your Home project"),
406                               'Not found flash message that new collection is created in Home project'
407       end
408     end
409   end
410
411   def scroll_setup(project_name,
412                    total_nbr_items,
413                    item_list_parameter,
414                    sorted = false,
415                    sort_parameters = nil)
416     project_uuid = api_fixture('groups')[project_name]['uuid']
417     visit page_with_token 'user1_with_load', '/projects/' + project_uuid
418
419     assert(page.has_text?("#{item_list_parameter.humanize} (#{total_nbr_items})"), "Number of #{item_list_parameter.humanize} did not match the input amount")
420
421     click_link item_list_parameter.humanize
422     wait_for_ajax
423
424     if sorted
425       find("th[data-sort-order='#{sort_parameters.gsub(/\s/,'')}']").click
426       wait_for_ajax
427     end
428   end
429
430   def scroll_items_check(nbr_items,
431                          fixture_prefix,
432                          item_list_parameter,
433                          item_selector,
434                          sorted = false)
435     items = []
436     for i in 1..nbr_items
437       items << "#{fixture_prefix}#{i}"
438     end
439
440     verify_items = items.dup
441     unexpected_items = []
442     item_count = 0
443     within(".arv-project-#{item_list_parameter}") do
444       page.execute_script "window.scrollBy(0,999000)"
445       begin
446         wait_for_ajax
447       rescue
448       end
449
450       # Visit all rows. If not all expected items are found, retry
451       found_items = page.all(item_selector)
452       item_count = found_items.count
453
454       previous = nil
455       (0..item_count-1).each do |i|
456         # Found row text using the fixture string e.g. "Show Collection_#{n} "
457         item_name = found_items[i].text.split[1]
458         if !items.include? item_name
459           unexpected_items << item_name
460         else
461           verify_items.delete item_name
462         end
463         if sorted
464           # check sort order
465           assert_operator( previous.downcase, :<=, item_name.downcase) if previous
466           previous = item_name
467         end
468       end
469
470       assert_equal true, unexpected_items.empty?, "Found unexpected #{item_list_parameter.humanize} #{unexpected_items.inspect}"
471       assert_equal nbr_items, item_count, "Found different number of #{item_list_parameter.humanize}"
472       assert_equal true, verify_items.empty?, "Did not find all the #{item_list_parameter.humanize}"
473     end
474   end
475
476   [
477     ['project_with_10_collections', 10],
478     ['project_with_201_collections', 201], # two pages of data
479   ].each do |project_name, nbr_items|
480     test "scroll collections tab for #{project_name} with #{nbr_items} objects" do
481       item_list_parameter = "Data_collections"
482       scroll_setup project_name,
483                    nbr_items,
484                    item_list_parameter
485       scroll_items_check nbr_items,
486                          "Collection_",
487                          item_list_parameter,
488                          'tr[data-kind="arvados#collection"]'
489     end
490   end
491
492   [
493     ['project_with_10_collections', 10],
494     ['project_with_201_collections', 201], # two pages of data
495   ].each do |project_name, nbr_items|
496     test "scroll collections tab for #{project_name} with #{nbr_items} objects with ascending sort (case insensitive)" do
497       item_list_parameter = "Data_collections"
498       scroll_setup project_name,
499                    nbr_items,
500                    item_list_parameter,
501                    true,
502                    "collections.name"
503       scroll_items_check nbr_items,
504                          "Collection_",
505                          item_list_parameter,
506                          'tr[data-kind="arvados#collection"]',
507                          true
508     end
509   end
510
511   [
512     ['project_with_10_pipelines', 10, 0],
513     ['project_with_2_pipelines_and_60_jobs', 2, 60],
514     ['project_with_25_pipelines', 25, 0],
515   ].each do |project_name, num_pipelines, num_jobs|
516     test "scroll pipeline instances tab for #{project_name} with #{num_pipelines} pipelines and #{num_jobs} jobs" do
517       item_list_parameter = "Jobs_and_pipelines"
518       scroll_setup project_name,
519                    num_pipelines + num_jobs,
520                    item_list_parameter
521       # check the general scrolling and the pipelines
522       scroll_items_check num_pipelines,
523                          "pipeline_",
524                          item_list_parameter,
525                          'tr[data-kind="arvados#pipelineInstance"]'
526       # Check job count separately
527       jobs_found = page.all('tr[data-kind="arvados#job"]')
528       found_job_count = jobs_found.count
529       assert_equal num_jobs, found_job_count, 'Did not find expected number of jobs'
530     end
531   end
532
533   test "error while loading tab" do
534     original_arvados_v1_base = Rails.configuration.arvados_v1_base
535
536     visit page_with_token 'active', '/projects/' + api_fixture('groups')['aproject']['uuid']
537
538     # Point to a bad api server url to generate error
539     Rails.configuration.arvados_v1_base = "https://[::1]:1/"
540     click_link 'Other objects'
541     within '#Other_objects' do
542       # Error
543       assert_selector('a', text: 'Reload tab')
544
545       # Now point back to the orig api server and reload tab
546       Rails.configuration.arvados_v1_base = original_arvados_v1_base
547       click_link 'Reload tab'
548       assert_no_selector('a', text: 'Reload tab')
549       assert_selector('button', text: 'Selection')
550       within '.selection-action-container' do
551         assert_selector 'tr[data-kind="arvados#trait"]'
552       end
553     end
554   end
555
556   test "add new project using projects dropdown" do
557     # verify that selection options are disabled on the project until an item is selected
558     visit page_with_token 'active', '/'
559
560     # Add a new project
561     find("#projects-menu").click
562     click_link 'Add a new project'
563     assert_text 'New project'
564     assert_text 'No description provided'
565
566     # Add one more new project
567     find("#projects-menu").click
568     click_link 'Add a new project'
569     match = /New project \(\d\)/.match page.text
570     assert match, 'Expected project name not found'
571     assert_text 'No description provided'
572   end
573
574   test "first tab loads data when visiting other tab directly" do
575     # As of 2014-12-19, the first tab of project#show uses infinite scrolling.
576     # Make sure that it loads data even if we visit another tab directly.
577     need_selenium 'to land on specified tab using {url}#Advanced'
578     user = api_fixture("users", "active")
579     visit(page_with_token("active_trustedclient",
580                           "/projects/#{user['uuid']}#Advanced"))
581     assert_text("API response")
582     find("#page-wrapper .nav-tabs :first-child a").click
583     assert_text("Collection modified at")
584   end
585
586   # "Select all" and "Unselect all" options
587   test "select all and unselect all actions" do
588     need_selenium 'to check and uncheck checkboxes'
589
590     visit page_with_token 'active', '/projects/' + api_fixture('groups')['aproject']['uuid']
591
592     # Go to "Data collections" tab and click on "Select all"
593     click_link 'Data collections'
594     wait_for_ajax
595
596     # Initially, all selection options for this tab should be disabled
597     click_button 'Selection'
598     within('.selection-action-container') do
599       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
600       assert_selector 'li.disabled', text: 'Copy selected'
601     end
602
603     # Select all
604     click_button 'Select all'
605
606     assert_checkboxes_state('input[type=checkbox]', true, '"select all" should check all checkboxes')
607
608     # Now the selection options should be enabled
609     click_button 'Selection'
610     within('.selection-action-container') do
611       assert_selector 'li', text: 'Create new collection with selected collections'
612       assert_no_selector 'li.disabled', text: 'Copy selected'
613       assert_selector 'li', text: 'Create new collection with selected collections'
614       assert_no_selector 'li.disabled', text: 'Copy selected'
615     end
616
617     # Go to Jobs and pipelines tab and assert none selected
618     click_link 'Jobs and pipelines'
619     wait_for_ajax
620
621     # Since this is the first visit to this tab, all selection options should be disabled
622     click_button 'Selection'
623     within('.selection-action-container') do
624       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
625       assert_selector 'li.disabled', text: 'Copy selected'
626     end
627
628     assert_checkboxes_state('input[type=checkbox]', false, '"select all" should check all checkboxes')
629
630     # Select all
631     click_button 'Select all'
632     assert_checkboxes_state('input[type=checkbox]', true, '"select all" should check all checkboxes')
633
634     # Applicable selection options should be enabled
635     click_button 'Selection'
636     within('.selection-action-container') do
637       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
638       assert_selector 'li', text: 'Copy selected'
639       assert_no_selector 'li.disabled', text: 'Copy selected'
640     end
641
642     # Unselect all
643     click_button 'Unselect all'
644     assert_checkboxes_state('input[type=checkbox]', false, '"select all" should check all checkboxes')
645
646     # All selection options should be disabled again
647     click_button 'Selection'
648     within('.selection-action-container') do
649       assert_selector 'li.disabled', text: 'Create new collection with selected collections'
650       assert_selector 'li.disabled', text: 'Copy selected'
651     end
652
653     # Go back to Data collections tab and verify all are still selected
654     click_link 'Data collections'
655     wait_for_ajax
656
657     # Selection options should be enabled based on the fact that all collections are still selected in this tab
658     click_button 'Selection'
659     within('.selection-action-container') do
660       assert_selector 'li', text: 'Create new collection with selected collections'
661       assert_no_selector 'li.disabled', text: 'Copy selected'
662       assert_selector 'li', text: 'Create new collection with selected collections'
663       assert_no_selector 'li.disabled', text: 'Copy selected'
664     end
665
666     assert_checkboxes_state('input[type=checkbox]', true, '"select all" should check all checkboxes')
667
668     # Unselect all
669     find('button#unselect-all').click
670     assert_checkboxes_state('input[type=checkbox]', false, '"unselect all" should clear all checkboxes')
671
672     # Now all selection options should be disabled because none of the collections are checked
673     click_button 'Selection'
674     within('.selection-action-container') do
675       assert_selector 'li.disabled', text: 'Copy selected'
676       assert_selector 'li.disabled', text: 'Copy selected'
677     end
678
679     # Verify checking just one checkbox still works as expected
680     within('tr', text: api_fixture('collections')['collection_to_move_around_in_aproject']['name']) do
681       find('input[type=checkbox]').click
682     end
683
684     click_button 'Selection'
685     within('.selection-action-container') do
686       assert_selector 'li', text: 'Create new collection with selected collections'
687       assert_no_selector 'li.disabled', text: 'Copy selected'
688       assert_selector 'li', text: 'Create new collection with selected collections'
689       assert_no_selector 'li.disabled', text: 'Copy selected'
690     end
691   end
692 end