X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6da9f3666bc0ddee2d0be079cc30ba8b82804706..a048d6957ff6284c4234198ed9b868bff07d057f:/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 f9e0f4bc08..4cb7a0a1b1 100644 --- a/services/api/test/unit/node_test.rb +++ b/services/api/test/unit/node_test.rb @@ -1,4 +1,10 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require 'test_helper' +require 'tmpdir' +require 'tempfile' class NodeTest < ActiveSupport::TestCase def ping_node(node_name, ping_data) @@ -76,12 +82,14 @@ class NodeTest < ActiveSupport::TestCase assert Node.dns_server_update 'compute65535', '127.0.0.127' end - test "dns update with dir configured but no command configured" do - Rails.configuration.dns_server_update_command = false - Rails.configuration.dns_server_conf_dir = Rails.root.join 'tmp' - conffile = Rails.root.join 'tmp', 'compute65535.conf' - assert Node.dns_server_update 'compute65535', '127.0.0.127' - refute File.exist? conffile + 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 @@ -124,9 +132,8 @@ class NodeTest < ActiveSupport::TestCase test "ping two nodes one with no hostname and one with hostname and check hostnames" do # ping node with no hostname and expect it set with config format node = ping_node(:new_with_no_hostname, {}) - slot_number = node.slot_number refute_nil node.slot_number - assert_equal "compute#{slot_number}", node.hostname + assert_equal "compute#{node.slot_number}", node.hostname # ping node with a hostname and expect it to be unchanged node2 = ping_node(:new_with_custom_hostname, {}) @@ -187,4 +194,22 @@ class NodeTest < ActiveSupport::TestCase assert_equal '10.5.5.5', n1.ip_address end end + + test 'run out of slots' do + Rails.configuration.max_compute_nodes = 3 + act_as_system_user do + Node.destroy_all + (1..4).each do |i| + n = Node.create! + args = { ip: "10.0.0.#{i}", ping_secret: n.info['ping_secret'] } + if i <= Rails.configuration.max_compute_nodes + n.ping(args) + else + assert_raises do + n.ping(args) + end + end + end + end + end end