X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/1896a42e2da493b024dce40266a4814883c08003..8048da32800fab790b68f502c52dd00c89b5b690:/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 ca0ab84298..6dc5950dd8 100644 --- a/services/api/test/functional/arvados/v1/users_controller_test.rb +++ b/services/api/test/functional/arvados/v1/users_controller_test.rb @@ -1,12 +1,10 @@ require 'test_helper' class Arvados::V1::UsersControllerTest < ActionController::TestCase + include CurrentApiClient setup do - @all_users_at_start = User.all - @all_groups_at_start = Group.all @all_links_at_start = Link.all - @vm_uuid = virtual_machines(:testvm).uuid end @@ -46,19 +44,25 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase 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) assert_equal 'test_first_name', created['first_name'] - assert_not_nil created['uuid'], 'expected non-null uuid for the newly created user' - assert_not_nil created['email'], 'since email was given, expected non-nil email' - assert_nil created['identity_url'], 'even though email is provided, expected no identity_url since users_controller only creates user at this time' + assert_not_nil created['uuid'], 'expected uuid for the newly created user' + assert_not_nil created['email'], 'expected non-nil email' + assert_nil created['identity_url'], 'expected no identity_url' end test "create user with user, vm and repo as input" do @@ -67,283 +71,813 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase post :setup, { repo_name: repo_name, - vm_uuid: 'no_such_vm', + 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 - created = JSON.parse(@response.body) + response_items = JSON.parse(@response.body)['items'] + + 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, 'arvados#user', true, 'permission', 'can_login', + created['uuid'], created['email'], 'arvados#user', false, 'User' + + verify_link response_items, 'arvados#repository', true, 'permission', 'can_write', + repo_name, created['uuid'], 'arvados#repository', true, 'Repository' + + verify_link response_items, 'arvados#group', true, 'permission', 'can_read', + 'All users', created['uuid'], 'arvados#group', true, 'Group' + + 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'] + + # invoke setup again with the same data + post :setup, { + repo_name: repo_name, + vm_uuid: @vm_uuid, + openid_prefix: 'https://www.google.com/accounts/o8/id', + user: { + uuid: 'zzzzz-tpzed-abcdefghijklmno', + first_name: "in_create_test_first_name", + last_name: "test_last_name", + email: "foo@example.com" + } + } + + response_items = JSON.parse(@response.body)['items'] + + 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 'zzzzz-tpzed-abcdefghijklmno', created['uuid'] + assert_not_nil created['email'], 'expected non-nil email' + 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, 5 - verify_link_exists_for_type 'User', 'permission', 'can_login', - created['uuid'], created['email'], 'arvados#user', false + verify_link response_items, 'arvados#repository', true, 'permission', 'can_write', + repo_name, created['uuid'], 'arvados#repository', true, 'Repository' - verify_link_exists_for_type 'Repository', 'permission', 'can_write', - repo_name, created['uuid'], 'arvados#repository', true + verify_link response_items, 'arvados#group', true, 'permission', 'can_read', + 'All users', created['uuid'], 'arvados#group', true, 'Group' - verify_link_exists_for_type 'Group', 'permission', 'can_read', - 'All users', created['uuid'], 'arvados#group', true + verify_link response_items, 'arvados#virtualMachine', true, 'permission', 'can_login', + @vm_uuid, created['uuid'], 'arvados#virtualMachine', false, 'VirtualMachine' + + verify_system_group_permission_link_for created['uuid'] end - test "create user with bogus uuid, vm and repo as input" do + test "setup user with bogus uuid and expect error" do authorize_with :admin post :setup, { - user: {uuid: 'not_an_existing_uuid_and_not_email_format'}, + uuid: 'bogus_uuid', repo_name: 'test_repo', - vm_uuid: 'no_such_vm' + vm_uuid: @vm_uuid } response_body = JSON.parse(@response.body) response_errors = response_body['errors'] assert_not_nil response_errors, 'Expected error in response' - incorrectly_formatted = response_errors.first.include?('No email') - assert incorrectly_formatted, 'Expected not valid email format error' + assert (response_errors.first.include? 'Path not found'), 'Expected 404' + end + + test "setup user with bogus uuid in user and expect error" do + authorize_with :admin + + post :setup, { + user: {uuid: 'bogus_uuid'}, + repo_name: 'test_repo', + vm_uuid: @vm_uuid, + openid_prefix: 'https://www.google.com/accounts/o8/id' + } + 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? 'ArgumentError: Require user email'), + 'Expected RuntimeError' + end + + test "setup user with no uuid and user, expect error" do + authorize_with :admin + + post :setup, { + repo_name: 'test_repo', + vm_uuid: @vm_uuid, + openid_prefix: 'https://www.google.com/accounts/o8/id' + } + 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 user'), + 'Expected ArgumentError' + end + + test "setup user with no uuid and email, expect error" do + authorize_with :admin + + post :setup, { + user: {}, + repo_name: 'test_repo', + vm_uuid: @vm_uuid, + openid_prefix: 'https://www.google.com/accounts/o8/id' + } + 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? ' 0, "expected links for #{class_name} with #{head_uuid}" + assert_equal link_name, link['name'], + "did not find expected link_name for #{link_object_name}" + + assert_equal tail_uuid, link['tail_uuid'], + "did not find expected tail_uuid for #{link_object_name}" + + assert_equal head_kind, link['head_kind'], + "did not find expected head_kind for #{link_object_name}" + + assert_equal head_uuid, link['head_uuid'], + "did not find expected head_uuid for #{link_object_name}" end + def verify_link_existence uuid, email, expect_oid_login_perms, + expect_repo_perms, expect_vm_perms, expect_group_perms, expect_signatures + # verify that all links are deleted for the user + oid_login_perms = Link.where(tail_uuid: email, + link_class: 'permission', + name: 'can_login').where("head_uuid like ?", User.uuid_like_pattern) + if expect_oid_login_perms + assert oid_login_perms.any?, "expected oid_login_perms" + else + assert !oid_login_perms.any?, "expected all oid_login_perms deleted" + end + + repo_perms = Link.where(tail_uuid: uuid, + link_class: 'permission', + name: 'can_write').where("head_uuid like ?", Repository.uuid_like_pattern) + if expect_repo_perms + assert repo_perms.any?, "expected repo_perms" + else + assert !repo_perms.any?, "expected all repo_perms deleted" + end + + vm_login_perms = Link.where(tail_uuid: uuid, + link_class: 'permission', + name: 'can_login').where("head_uuid like ?", VirtualMachine.uuid_like_pattern) + if expect_vm_perms + assert vm_login_perms.any?, "expected vm_login_perms" + else + assert !vm_login_perms.any?, "expected all vm_login_perms deleted" + end + + group = Group.where(name: 'All users').select do |g| + g[:uuid].match /-f+$/ + end.first + group_read_perms = Link.where(tail_uuid: uuid, + head_uuid: group[:uuid], + link_class: 'permission', + name: 'can_read') + if expect_group_perms + assert group_read_perms.any?, "expected all users group read perms" + else + assert !group_read_perms.any?, "expected all users group perm deleted" + end + + signed_uuids = Link.where(link_class: 'signature', + tail_uuid: uuid) + + if expect_signatures + assert signed_uuids.any?, "expected signatures" + else + assert !signed_uuids.any?, "expected all signatures deleted" + end + + end + + def verify_system_group_permission_link_for user_uuid + assert_equal 1, Link.where(link_class: 'permission', + name: 'can_manage', + tail_uuid: system_group_uuid, + head_uuid: user_uuid).count + end end