X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/78b4e097593088a9c3614bf922a13e7eb454ea06..b8148b3bcdfc6fe8a8b20e6a4c589b7a50e147a8:/services/api/test/unit/user_test.rb diff --git a/services/api/test/unit/user_test.rb b/services/api/test/unit/user_test.rb index c0a8cd87d1..9bcb0116fb 100644 --- a/services/api/test/unit/user_test.rb +++ b/services/api/test/unit/user_test.rb @@ -9,6 +9,82 @@ class UserTest < ActiveSupport::TestCase system_user end + [[false, 'foo@example.com', true, nil], + [false, 'bar@example.com', nil, true], + [true, 'foo@example.com', true, nil], + [true, 'bar@example.com', true, true], + [false, false, nil, nil], + [true, false, true, nil] + ].each do |auto_admin_first_user_config, auto_admin_user_config, foo_should_be_admin, bar_should_be_admin| + # In each case, 'foo' is created first, then 'bar', then 'bar2', then 'baz'. + test "auto admin with auto_admin_first=#{auto_admin_first_user_config} auto_admin=#{auto_admin_user_config}" do + + if auto_admin_first_user_config + # This test requires no admin users exist (except for the system user) + users(:admin).delete + @all_users = User.where("uuid not like '%-000000000000000'").where(:is_admin => true).find(:all) + assert_equal 0, @all_users.size, "No admin users should exist (except for the system user)" + end + + Rails.configuration.auto_admin_first_user = auto_admin_first_user_config + Rails.configuration.auto_admin_user = auto_admin_user_config + + # See if the foo user has is_admin + foo = User.new + foo.first_name = 'foo' + foo.email = 'foo@example.com' + + act_as_system_user do + foo.save! + end + + foo = User.find(foo.id) # get the user back + assert_equal foo_should_be_admin, foo.is_admin, "is_admin is wrong for user foo" + assert_equal 'foo', foo.first_name + + # See if the bar user has is_admin + bar = User.new + bar.first_name = 'bar' + bar.email = 'bar@example.com' + + act_as_system_user do + bar.save! + end + + bar = User.find(bar.id) # get the user back + assert_equal bar_should_be_admin, bar.is_admin, "is_admin is wrong for user bar" + assert_equal 'bar', bar.first_name + + # A subsequent user with the bar@example.com address should never be + # elevated to admin + bar2 = User.new + bar2.first_name = 'bar2' + bar2.email = 'bar@example.com' + + act_as_system_user do + bar2.save! + end + + bar2 = User.find(bar2.id) # get the user back + assert !bar2.is_admin, "is_admin is wrong for user bar2" + assert_equal 'bar2', bar2.first_name + + # An ordinary new user should not be elevated to admin + baz = User.new + baz.first_name = 'baz' + baz.email = 'baz@example.com' + + act_as_system_user do + baz.save! + end + + baz = User.find(baz.id) # get the user back + assert !baz.is_admin + assert_equal 'baz', baz.first_name + + end + end + test "check non-admin active user properties" do @active_user = users(:active) # get the active user assert !@active_user.is_admin, 'is_admin should not be set for a non-admin user' @@ -128,37 +204,74 @@ class UserTest < ActiveSupport::TestCase end [ - [false, 'active-notify@example.com', 'inactive-notify@example.com', 'inactive-none@example.com', false, false, true], - [false, 'active-notify@example.com', 'inactive-notify@example.com', 'inactive-vm@example.com', true, false, true], - [false, 'active-notify@example.com', 'inactive-notify@example.com', 'inactive-repo@example.com', false, true, true], - [false, 'active-notify@example.com', 'inactive-notify@example.com', 'inactive-both@example.com', true, true, true], - - [false, [], [], 'inactive-none-no-notifications@example.com', false, false, true], - [false, [], [], 'inactive-vm-no-notifications@example.com', true, false, true], - [false, [], [], 'inactive-repo-no-notifications@example.com', false, true, true], - [false, [], [], 'inactive-both-no-notifications@example.com', true, true, true], + [false, [], [], 'inactive-none@example.com', false, false, true], + [false, [], [], 'inactive-vm@example.com', true, false, true], + [false, [], [], 'inactive-repo@example.com', false, true, true], + [false, [], [], 'inactive-both@example.com', true, true, true], [true, 'active-notify@example.com', 'inactive-notify@example.com', 'active-none@example.com', false, false, true], [true, 'active-notify@example.com', 'inactive-notify@example.com', 'active-vm@example.com', true, false, true], [true, 'active-notify@example.com', 'inactive-notify@example.com', 'active-repo@example.com', false, true, true], [true, 'active-notify@example.com', 'inactive-notify@example.com', 'active-both@example.com', true, true, true], - [true, [], [], 'active-none-no-notifications@example.com', false, false, true], - [true, [], [], 'active-vm-no-notifications@example.com', true, false, true], - [true, [], [], 'active-notify-no-notifications@example.com', 'inactive-repo@example.com', false, true, true], - [true, [], [], 'active-both-no-notifications@example.com', true, true, true], - [false, [], [], nil, true, true, false], + [false, [], [], 'arvados', true, true, false], - [false, [], [], '@example.com', true, true, false], + [false, [], [], 'arvados', true, false, false], # blacklisted username + [false, [], [], 'arvados', false, false, true], # since we are not creating repo and vm login, this blacklisted name is not a problem + + [false, [], [], 'arvados@example.com', false, false, true], # since we are not creating repo and vm login, this blacklisted name is not a problem + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'arvados@example.com', false, false, true], # since we are not creating repo and vm login, this blacklisted name is not a problem + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'root@example.com', true, false, false], # blacklisted name + [false, 'active-notify@example.com', 'inactive-notify@example.com', 'root@example.com', true, false, false], # blacklisted name + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'roo_t@example.com', false, true, true], # not blacklisted name + + [false, [], [], '@example.com', true, false, false], # incorrect format + [false, [], [], '@example.com', false, true, false], + [false, [], [], '@example.com', false, false, true], # no repo and vm login, so no issue with email format + [false, [], [], '^^incorrect_format@example.com', true, true, false], -# [false, 'active-notify@example.com', 'inactive-notify@example.com', 'repeat_username@example.com', true, true, true], -# [false, 'active-notify@example.com', 'inactive-notify@example.com', 'repeat_username@example.com', true, false, true], -# [false, 'active-notify@example.com', 'inactive-notify@example.com', 'with existing repo name', true, false, true], -# [false, 'active-notify@example.com', 'inactive-notify@example.com', 'with existing vm login name', true, false, true], - ].each do |active, active_recipients, inactive_recipients, email, auto_setup_vm, auto_setup_repo, valid_email_format| - test "create new user with auto setup #{email} #{auto_setup_vm} #{auto_setup_repo}" do + [false, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_repo@example.com', true, true, true], # existing repository name 'auto_setup_repo' + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_repo@example.com', true, false, true], # existing repository name 'auto_setup_repo' + [false, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_repo@example.com', false, true, true], # existing repository name 'auto_setup_repo' + [false, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_repo@example.com', false, false, true], # existing repository name 'auto_setup_repo', but we are not creating repo or login link + + [false, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_vm_login@example.com', true, true, true], # existing vm login name + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_vm_login@example.com', true, false, true], # existing vm login name + [false, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_vm_login@example.com', false, true, true], # existing vm login name + [false, 'active-notify@example.com', 'inactive-notify@example.com', 'auto_setup_vm_login@example.com', false, false, true], # existing vm login name, but we are not creating repo or login link + + [true, 'active-notify@example.com', 'inactive-notify@example.com', '*!*@example.com', true, false, false], # username is invalid format + [false, 'active-notify@example.com', 'inactive-notify@example.com', '*!*@example.com', false, false, true], # since no repo and vm login, username is ok (not validated) + [true, 'active-notify@example.com', 'inactive-notify@example.com', '*!*@example.com', false, false, true], # since no repo and vm login, username is ok (not validated) + + [true, 'active-notify@example.com', 'inactive-notify@example.com', '&4ad@example.com', true, true, false], # username is invalid format + [true, 'active-notify@example.com', 'inactive-notify@example.com', '&4ad@example.com', false, false, true], # no repo or vm login, so format not checked + [false, 'active-notify@example.com', 'inactive-notify@example.com', '&4ad@example.com', true, true, false], # username is invalid format + [false, 'active-notify@example.com', 'inactive-notify@example.com', '&4ad@example.com', false, false, true], # no repo or vm login, so format not checked + + [true, 'active-notify@example.com', 'inactive-notify@example.com', '4ad@example.com', true, true, false], # username is invalid format + [true, 'active-notify@example.com', 'inactive-notify@example.com', '4ad@example.com', false, false, true], # no repo or vm login, so format not checked + [false, 'active-notify@example.com', 'inactive-notify@example.com', '4ad@example.com', false, false, true], # no repo or vm login, so format not checked + + [true, 'active-notify@example.com', 'inactive-notify@example.com', '.foo@example.com', false, false, true], # no repo or vm login, so format not checked + [true, 'active-notify@example.com', 'inactive-notify@example.com', '.foo@example.com', true, false, false], # invalid format + + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'bar.@example.com', false, false, true], # no repo or vm login, so format not checked + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'bar.@example.com', true, false, false], # valid format + + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'ice9@example.com', false, false, true], # no repo or vm login, so format not checked + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'ice9@example.com', true, false, true], # valid format + + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'o_o@example.com', false, false, true], # no repo or vm login, so format not checked + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'o_o@example.com', true, false, true], # valid format + + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'r00t@example.com', false, false, true], # no repo or vm login, so format not checked + [true, 'active-notify@example.com', 'inactive-notify@example.com', 'r00t@example.com', true, false, true], # valid format + + ].each do |active, new_user_recipients, inactive_recipients, email, auto_setup_vm, auto_setup_repo, ok_to_auto_setup| + test "create new user with auto setup #{active} #{email} #{auto_setup_vm} #{auto_setup_repo}" do auto_setup_new_users = Rails.configuration.auto_setup_new_users auto_setup_new_users_with_vm_uuid = Rails.configuration.auto_setup_new_users_with_vm_uuid auto_setup_new_users_with_repository = Rails.configuration.auto_setup_new_users_with_repository @@ -176,7 +289,7 @@ class UserTest < ActiveSupport::TestCase Rails.configuration.auto_setup_new_users_with_repository = auto_setup_repo - create_user_and_verify_setup_and_notifications active, active_recipients, inactive_recipients, email, valid_email_format + create_user_and_verify_setup_and_notifications active, new_user_recipients, inactive_recipients, email, ok_to_auto_setup ensure Rails.configuration.auto_setup_new_users = auto_setup_new_users Rails.configuration.auto_setup_new_users_with_vm_uuid = auto_setup_new_users_with_vm_uuid @@ -310,8 +423,6 @@ class UserTest < ActiveSupport::TestCase verify_link vm_perm, 'permission', 'can_login', resp_user[:uuid], vm.uuid end - - test "setup new user in multiple steps" do set_user_from_auth :admin @@ -410,11 +521,11 @@ class UserTest < ActiveSupport::TestCase end end - def create_user_and_verify_setup_and_notifications (active, active_recipients, inactive_recipients, email, valid_email_format) - Rails.configuration.new_user_notification_recipients = active_recipients + def create_user_and_verify_setup_and_notifications (active, new_user_recipients, inactive_recipients, email, ok_to_auto_setup) + Rails.configuration.new_user_notification_recipients = new_user_recipients Rails.configuration.new_inactive_user_notification_recipients = inactive_recipients - assert_equal active_recipients, Rails.configuration.new_user_notification_recipients + assert_equal new_user_recipients, Rails.configuration.new_user_notification_recipients assert_equal inactive_recipients, Rails.configuration.new_inactive_user_notification_recipients ActionMailer::Base.deliveries = [] @@ -423,16 +534,14 @@ class UserTest < ActiveSupport::TestCase user.first_name = "first_name_for_newly_created_user" user.email = email user.is_active = active - user.save + user.save! # check user setup group = Group.where(name: 'All users').select do |g| g[:uuid].match /-f+$/ end.first - username = email.partition('@')[0] if email - - if !Rails.configuration.auto_setup_new_users || !valid_email_format + if !Rails.configuration.auto_setup_new_users || !ok_to_auto_setup # verify that the user is not added to "All groups" by auto_setup verify_link_exists false, group[:uuid], user.uuid, 'permission', 'can_read', nil, nil @@ -446,23 +555,43 @@ class UserTest < ActiveSupport::TestCase # check oid login link verify_link_exists true, user.uuid, user.email, 'permission', 'can_login', nil, nil - username = user.email.partition('@')[0] + username = user.email.partition('@')[0] if email + + # check repo + repo_names = [] + if Rails.configuration.auto_setup_new_users_with_repository + repos = Repository.where('name like ?', "%#{username}%") + assert_not_nil repos, 'repository not found' + assert_equal true, repos.any?, 'repository not found' + repo_uuids = [] + repos.each do |repo| + repo_uuids << repo[:uuid] + repo_names << repo[:name] + end + if username == 'auto_setup_repo' + begin + repo_names.delete('auto_setup_repo') + ensure + assert_equal true, repo_names.any?, 'Repository name for username foo is not unique' + end + end + verify_link_exists true, repo_uuids, user.uuid, 'permission', 'can_manage', nil, nil + end + + # if username is existing vm login name, make sure the username used to generate any repo is unique + if username == 'auto_setup_vm_login' || username == 'auto_setup_repo' + if repo_names.any? + assert repo_names.first.start_with? username + assert_not_nil /\d$/.match(repo_names.first) + end + end # check vm uuid vm_uuid = Rails.configuration.auto_setup_new_users_with_vm_uuid if vm_uuid - verify_link_exists true, vm_uuid, user.uuid, 'permission', 'can_login', 'username', username + verify_link_exists true, vm_uuid, user.uuid, 'permission', 'can_login', 'username', (username == 'auto_setup_repo' ? repo_names.first : username) else - verify_link_exists false, vm_uuid, user.uuid, 'permission', 'can_login', 'username', username - end - - # check repo - if Rails.configuration.auto_setup_new_users_with_repository - repo = Repository.where(name: username).first - assert_not_nil repo, 'repository not found' - verify_link_exists true, repo[:uuid], user.uuid, 'permission', 'can_manage', nil, nil - else - verify_link_exists false, nil, user.uuid, 'permission', 'can_manage', nil, nil + verify_link_exists false, vm_uuid, user.uuid, 'permission', 'can_login', 'username', (username == 'auto_setup_repo' ? repo_names.first : username) end end @@ -470,14 +599,32 @@ class UserTest < ActiveSupport::TestCase new_user_email = nil new_inactive_user_email = nil + new_user_email_subject = "#{Rails.configuration.email_subject_prefix}New user created notification" + if Rails.configuration.auto_setup_new_users + new_user_email_subject = (ok_to_auto_setup || active) ? + "#{Rails.configuration.email_subject_prefix}New user created and setup notification" : + "#{Rails.configuration.email_subject_prefix}New user created, but not setup notification" + end + ActionMailer::Base.deliveries.each do |d| - if d.subject == "#{Rails.configuration.email_subject_prefix}New user notification" then + if d.subject == new_user_email_subject then new_user_email = d elsif d.subject == "#{Rails.configuration.email_subject_prefix}New inactive user notification" then new_inactive_user_email = d end end + # both active and inactive user creations should result in new user creation notification mails, + # if the new user email recipients config parameter is set + if not new_user_recipients.empty? then + assert_not_nil new_user_email, 'Expected new user email after setup' + assert_equal Rails.configuration.user_notifier_email_from, new_user_email.from[0] + assert_equal new_user_recipients, new_user_email.to[0] + assert_equal new_user_email_subject, new_user_email.subject + else + assert_nil new_user_email, 'Did not expect new user email after setup' + end + if not active if not inactive_recipients.empty? then assert_not_nil new_inactive_user_email, 'Expected new inactive user email after setup' @@ -487,18 +634,8 @@ class UserTest < ActiveSupport::TestCase else assert_nil new_inactive_user_email, 'Did not expect new inactive user email after setup' end - end - - if active + else assert_nil new_inactive_user_email, 'Expected no inactive user email after setting up active user' - if not active_recipients.empty? then - assert_not_nil new_user_email, 'Expected new user email after setup' - assert_equal Rails.configuration.user_notifier_email_from, new_user_email.from[0] - assert_equal active_recipients, new_user_email.to[0] - assert_equal "#{Rails.configuration.email_subject_prefix}New user notification", new_user_email.subject - else - assert_nil new_user_email, 'Did not expect new user email after setup' - end end ActionMailer::Base.deliveries = [] @@ -509,9 +646,11 @@ class UserTest < ActiveSupport::TestCase tail_uuid: tail_uuid, link_class: link_class, name: link_name) - assert_equal link_exists, all_links.any?, "Link not found" + assert_equal link_exists, all_links.any?, "Link #{'not' if link_exists} found for #{link_name} #{link_class} #{property_value}" if link_exists && property_name && property_value - assert_equal property_value, all_links.first.properties[property_name], 'Property not found in link' + all_links.each do |link| + assert_equal true, all_links.first.properties[property_name].start_with?(property_value), 'Property not found in link' + end end end