X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cc5023d40182e503e8ba109fc86e09efd6337836..ab371a54c3522c06fbc82c9838a24c6f53122a6e:/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 5f1a3f0225..cdbc79bf81 100644 --- a/services/api/test/functional/arvados/v1/users_controller_test.rb +++ b/services/api/test/functional/arvados/v1/users_controller_test.rb @@ -13,7 +13,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase get :current assert_response :success me = JSON.parse(@response.body) - post :activate, uuid: me['uuid'] + post :activate, id: me['uuid'] assert_response :success assert_not_nil assigns(:object) me = JSON.parse(@response.body) @@ -21,12 +21,37 @@ 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, me['is_active'] + + post :activate, id: me['uuid'] assert_response 403 + get :current assert_response :success me = JSON.parse(@response.body) @@ -38,12 +63,18 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase get :current assert_response :success me = JSON.parse(@response.body) - post :activate, uuid: me['uuid'] + post :activate, id: me['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: { @@ -113,6 +144,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase email: "foo@example.com" } } + assert_response :success response_items = JSON.parse(@response.body)['items'] @@ -410,8 +442,11 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase 'expected same uuid as first create operation' assert_equal response_object['email'], 'foo@example.com', 'expected given email' - # +1 extra login link +1 extra system_group link pointing to the new User - verify_num_links @all_links_at_start, 6 + # +1 extra can_read 'all users' group link + # +1 extra system_group can_manage link pointing to the new User + # +1 extra can_login permission link + # no repo link, no vm link + verify_num_links @all_links_at_start, 7 end test "setup user with openid prefix" do @@ -663,7 +698,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase verify_link_existence created['uuid'], created['email'], true, true, true, true, false # now unsetup this user - post :unsetup, uuid: created['uuid'] + post :unsetup, id: created['uuid'] assert_response :success created2 = JSON.parse(@response.body) @@ -683,12 +718,12 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase assert active_user['is_invited'], 'expected is_invited for active user' verify_link_existence active_user['uuid'], active_user['email'], - false, false, false, true, true + false, true, false, true, true authorize_with :admin # now unsetup this user - post :unsetup, uuid: active_user['uuid'] + post :unsetup, id: active_user['uuid'] assert_response :success response_user = JSON.parse(@response.body) @@ -701,6 +736,158 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase false, false, false, false, false end + test "setup user with send notification param false and verify no email" do + authorize_with :admin + + post :setup, { + openid_prefix: 'http://www.example.com/account', + send_notification_email: 'false', + user: { + email: "foo@example.com" + } + } + + assert_response :success + response_items = JSON.parse(@response.body)['items'] + created = find_obj_in_resp response_items, 'User', nil + assert_not_nil created['uuid'], 'expected uuid for the new user' + assert_equal created['email'], 'foo@example.com', 'expected given email' + + setup_email = ActionMailer::Base.deliveries.last + assert_nil setup_email, 'expected no setup email' + end + + test "setup user with send notification param true and verify email" do + authorize_with :admin + + post :setup, { + openid_prefix: 'http://www.example.com/account', + send_notification_email: 'true', + user: { + email: "foo@example.com" + } + } + + assert_response :success + response_items = JSON.parse(@response.body)['items'] + created = find_obj_in_resp response_items, 'User', nil + assert_not_nil created['uuid'], 'expected uuid for the new user' + assert_equal created['email'], 'foo@example.com', 'expected given email' + + setup_email = ActionMailer::Base.deliveries.last + assert_not_nil setup_email, 'Expected email after setup' + + assert_equal Rails.configuration.user_notifier_email_from, setup_email.from[0] + assert_equal 'foo@example.com', setup_email.to[0] + assert_equal 'Welcome to Curoverse', setup_email.subject + assert (setup_email.body.to_s.include? 'Your Arvados account has been set up'), + 'Expected Your Arvados account has been set up in email body' + assert (setup_email.body.to_s.include? 'foo@example.com'), + 'Expected user email in email body' + assert (setup_email.body.to_s.include? Rails.configuration.workbench_address), + 'Expected workbench url in email body' + end + + test "non-admin user can get basic information about active users" do + authorize_with :spectator + get(:index) + check_non_admin_index + check_active_users_index + end + + test "non-admin user can limit index" do + authorize_with :spectator + get(:index, limit: 2) + check_non_admin_index + assert_equal(2, json_response["items"].size, + "non-admin index limit was ineffective") + end + + test "filters are ignored for non-admin index" do + check_index_condition_fails(:spectator, + filters: [["last_name", "=", "__nonexistent__"]]) + end + + test "where is ignored for non-admin index" do + check_index_condition_fails(:spectator, + where: {last_name: "__nonexistent__"}) + end + + test "group admin is treated like non-admin for index" do + check_index_condition_fails(:rominiadmin, + filters: [["last_name", "=", "__nonexistent__"]]) + end + + test "admin has full index powers" do + authorize_with :admin + check_inactive_user_findable + end + + test "reader token can grant admin index powers" do + authorize_with :spectator + check_inactive_user_findable(reader_tokens: [api_token(:admin)]) + end + + test "admin can filter on user.is_active" do + authorize_with :admin + get(:index, filters: [["is_active", "=", "true"]]) + assert_response :success + check_active_users_index + end + + test "admin can search where user.is_active" do + authorize_with :admin + get(:index, where: {is_active: true}) + assert_response :success + check_active_users_index + 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| + assert_equal(NON_ADMIN_USER_DATA, user_data.keys.sort, + "data in all users response did not match expectations") + assert_equal("arvados#user", user_data["kind"]) + assert(user_data["is_active"], "non-admin index returned inactive user") + end + end + + def check_active_users_index + response_uuids = json_response["items"].map { |u| u["uuid"] } + [:admin, :miniadmin, :active, :spectator].each do |user_key| + assert_includes(response_uuids, users(user_key).uuid, + "#{user_key} missing from index") + end + refute_includes(response_uuids, users(:inactive).uuid, + "inactive user included in index") + end + + def check_index_condition_fails(user_sym, params) + authorize_with user_sym + get(:index, params) + check_non_admin_index + assert(json_response["items"] + .any? { |u| u["last_name"] != "__nonexistent__" }, + "#{params.inspect} successfully applied to non-admin index") + 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, @@ -709,6 +896,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase def find_obj_in_resp (response_items, object_type, head_kind=nil) return_obj = nil + response_items response_items.each { |x| if !x next