X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/eeeceb21a479780dfa7d550523ab961f477e39ad..1c9ae7e8c8d7920602250958333751b769fb3a72:/services/api/test/functional/arvados/v1/links_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/links_controller_test.rb b/services/api/test/functional/arvados/v1/links_controller_test.rb index f4d65c1992..dfce78b13f 100644 --- a/services/api/test/functional/arvados/v1/links_controller_test.rb +++ b/services/api/test/functional/arvados/v1/links_controller_test.rb @@ -20,6 +20,43 @@ class Arvados::V1::LinksControllerTest < ActionController::TestCase end end + %w(created_at modified_at).each do |attr| + {nil: nil, bogus: 2.days.ago}.each do |bogustype, bogusvalue| + test "cannot set #{bogustype} #{attr} in create" do + authorize_with :active + post :create, { + link: { + properties: {}, + link_class: 'test', + name: 'test', + }.merge(attr => bogusvalue) + } + assert_response :success + resp = JSON.parse @response.body + assert_in_delta Time.now, Time.parse(resp[attr]), 3.0 + end + test "cannot set #{bogustype} #{attr} in update" do + really_created_at = links(:test_timestamps).created_at + authorize_with :active + put :update, { + id: links(:test_timestamps).uuid, + link: { + :properties => {test: 'test'}, + attr => bogusvalue + } + } + assert_response :success + resp = JSON.parse @response.body + case attr + when 'created_at' + assert_in_delta really_created_at, Time.parse(resp[attr]), 0.001 + else + assert_in_delta Time.now, Time.parse(resp[attr]), 3.0 + end + end + end + end + test "head must exist" do link = { link_class: 'test', @@ -203,4 +240,47 @@ class Arvados::V1::LinksControllerTest < ActionController::TestCase assert_response 422 end + test "test with virtual_machine" do + link = { + tail_kind: "arvados#user", + tail_uuid: users(:active).uuid, + head_kind: "arvados#virtual_machine", + head_uuid: virtual_machines(:testvm).uuid, + link_class: "permission", + name: "can_login", + properties: {username: "repo_and_user_name"} + } + authorize_with :admin + post :create, link: link + assert_response 422 + end + + test "test with virtualMachine" do + link = { + tail_kind: "arvados#user", + tail_uuid: users(:active).uuid, + head_kind: "arvados#virtualMachine", + head_uuid: virtual_machines(:testvm).uuid, + link_class: "permission", + name: "can_login", + properties: {username: "repo_and_user_name"} + } + authorize_with :admin + post :create, link: link + assert_response :success + end + + test "refuse duplicate name" do + the_name = links(:job_name_in_afolder).name + the_folder = links(:job_name_in_afolder).tail_uuid + authorize_with :active + post :create, link: { + tail_uuid: the_folder, + head_uuid: specimens(:owned_by_active_user).uuid, + link_class: 'name', + name: the_name, + properties: {this_s: "a duplicate name"} + } + assert_response 422 + end end