X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/35e245f09cfc5ace6259a671a1f12fd508750b13..df4897f1390e58825dd8afcc053955c6d3894169:/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 cd23989127..f4ee0b64a2 100644 --- a/services/api/test/functional/arvados/v1/users_controller_test.rb +++ b/services/api/test/functional/arvados/v1/users_controller_test.rb @@ -48,7 +48,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase 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) @@ -64,49 +64,81 @@ 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", 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_not_nil created['email'], 'expected non-nil email' 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 + # arvados#user, repo link and link add user to 'All users' group verify_num_links @all_links_at_start, 3 - 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_write', 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' + + # 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: "this_is_agreeable", + 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 'this_is_agreeable', 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, 4 + + 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', true, 'permission', 'can_login', + @vm_uuid, created['uuid'], 'arvados#virtualMachine', false, 'VirtualMachine' 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, { - 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'] @@ -114,7 +146,54 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase assert (response_errors.first.include? 'Path not found'), 'Expected 404' end - test "create user with existing uuid, vm and repo and verify links" do + 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? '