Merge branch '2291-new-keepd-read-blocks' (fixes #2291)
[arvados.git] / services / api / test / functional / arvados / v1 / nodes_controller_test.rb
index 0c18d5f68d02ce122e7714420b488fca85eb2720..3e239c36c951a22f2926835b69971cb1ee9ac322 100644 (file)
@@ -40,4 +40,30 @@ class Arvados::V1::NodesControllerTest < ActionController::TestCase
     assert_equal true, found_busy_node
   end
 
+  test "node should ping with ping_secret and no token" do
+    post :ping, {
+      uuid: 'zzzzz-7ekkf-2z3mc76g2q73aio',
+      instance_id: 'i-0000000',
+      local_ipv4: '172.17.2.174',
+      ping_secret: '69udawxvn3zzj45hs8bumvndricrha4lcpi23pd69e44soanc0'
+    }
+    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',
+      instance_id: 'i-0000000',
+      local_ipv4: '172.17.2.174',
+      ping_secret: 'dricrha4lcpi23pd69e44soanc069udawxvn3zzj45hs8bumvn'
+    }
+    assert_response 401
+  end
+
 end