X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2bfc24e6eb5cbd51bbb2717cd70b02a25b008ae5..40b15b9523c1a89769c8df5bafa250075af0c567:/services/api/test/functional/arvados/v1/users_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/users_controller_test.rb b/services/api/test/functional/arvados/v1/users_controller_test.rb index fa4676b0eb..2d26370b74 100644 --- a/services/api/test/functional/arvados/v1/users_controller_test.rb +++ b/services/api/test/functional/arvados/v1/users_controller_test.rb @@ -1,6 +1,9 @@ require 'test_helper' +require 'helpers/users_test_helper' class Arvados::V1::UsersControllerTest < ActionController::TestCase + include CurrentApiClient + include UsersTestHelper setup do @all_links_at_start = Link.all @@ -9,10 +12,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase test "activate a user after signing UA" do authorize_with :inactive_but_signed_user_agreement - get :current - assert_response :success - me = JSON.parse(@response.body) - post :activate, uuid: me['uuid'] + post :activate, id: users(:inactive_but_signed_user_agreement).uuid assert_response :success assert_not_nil assigns(:object) me = JSON.parse(@response.body) @@ -20,35 +20,58 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase end test "refuse to activate a user before signing UA" do + act_as_system_user do + required_uuids = Link.where("owner_uuid = ? and link_class = ? and name = ? and tail_uuid = ? and head_uuid like ?", + system_user_uuid, + 'signature', + 'require', + system_user_uuid, + Collection.uuid_like_pattern). + collect(&:head_uuid) + + assert required_uuids.length > 0 + + signed_uuids = Link.where(owner_uuid: system_user_uuid, + link_class: 'signature', + name: 'click', + tail_uuid: users(:inactive).uuid, + head_uuid: required_uuids). + collect(&:head_uuid) + + assert_equal 0, signed_uuids.length + end + authorize_with :inactive - get :current - assert_response :success - me = JSON.parse(@response.body) - post :activate, uuid: me['uuid'] + assert_equal false, users(:inactive).is_active + + post :activate, id: users(:inactive).uuid assert_response 403 - get :current - assert_response :success - me = JSON.parse(@response.body) - assert_equal false, me['is_active'] + + resp = json_response + assert resp['errors'].first.include? 'Cannot activate without user agreements' + assert_nil resp['is_active'] end test "activate an already-active user" do authorize_with :active - get :current - assert_response :success - me = JSON.parse(@response.body) - post :activate, uuid: me['uuid'] + post :activate, id: users(:active).uuid assert_response :success me = JSON.parse(@response.body) assert_equal true, me['is_active'] end + test "respond 401 if given token exists but user record is missing" do + authorize_with :valid_token_deleted_user + get :current, {format: :json} + assert_response 401 + end + test "create new user with user as input" do authorize_with :admin post :create, user: { first_name: "test_first_name", last_name: "test_last_name", - email: "test@abc.com" + email: "foo@example.com" } assert_response :success created = JSON.parse(@response.body) @@ -66,38 +89,39 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase repo_name: repo_name, openid_prefix: 'https://www.google.com/accounts/o8/id', user: { - uuid: "this_is_agreeable", + uuid: 'zzzzz-tpzed-abcdefghijklmno', first_name: "in_create_test_first_name", last_name: "test_last_name", - email: "test@abc.com" + email: "foo@example.com" } } assert_response :success - response_items = JSON.parse(@response.body)['items'] - created = response_items['user'] + + created = find_obj_in_resp response_items, 'User', nil assert_equal 'in_create_test_first_name', created['first_name'] assert_not_nil created['uuid'], 'expected non-null uuid for the new user' - assert_equal 'this_is_agreeable', created['uuid'] + assert_equal 'zzzzz-tpzed-abcdefghijklmno', created['uuid'] assert_not_nil created['email'], 'expected non-nil email' - assert_nil created['identity_url'], 'expected no identity_url' + assert_nil created['identity_url'], 'expected no identity_url' - # since no such vm exists, expect only three new links: - # oid_login_perm, repo link and link add user to 'All users' group - verify_num_links @all_links_at_start, 3 + # arvados#user, repo link and link add user to 'All users' group + verify_num_links @all_links_at_start, 4 - verify_link response_items, 'oid_login_perm', true, 'permission', 'can_login', + verify_link response_items, 'arvados#user', true, 'permission', 'can_login', created['uuid'], created['email'], 'arvados#user', false, 'User' - verify_link response_items, 'repo_perm', true, 'permission', 'can_write', + verify_link response_items, 'arvados#repository', true, 'permission', 'can_manage', repo_name, created['uuid'], 'arvados#repository', true, 'Repository' - verify_link response_items, 'group_perm', true, 'permission', 'can_read', + verify_link response_items, 'arvados#group', true, 'permission', 'can_read', 'All users', created['uuid'], 'arvados#group', true, 'Group' - verify_link response_items, 'vm_login_perm', false, 'permission', 'can_login', + verify_link response_items, 'arvados#virtualMachine', false, 'permission', 'can_login', nil, created['uuid'], 'arvados#virtualMachine', false, 'VirtualMachine' + + verify_system_group_permission_link_for created['uuid'] end test "setup user with bogus uuid and expect error" do @@ -106,8 +130,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase post :setup, { uuid: 'bogus_uuid', repo_name: 'test_repo', - vm_uuid: @vm_uuid, - openid_prefix: 'https://www.google.com/accounts/o8/id' + vm_uuid: @vm_uuid } response_body = JSON.parse(@response.body) response_errors = response_body['errors'] @@ -127,7 +150,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase response_body = JSON.parse(@response.body) response_errors = response_body['errors'] assert_not_nil response_errors, 'Expected error in response' - assert (response_errors.first.include? 'RuntimeError: No email found'), + assert (response_errors.first.include? 'ArgumentError: Require user email'), 'Expected RuntimeError' end @@ -135,7 +158,6 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase authorize_with :admin post :setup, { - #uuid: 'not_an_existing_uuid_and_not_email_format', repo_name: 'test_repo', vm_uuid: @vm_uuid, openid_prefix: 'https://www.google.com/accounts/o8/id' @@ -143,7 +165,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase response_body = JSON.parse(@response.body) response_errors = response_body['errors'] assert_not_nil response_errors, 'Expected error in response' - assert (response_errors.first.include? 'Required uuid or email'), + assert (response_errors.first.include? 'Required uuid or user'), 'Expected ArgumentError' end @@ -159,50 +181,41 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase response_body = JSON.parse(@response.body) response_errors = response_body['errors'] assert_not_nil response_errors, 'Expected error in response' - assert (response_errors.first.include? ' {'organization' => 'example.com'}} + } + } + assert_response :success + + found_email = false + ActionMailer::Base.deliveries.andand.each do |email| + if email.subject == "Profile created by #{users(:active_no_prefs).email}" + found_email = true + break + end + end + assert_equal true, found_email, 'Expected email after creating profile' + end + + test "update active_no_prefs_profile user profile and expect notification email" do + authorize_with :admin + + user = {} + user[:prefs] = users(:active_no_prefs_profile).prefs + user[:prefs][:profile] = {:profile => {'organization' => 'example.com'}} + put :update, { + id: users(:active_no_prefs_profile).uuid, + user: user + } + assert_response :success + + found_email = false + ActionMailer::Base.deliveries.andand.each do |email| + if email.subject == "Profile created by #{users(:active_no_prefs_profile).email}" + found_email = true + break + end + end + assert_equal true, found_email, 'Expected email after creating profile' + end + + test "update active user profile and expect no notification email" do + authorize_with :admin + + put :update, { + id: users(:active).uuid, + user: { + prefs: {:profile => {'organization' => 'anotherexample.com'}} + } + } + assert_response :success + + found_email = false + ActionMailer::Base.deliveries.andand.each do |email| + if email.subject == "Profile created by #{users(:active).email}" + found_email = true + break + end end + assert_equal false, found_email, 'Expected no email after updating profile' + end - assert_equal link['link_class'], link_class, - "did not find expected link_class for #{link_object_name}" - - assert_equal link['name'], link_name, - "did not find expected link_name for #{link_object_name}" - - assert_equal link['tail_uuid'], tail_uuid, - "did not find expected tail_uuid for #{link_object_name}" - - assert_equal link['head_kind'], head_kind, - "did not find expected head_kind for #{link_object_name}" - - assert_equal link['head_uuid'], head_uuid, - "did not find expected head_uuid for #{link_object_name}" + test "user API response includes writable_by" do + authorize_with :active + get :current + assert_response :success + assert_includes(json_response["writable_by"], users(:active).uuid, + "user's writable_by should include self") + assert_includes(json_response["writable_by"], users(:active).owner_uuid, + "user's writable_by should include its owner_uuid") end + + NON_ADMIN_USER_DATA = ["uuid", "kind", "is_active", "email", "first_name", + "last_name"].sort + + def check_non_admin_index + assert_response :success + response_items = json_response["items"] + assert_not_nil response_items + response_items.each do |user_data| + check_non_admin_item user_data + assert(user_data["is_active"], "non-admin index returned inactive user") + end + end + + def check_non_admin_show + assert_response :success + check_non_admin_item json_response + end + + def check_non_admin_item user_data + assert_equal(NON_ADMIN_USER_DATA, user_data.keys.sort, + "data in response had missing or extra attributes") + assert_equal("arvados#user", user_data["kind"]) + end + + + def check_readable_users_index expect_present, expect_missing + response_uuids = json_response["items"].map { |u| u["uuid"] } + expect_present.each do |user_key| + assert_includes(response_uuids, users(user_key).uuid, + "#{user_key} missing from index") + end + expect_missing.each do |user_key| + refute_includes(response_uuids, users(user_key).uuid, + "#{user_key} included in index") + end + end + + def check_inactive_user_findable(params={}) + inactive_user = users(:inactive) + get(:index, params.merge(filters: [["email", "=", inactive_user.email]])) + assert_response :success + user_list = json_response["items"] + assert_equal(1, user_list.andand.count) + # This test needs to check a column non-admins have no access to, + # to ensure that admins see all user information. + assert_equal(inactive_user.identity_url, user_list.first["identity_url"], + "admin's filtered index did not return inactive user") + end + + def verify_num_links (original_links, expected_additional_links) + links_now = Link.all + assert_equal expected_additional_links, Link.all.size-original_links.size, + "Expected #{expected_additional_links.inspect} more links" + end + + def find_obj_in_resp (response_items, object_type, head_kind=nil) + return_obj = nil + response_items + response_items.each { |x| + if !x + next + end + + if object_type == 'User' + if ArvadosModel::resource_class_for_uuid(x['uuid']) == User + return_obj = x + break + end + else # looking for a link + if x['head_uuid'] and ArvadosModel::resource_class_for_uuid(x['head_uuid']).kind == head_kind + return_obj = x + break + end + end + } + return return_obj + end end