Some more refactoring
[arvados.git] / services / api / test / functional / arvados / v1 / users_controller_test.rb
index a2b282cc0416981164e88a5121cf54c631b62ecf..c6b0e3d2850d24208bdedc9320a0f2347f95b701 100644 (file)
@@ -2,6 +2,14 @@ require 'test_helper'
 
 class Arvados::V1::UsersControllerTest < ActionController::TestCase
 
+       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
+
   test "activate a user after signing UA" do
     authorize_with :inactive_but_signed_user_agreement
     get :current
@@ -38,7 +46,7 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase
     assert_equal true, me['is_active']
   end
 
-  test "create new user" do
+  test "create new user with user as input" do
     authorize_with :admin
     post :create, user: {
       first_name: "test_first_name",
@@ -53,14 +61,161 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase
     assert_nil created['identity_url'], 'even though email is provided, expected no identity_url since users_controller only creates user at this time'
   end
 
-       test "create user with vm and repo" do
+       test "create user with user, vm and repo as input" do
+    authorize_with :admin
+
+    post :create, {
+      repo_name: 'test_repo',
+                       vm_uuid: 'no_such_vm',
+      user: {
+                   uuid: "is_this_correct",                
+                               first_name: "in_create_test_first_name",
+                   last_name: "test_last_name",
+                               email: "test@abc.com"
+      }
+    }
+    assert_response :success
+    created = JSON.parse(@response.body)
+    assert_equal 'in_create_test_first_name', created['first_name']
+    assert_not_nil created['uuid'], 'expected non-null uuid for the newly created user'
+               assert_equal 'is_this_correct', created['uuid']
+    assert_not_nil created['email'], 'since email was given, expected non-nil email'
+    assert_nil created['identity_url'], 'even though email isprovided, expected no identity_url since users_controller only creates user' 
+
+               # 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
+
+               verify_link_exists_for_type 'Repository', 'permission', 'can_write', 'test_repo', created['uuid'], 'arvados#repository', true
+
+               verify_link_exists_for_type 'Group', 'permission', 'can_read', 'All users', created['uuid'], 'arvados#group', true
+       end
+
+       test "create user with user_param, vm and repo as input" do
+    authorize_with :admin
+
+    post :create, {
+      user_param: 'not_an_existing_uuid_and_not_email_format',
+      repo_name: 'test_repo',
+                       vm_uuid: 'no_such_vm',
+      user: {}
+    }
+
+    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?('ArgumentError: User param is not of valid email format')
+               assert incorrectly_formatted, 'Expected not valid email format error'
+       end
+
+       test "create user with existing uuid user_param, vm and repo as input" do
+               authorize_with :inactive
+    get :current
+    assert_response :success
+    inactive_user = JSON.parse(@response.body)
+               
+    authorize_with :admin
+
+               # it would be desirable to use inactive_user['uuid'] instead of hard coding user_param
+    post :create, {
+      user_param: 'zzzzz-tpzed-x9kqpd79egh49c7',
+      repo_name: 'test_repo',
+                       vm_uuid: 'no_such_vm',
+      user: {}
+    }
+
+    assert_response :success
+    response_object = JSON.parse(@response.body)
+    assert_not_nil response_object['uuid'], 'expected non-null uuid for the newly created user'
+               assert_equal inactive_user['uuid'], response_object['uuid']
+    assert_equal inactive_user['email'], response_object['email'], 'expecting inactive user email'
+       end
+
+       test "create user with valid email user_param, vm and repo as input" do
+    authorize_with :admin
+
+    post :create, {
+      user_param: 'abc@xyz.com',
+      repo_name: 'test_repo',
+                       vm_uuid: 'no_such_vm',
+      user: {}
+    }
+
+    assert_response :success
+    response_object = JSON.parse(@response.body)
+    assert_not_nil response_object['uuid'], 'expected non-null uuid for the newly created user'
+    assert_equal response_object['email'], 'abc@xyz.com', 'expecting given email'
+       end
+
+       test "create user with valid email user_param, no vm and repo as input" do
+    authorize_with :admin
+
+    post :create, {
+      user_param: 'abc@xyz.com',
+      user: {}
+    }
+
+    assert_response :success           
+    response_object = JSON.parse(@response.body)
+    assert_not_nil response_object['uuid'], 'expected non-null uuid for the newly created user'
+    assert_equal response_object['email'], 'abc@xyz.com', 'expecting given email'
+       end
+
+       test "create user with valid email user_param, vm and repo as input with opt.n" do
+    authorize_with :admin
+
+    post :create, {
+      user_param: 'abc@xyz.com',
+      repo_name: 'test_repo',
+                       vm_uuid: 'no_such_vm',
+                       just_probe: 'true',
+      user: {}
+    }
+
+    assert_response :success
+    response_object = JSON.parse(@response.body)
+    assert_nil response_object['uuid'], 'expected null uuid since no object created due to just probe'
+    assert_nil response_object['email'], 'expecting null email'
+       end
+
+       test "create user twice and check links are not recreated" do
+    authorize_with :admin
+
+    post :create, {
+      user_param: 'abc@xyz.com',
+      repo_name: 'test_repo',
+                       vm_uuid: 'no_such_vm',
+      user: {}
+    }
+
+    assert_response :success
+    response_object = JSON.parse(@response.body)
+    assert_not_nil response_object['uuid'], 'expected non-null uuid for the newly created user'
+    assert_equal response_object['email'], 'abc@xyz.com', 'expecting given email'
+               verify_num_links @all_links_at_start, 3         # openid, group, and repo links. no vm link
+
+               # create again
+    post :create, {
+      user_param: 'abc@xyz.com',
+      repo_name: 'test_repo',
+                       vm_uuid: 'no_such_vm',
+      user: {}
+    }
+
+    assert_response :success
+    response_object2 = JSON.parse(@response.body)
+    assert_equal response_object['uuid'], response_object2['uuid'], 'expected same uuid as first create operation'
+    assert_equal response_object['email'], 'abc@xyz.com', 'expecting given email'
+               verify_num_links @all_links_at_start, 3         # openid, group, and repo links. no vm link
+       end
+
+       # still in progress
+       test "create user with openid_prefix" do
     authorize_with :admin
 
     post :create, {
       repo_name: 'test_repo',
-                       vm_uuid: 'abcdefg',
+                       vm_uuid: 'no_such_vm',
       user: {
-                   uuid: "shouldnotbeused",                
                                first_name: "in_create_test_first_name",
                    last_name: "test_last_name",
                                email: "test@abc.com"
@@ -68,11 +223,61 @@ class Arvados::V1::UsersControllerTest < ActionController::TestCase
     }
     assert_response :success
     created = JSON.parse(@response.body)
-puts "created = #{created}"
     assert_equal 'in_create_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' 
        end
 
+       test "create user with user, vm and repo and verify links" do
+    authorize_with :admin
+
+    post :create, {
+      repo_name: 'test_repo',
+                       vm_uuid: 'zzzzz-2x53u-382brsig8rp3064',
+      user: {
+                               first_name: "in_create_test_first_name",
+                   last_name: "test_last_name",
+                               email: "test@abc.com"
+      }
+    }
+    assert_response :success
+    created = JSON.parse(@response.body)
+    assert_equal 'in_create_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' 
+
+               # expect 4 new links: oid_login_perm, repo link, vm link and link add user to 'All users' group. 
+               verify_num_links @all_links_at_start, 4
+
+               verify_link_exists_for_type 'Repository', 'permission', 'can_write', 'test_repo', created['uuid'], 'arvados#repository', true
+
+               verify_link_exists_for_type 'Group', 'permission', 'can_read', 'All users', created['uuid'], 'arvados#group', true
+
+
+               verify_link_exists_for_type 'VirtualMachine', 'permission', 'can_login', 'zzzzz-2x53u-382brsig8rp3064', created['uuid'], 'arvados#virtualMachine', false
+       end
+
+       def verify_num_links (original_links, expected_num_additional_links)
+               links_now = Link.all
+               assert_equal original_links.size+expected_num_additional_links, Link.all.size, 
+                                                       "Expected #{expected_num_additional_links.inspect} more links"
+       end
+
+       def verify_link_exists_for_type(class_name, link_class, link_name, head_uuid, tail_uuid, head_kind, fetch_object)
+               if fetch_object
+                       object = Object.const_get(class_name).where(name: head_uuid)
+                       assert [] != object, "expected a #{class_name.inspect} with the name #{head_uuid.inspect}"
+                       head_uuid = object.first[:uuid]
+               end
+
+               links = Link.where(link_class: link_class,
+                                        name: link_name,
+                                                tail_uuid: tail_uuid,
+                                                head_uuid: head_uuid,
+                                              head_kind: head_kind)
+               assert links.size > 0, "expected one or more links with the given criteria #{class_name} with #{head_uuid}"
+       end
+
 end