X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3d078f8d6387e64eb6f0b844d2fe784a0be45230..90209af8fa35bc99c9821db0c815404d1234ef31:/services/api/test/unit/node_test.rb diff --git a/services/api/test/unit/node_test.rb b/services/api/test/unit/node_test.rb index ef500362d7..2330e7c528 100644 --- a/services/api/test/unit/node_test.rb +++ b/services/api/test/unit/node_test.rb @@ -1,4 +1,6 @@ require 'test_helper' +require 'tmpdir' +require 'tempfile' class NodeTest < ActiveSupport::TestCase def ping_node(node_name, ping_data) @@ -33,7 +35,7 @@ class NodeTest < ActiveSupport::TestCase conffile = Rails.root.join 'tmp', 'compute65535.conf' File.unlink conffile rescue nil assert Node.dns_server_update 'compute65535', '127.0.0.1' - assert_match /\"1\.0\.0\.127\.in-addr\.arpa\. IN PTR compute65535\.zzzzz\.arvadosapi\.com\"/, IO.read(conffile) + assert_match(/\"1\.0\.0\.127\.in-addr\.arpa\. IN PTR compute65535\.zzzzz\.arvadosapi\.com\"/, IO.read(conffile)) File.unlink conffile end @@ -76,6 +78,16 @@ class NodeTest < ActiveSupport::TestCase assert Node.dns_server_update 'compute65535', '127.0.0.127' end + test "don't leave temp files behind if there's an error writing them" do + Rails.configuration.dns_server_conf_template = Rails.root.join 'config', 'unbound.template' + Tempfile.any_instance.stubs(:puts).raises(IOError) + Dir.mktmpdir do |tmpdir| + Rails.configuration.dns_server_conf_dir = tmpdir + refute Node.dns_server_update 'compute65535', '127.0.0.127' + assert_empty Dir.entries(tmpdir).select{|f| File.file? f} + end + end + test "ping new node with no hostname and default config" do node = ping_node(:new_with_no_hostname, {}) slot_number = node.slot_number @@ -126,10 +138,57 @@ class NodeTest < ActiveSupport::TestCase assert_equal "custom1", node2.hostname end - test "ping node with no hostname and malformed config and expect nil for hostname" do - Rails.configuration.assign_node_hostname = 'compute%04' # should end with "04d" - assert_raise ArgumentError do - ping_node(:new_with_no_hostname, {}) + test "update dns when nodemanager clears hostname and ip_address" do + act_as_system_user do + node = ping_node(:new_with_custom_hostname, {}) + Node.expects(:dns_server_update).with(node.hostname, Node::UNUSED_NODE_IP) + node.update_attributes(hostname: nil, ip_address: nil) + end + end + + test "update dns when hostname changes" do + act_as_system_user do + node = ping_node(:new_with_custom_hostname, {}) + + Node.expects(:dns_server_update).with(node.hostname, Node::UNUSED_NODE_IP) + Node.expects(:dns_server_update).with('foo0', node.ip_address) + node.update_attributes!(hostname: 'foo0') + + Node.expects(:dns_server_update).with('foo0', Node::UNUSED_NODE_IP) + node.update_attributes!(hostname: nil, ip_address: nil) + + Node.expects(:dns_server_update).with('foo0', '10.11.12.13') + node.update_attributes!(hostname: 'foo0', ip_address: '10.11.12.13') + + Node.expects(:dns_server_update).with('foo0', '10.11.12.14') + node.update_attributes!(hostname: 'foo0', ip_address: '10.11.12.14') + end + end + + test 'newest ping wins IP address conflict' do + act_as_system_user do + n1, n2 = Node.create!, Node.create! + + n1.ping(ip: '10.5.5.5', ping_secret: n1.info['ping_secret']) + n1.reload + + Node.expects(:dns_server_update).with(n1.hostname, Node::UNUSED_NODE_IP) + Node.expects(:dns_server_update).with(Not(equals(n1.hostname)), '10.5.5.5') + n2.ping(ip: '10.5.5.5', ping_secret: n2.info['ping_secret']) + + n1.reload + n2.reload + assert_nil n1.ip_address + assert_equal '10.5.5.5', n2.ip_address + + Node.expects(:dns_server_update).with(n2.hostname, Node::UNUSED_NODE_IP) + Node.expects(:dns_server_update).with(n1.hostname, '10.5.5.5') + n1.ping(ip: '10.5.5.5', ping_secret: n1.info['ping_secret']) + + n1.reload + n2.reload + assert_nil n2.ip_address + assert_equal '10.5.5.5', n1.ip_address end end end