X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ec71f0d4cd9a564b2895b61e60fe23f0b6480ad6..8c9b4a1c7b4ad3feb5c0ccb14888aad7ed262e18:/services/api/test/functional/arvados/v1/nodes_controller_test.rb diff --git a/services/api/test/functional/arvados/v1/nodes_controller_test.rb b/services/api/test/functional/arvados/v1/nodes_controller_test.rb index f872f89dd9..06695aa6a7 100644 --- a/services/api/test/functional/arvados/v1/nodes_controller_test.rb +++ b/services/api/test/functional/arvados/v1/nodes_controller_test.rb @@ -42,7 +42,7 @@ class Arvados::V1::NodesControllerTest < ActionController::TestCase test "node should ping with ping_secret and no token" do post :ping, { - uuid: 'zzzzz-7ekkf-2z3mc76g2q73aio', + id: 'zzzzz-7ekkf-2z3mc76g2q73aio', instance_id: 'i-0000000', local_ipv4: '172.17.2.174', ping_secret: '69udawxvn3zzj45hs8bumvndricrha4lcpi23pd69e44soanc0' @@ -50,16 +50,45 @@ class Arvados::V1::NodesControllerTest < ActionController::TestCase assert_response :success response = JSON.parse(@response.body) assert_equal 'zzzzz-7ekkf-2z3mc76g2q73aio', response['uuid'] + # Ensure we are getting the "superuser" attributes, too + assert_not_nil response['first_ping_at'], '"first_ping_at" attr missing' + assert_not_nil response['info'], '"info" attr missing' + assert_not_nil response['nameservers'], '"nameservers" attr missing' end test "node should fail ping with invalid ping_secret" do post :ping, { - uuid: 'zzzzz-7ekkf-2z3mc76g2q73aio', + id: 'zzzzz-7ekkf-2z3mc76g2q73aio', instance_id: 'i-0000000', local_ipv4: '172.17.2.174', ping_secret: 'dricrha4lcpi23pd69e44soanc069udawxvn3zzj45hs8bumvn' } - assert_response :unprocessable_entity + assert_response 401 end + test "create node" do + authorize_with :admin + post :create + assert_response :success + assert_not_nil json_response['uuid'] + assert_not_nil json_response['info'].is_a? Hash + assert_not_nil json_response['info']['ping_secret'] + end + + test "ping adds node stats to info" do + node = nodes(:idle) + post :ping, { + id: node.uuid, + ping_secret: node.info['ping_secret'], + total_cpu_cores: 32, + total_ram_mb: 1024, + total_scratch_mb: 2048 + } + assert_response :success + info = JSON.parse(@response.body)['info'] + assert_equal(node.info['ping_secret'], info['ping_secret']) + assert_equal(32, info['total_cpu_cores'].to_i) + assert_equal(1024, info['total_ram_mb'].to_i) + assert_equal(2048, info['total_scratch_mb'].to_i) + end end