X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a7824d56a519db6d729323ca56e653db7e895f3c..a3222e35cda68c8e48a17921c33ac37ecb5c3bac:/apps/workbench/test/integration/projects_test.rb diff --git a/apps/workbench/test/integration/projects_test.rb b/apps/workbench/test/integration/projects_test.rb index bdd13c0600..b2c9d772d1 100644 --- a/apps/workbench/test/integration/projects_test.rb +++ b/apps/workbench/test/integration/projects_test.rb @@ -30,18 +30,20 @@ class ProjectsTest < ActionDispatch::IntegrationTest specimen_uuid = api_fixture('specimens')['owned_by_aproject_with_no_name_link']['uuid'] visit page_with_token 'active', '/projects/' + project_uuid click_link 'Other objects' - within(".selection-action-container") do - within (first('tr', text: 'Specimen')) do + within '.selection-action-container' do + # Wait for the tab to load: + assert_selector 'tr[data-kind="arvados#specimen"]' + within first('tr', text: 'Specimen') do find(".fa-pencil").click find('.editable-input input').set('Now I have a name.') find('.glyphicon-ok').click - find('.editable', text: 'Now I have a name.').click + assert_selector '.editable', text: 'Now I have a name.' find(".fa-pencil").click find('.editable-input input').set('Now I have a new name.') find('.glyphicon-ok').click - end + end wait_for_ajax - find('.editable', text: 'Now I have a new name.') + assert_selector '.editable', text: 'Now I have a new name.' end visit current_path click_link 'Other objects' @@ -77,13 +79,102 @@ class ProjectsTest < ActionDispatch::IntegrationTest find('.modal-footer a,button', text: 'Move').click wait_for_ajax - # Wait for the page to refresh and show the new parent in Permissions panel - click_link 'Permissions' - find('.panel', text: 'Project 1234') - - assert(find('.panel', text: 'Permissions for this project are inherited by the owner or parent project'). - all('*', text: 'Project 1234').any?, + # Wait for the page to refresh and show the new parent in Sharing panel + click_link 'Sharing' + assert(page.has_link?("Project 1234"), "Project 5678 should now be inside project 1234") end + def show_project_using(auth_key, proj_key='aproject') + project_uuid = api_fixture('groups')[proj_key]['uuid'] + visit(page_with_token(auth_key, "/projects/#{project_uuid}")) + assert(page.has_text?("A Project"), "not on expected project page") + end + + def share_rows + find('#project_sharing').all('tr') + end + + def add_share_and_check(share_type, name) + assert(page.has_no_text?(name), "project is already shared with #{name}") + start_share_count = share_rows.size + click_on("Share with #{share_type}") + within(".modal-container") do + # Order is important here: we should find something that appears in the + # modal before we make any assertions about what's not in the modal. + # Otherwise, the not-included assertions might falsely pass because + # the modal hasn't loaded yet. + find(".selectable", text: name).click + assert(has_no_selector?(".modal-dialog-preview-pane"), + "preview pane available in sharing dialog") + assert_raises(Capybara::ElementNotFound, + "Projects pulldown available from sharing dialog") do + click_on "All projects" + end + click_on "Add" + end + using_wait_time(Capybara.default_wait_time * 3) do + assert(page.has_link?(name), + "new share was not added to sharing table") + assert_equal(start_share_count + 1, share_rows.size, + "new share did not add row to sharing table") + end + end + + def modify_share_and_check(name) + start_rows = share_rows + link_row = start_rows.select { |row| row.has_text?(name) } + assert_equal(1, link_row.size, "row with new permission not found") + within(link_row.first) do + click_on("Read") + select("Write", from: "share_change_level") + click_on("editable-submit") + assert(has_link?("Write"), + "failed to change access level on new share") + click_on "Revoke" + end + using_wait_time(Capybara.default_wait_time * 3) do + assert(page.has_no_text?(name), + "new share row still exists after being revoked") + assert_equal(start_rows.size - 1, share_rows.size, + "revoking share did not remove row from sharing table") + end + end + + test "project viewer can't see project sharing tab" do + show_project_using("project_viewer") + assert(page.has_no_link?("Sharing"), + "read-only project user sees sharing tab") + end + + test "project owner can manage sharing for another user" do + add_user = api_fixture('users')['future_project_user'] + new_name = ["first_name", "last_name"].map { |k| add_user[k] }.join(" ") + + show_project_using("active") + click_on "Sharing" + add_share_and_check("users", new_name) + modify_share_and_check(new_name) + end + + test "project owner can manage sharing for another group" do + new_name = api_fixture('groups')['future_project_viewing_group']['name'] + + show_project_using("active") + click_on "Sharing" + add_share_and_check("groups", new_name) + modify_share_and_check(new_name) + end + + test "'share with group' listing does not offer projects" do + show_project_using("active") + click_on "Sharing" + click_on "Share with groups" + good_uuid = api_fixture("groups")["private"]["uuid"] + assert(page.has_selector?(".selectable[data-object-uuid=\"#{good_uuid}\"]"), + "'share with groups' listing missing owned user group") + bad_uuid = api_fixture("groups")["asubproject"]["uuid"] + assert(page.has_no_selector?(".selectable[data-object-uuid=\"#{bad_uuid}\"]"), + "'share with groups' listing includes project") + end end