X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e76165d4c3b0cb5929bfec08f36a95ecd80cd564..e7672a0b679659d6ba90d23b4e102fba747fa9ef:/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 157e487859..789242f6e0 100644 --- a/services/api/test/functional/arvados/v1/users_controller_test.rb +++ b/services/api/test/functional/arvados/v1/users_controller_test.rb @@ -6,8 +6,9 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase include UsersTestHelper setup do - @all_links_at_start = Link.all + @initial_link_count = Link.count @vm_uuid = virtual_machines(:testvm).uuid + ActionMailer::Base.deliveries = [] end test "activate a user after signing UA" do @@ -107,7 +108,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase assert_nil created['identity_url'], 'expected no identity_url' # arvados#user, repo link and link add user to 'All users' group - verify_num_links @all_links_at_start, 4 + verify_links_added 4 verify_link response_items, 'arvados#user', true, 'permission', 'can_login', created['uuid'], created['email'], 'arvados#user', false, 'User' @@ -269,7 +270,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase assert_equal response_object['email'], 'foo@example.com', 'expected given email' # four extra links; system_group, login, group and repo perms - verify_num_links @all_links_at_start, 4 + verify_links_added 4 end test "setup user with fake vm and expect error" do @@ -306,7 +307,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase assert_equal response_object['email'], 'foo@example.com', 'expected given email' # five extra links; system_group, login, group, vm, repo - verify_num_links @all_links_at_start, 5 + verify_links_added 5 end test "setup user with valid email, no vm and no repo as input" do @@ -324,7 +325,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase assert_equal response_object['email'], 'foo@example.com', 'expected given email' # three extra links; system_group, login, and group - verify_num_links @all_links_at_start, 3 + verify_links_added 3 verify_link response_items, 'arvados#user', true, 'permission', 'can_login', response_object['uuid'], response_object['email'], 'arvados#user', false, 'User' @@ -361,7 +362,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase 'expecting first name' # five extra links; system_group, login, group, repo and vm - verify_num_links @all_links_at_start, 5 + verify_links_added 5 end test "setup user with an existing user email and check different object is created" do @@ -384,7 +385,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase 'expected different uuid after create operation' assert_equal inactive_user['email'], response_object['email'], 'expected given email' # system_group, openid, group, and repo. No vm link. - verify_num_links @all_links_at_start, 4 + verify_links_added 4 end test "setup user with openid prefix" do @@ -412,7 +413,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase # verify links # four new links: system_group, arvados#user, repo, and 'All users' group. - verify_num_links @all_links_at_start, 4 + verify_links_added 4 verify_link response_items, 'arvados#user', true, 'permission', 'can_login', created['uuid'], created['email'], 'arvados#user', false, 'User' @@ -472,7 +473,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase # five new links: system_group, arvados#user, repo, vm and 'All # users' group link - verify_num_links @all_links_at_start, 5 + verify_links_added 5 verify_link response_items, 'arvados#user', true, 'permission', 'can_login', created['uuid'], created['email'], 'arvados#user', false, 'User' @@ -603,7 +604,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase active_user = User.find_by_uuid(users(:active).uuid) readable_groups = active_user.groups_i_can(:read) - all_users_group = Group.all.collect(&:uuid).select { |g| g.match /-f+$/ } + all_users_group = Group.all.collect(&:uuid).select { |g| g.match(/-f+$/) } refute_includes(readable_groups, all_users_group, "active user can read All Users group after being deactivated") assert_equal(false, active_user.is_invited, @@ -659,6 +660,24 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase assert (setup_email.body.to_s.include? "#{Rails.configuration.workbench_address}users/#{created['uuid']}/virtual_machines"), 'Expected virtual machines url in email body' end + test "setup inactive user by changing is_active to true" do + authorize_with :admin + active_user = users(:active) + + # invoke setup with a repository + put :update, { + id: active_user['uuid'], + user: { + is_active: true, + } + } + assert_response :success + assert_equal active_user['uuid'], json_response['uuid'] + updated = User.where(uuid: active_user['uuid']).first + assert_equal(true, updated.is_active) + assert_equal({read: true}, updated.group_permissions[all_users_group_uuid]) + end + test "non-admin user can get basic information about readable users" do authorize_with :spectator get(:index) @@ -841,15 +860,13 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase "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" + def verify_links_added more + assert_equal @initial_link_count+more, Link.count, + "Started with #{@initial_link_count} links, expected #{more} more" 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