Project

General

Profile

Download (139 KB) Statistics
| Branch: | Tag: | Revision:
require 'test_helper'

# List of valid comment values.
def valid_comment_values
[
RFauxFactory.gen_alpha(1),
RFauxFactory.gen_alpha(255),
*RFauxFactory.gen_strings(1..255, exclude: [:html, :utf8]).values,
RFauxFactory.gen_html(rand((1..230))),
]
end

# List of valid host names values.
def valid_hosts_list(domain_length: 10)
[
RFauxFactory.gen_alphanumeric(rand(1..255 - 6 - domain_length)).downcase,
RFauxFactory.gen_alpha(rand(1..255 - 6 - domain_length)).downcase,
RFauxFactory.gen_numeric_string(rand(1..255 - 6 - domain_length)),
]
end

class HostTest < ActiveSupport::TestCase
include FactImporterIsolation
allow_transactions_for_any_importer

setup do
disable_orchestration
User.current = users :admin
Setting[:token_duration] = 0
Foreman::Model::EC2.any_instance.stubs(:image_exists?).returns(true)
end

test "should not save hostname with periods in shortname" do
host = Host.new :name => "my.host", :domain => Domain.where(:name => "mydomain.net").first_or_create, :managed => true
host.valid?
assert_equal "must not include periods", host.errors[:name].first
end

test "existing interface can be assigned as host primary interface" do
host = FactoryBot.build(:host, :managed)
host.interfaces = [] # remove existing primary interface
host.interfaces = [FactoryBot.create(:nic_managed, :primary => true, :host => host,
:domain => FactoryBot.create(:domain))]
assert host.save
end

test "host without primary interface should rise error" do
host = FactoryBot.build(:host, :managed)
host.interfaces = [] # remove existing primary interface
host.interfaces = [FactoryBot.create(:nic_managed, :primary => false, :provision => true, :host => host,
:domain => FactoryBot.create(:domain))]
refute host.valid?
assert_equal [:interfaces, :base], host.errors.attribute_names
assert_equal "An interface marked as primary is missing", host.errors[:base].first
end

test "host without primary interface should rise error" do
host = FactoryBot.build(:host, :managed)
host.interfaces = [] # remove existing primary interface
host.interfaces = [FactoryBot.create(:nic_managed, :primary => true, :provision => false, :host => host,
:domain => FactoryBot.create(:domain))]
assert_equal [:interfaces, :base], host.errors.attribute_names
assert_equal "An interface marked as provision is missing", host.errors[:base].first
end

test "host without primary and provision interface should rise error" do
host = FactoryBot.build(:host, :managed)
host.interfaces = [] # remove existing primary interface
host.interfaces = [FactoryBot.create(:nic_managed, :primary => false, :provision => false, :host => host,
:domain => FactoryBot.create(:domain))]
refute host.valid?
assert_equal [:interfaces, :base], host.errors.attribute_names
assert_equal "An interface marked as provision is missing", host.errors[:base].first
assert_equal "An interface marked as primary is missing", host.errors[:base].last
end

test "should fix mac address hyphens" do
host = Host.create :name => "myhost", :mac => "aa-bb-cc-dd-ee-ff"
assert_equal "aa:bb:cc:dd:ee:ff", host.mac
end

test "should fix mac address" do
host = Host.create :name => "myhost", :mac => "aabbccddeeff"
assert_equal "aa:bb:cc:dd:ee:ff", host.mac
end

test "should keep valid mac address" do
host = Host.create :name => "myhost", :mac => "aa:bb:cc:dd:ee:ff"
assert_equal "aa:bb:cc:dd:ee:ff", host.mac
end

test "should fix 64-bit mac address hyphens" do
host = Host.create :name => "myhost", :mac => "aa-bb-cc-dd-ee-ff-00-11-22-33-44-55-66-77-88-99-aa-bb-cc-dd"
assert_equal "aa:bb:cc:dd:ee:ff:00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd", host.mac
end

test "should fix 64-bit mac address" do
host = Host.create :name => "myhost", :mac => "aabbccddeeff00112233445566778899aabbccdd"
assert_equal "aa:bb:cc:dd:ee:ff:00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd", host.mac
end

test "should keep valid 64-bit mac address" do
host = Host.create :name => "myhost", :mac => "aa:bb:cc:dd:ee:ff:00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd"
assert_equal "aa:bb:cc:dd:ee:ff:00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd", host.mac
end

test "should be valid using 64-bit mac address" do
host = FactoryBot.create(:host)
host.mac = "aa:bb:cc:dd:ee:ff:00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd"
host.save!
assert_equal true, host.valid?
end

test "should fix ip address if a leading zero is used" do
host = Host.create :name => "myhost", :mac => "aabbccddeeff", :ip => "123.01.02.03"
assert_equal "123.1.2.3", host.ip
end

test "should add domain name to hostname" do
host = Host.create :name => "myhost", :mac => "aabbccddeeff", :ip => "123.01.02.03",
:domain => Domain.where(:name => "company.com").first_or_create
assert_equal "myhost.company.com", host.name
end

test "should not add domain name to hostname if it already include it" do
host = Host.create :name => "myhost.company.com", :mac => "aabbccddeeff", :ip => "123.1.2.3",
:domain => Domain.where(:name => "company.com").first_or_create
assert_equal "myhost.company.com", host.name
end

test "should add hostname if it contains domain name" do
host = Host.create :name => "myhost.company.com", :mac => "aabbccddeeff", :ip => "123.01.02.03",
:domain => Domain.where(:name => "company.com").first_or_create
assert_equal "myhost.company.com", host.name
end

test "should not append domainname to fqdn for unmanaged host" do
host = Host.create :name => "myhost.sub.comp.net", :mac => "aabbccddeeff", :ip => "123.01.02.03",
:domain => Domain.where(:name => "company.com").first_or_create,
:certname => "myhost.sub.comp.net",
:managed => false
assert_equal "myhost.sub.comp.net", host.name
end

test "should save hosts with full stop in their name" do
host = Host.create :name => "my.host.company.com", :mac => "aabbccddeeff", :ip => "123.01.02.03",
:domain => Domain.where(:name => "company.com").first_or_create
assert_equal "my.host.company.com", host.name
end

test "sets compute attributes on create" do
Host.any_instance.expects(:set_compute_attributes).once.returns(true)
Host.create! :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat), :medium => media(:one),
:subnet => subnets(:two), :architecture => architectures(:x86_64),
:disk => "empty partition"
end

test "should save compute attributes with indifferent access" do
h = Host.new :name => "myfullhost", :mac => "aabbecddeeff", :ip => "2.3.4.3", :compute_attributes => {'attr1' => 'blah'}
assert_equal 'blah', h.compute_attributes['attr1']
assert_equal 'blah', h.compute_attributes[:attr1]
end

test "doesn't set compute attributes on update" do
host = FactoryBot.create(:host)
Host.any_instance.expects(:set_compute_attributes).never
host.update!(:mac => "52:54:00:dd:ee:ff")
end

test "can fetch vm compute attributes" do
host = FactoryBot.create(:host, :on_compute_resource)
ComputeResource.any_instance.stubs(:vm_compute_attributes_for).returns({:cpus => 4})
assert_equal host.vm_compute_attributes, :cpus => 4
end

test "fetches nil vm compute attributes for bare metal" do
host = FactoryBot.create(:host)
assert_nil host.vm_compute_attributes
end

test "can authorize Host::Managed as non-admin user" do
h = FactoryBot.create(:host, :managed)
setup_user('view', 'hosts', 'name ~ *')

assert_includes Host.authorized('view_hosts'), h
end

test 'should not update with multiple invalid names' do
host = FactoryBot.create(:host)
invalid_name_list.each do |name|
host.name = name
refute host.valid?, "Can update host with invalid name #{name}"
assert_includes host.errors.attribute_names, :name
end
end

test 'should not update with multiple invalid macs' do
host = FactoryBot.create(:host)
RFauxFactory.gen_strings(256).values.each do |mac|
host.interfaces.first.mac = mac
refute host.valid?, "Can update host with invalid mac #{mac}"
assert_includes host.errors.attribute_names, :'interfaces.mac'
end
end

test 'should create with multiple valid comments' do
valid_comment_values.each do |comment|
host = FactoryBot.build(:host, :comment => comment)
assert host.valid?, "Can't create host with valid comment #{comment}"
end
end

test 'should create with multiple valid names' do
domain = domains(:mydomain)
valid_hosts_list(domain_length: domain.name.length).each do |name|
host = Host.create! :name => name, :domain => domain
assert host.valid?, "Can't create host with valid name #{name} and domain #{domain}"
assert_equal "#{name}.#{domain}", host.name, "Host created with name #{name} and domain #{domain.name} does not contains expected name #{name}.#{domain.name}"
end
end

test 'should update with multiple valid comments' do
host = FactoryBot.create(:host, :comment => RFauxFactory.gen_alpha)
valid_comment_values.each do |new_comment|
host.comment = new_comment
assert host.valid?, "Can't update host with valid comment #{new_comment}"
assert_equal host.comment, new_comment
end
end

test 'should update with multiple valid names' do
domain = domains(:mydomain)
host = FactoryBot.create(:host, :name => RFauxFactory.gen_alpha, :domain => domain)
valid_hosts_list(domain_length: domain.name.length).each do |name|
host.name = name
assert host.valid?, "Can't update host with valid name #{name}"
assert_equal "#{name}.#{domain}", host.name, "Host updated with name #{name} and domain #{domain.name} does not contains expected name #{name}.#{domain.name}"
end
end

test "should be able to save host" do
host = Host.create :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat), :medium => media(:one),
:subnet => subnets(:two), :architecture => architectures(:x86_64), :disk => "empty partition"
assert host.valid?
assert !host.new_record?
end

describe 'lookup values manipulation through attribute assignment' do
test "non-admin user should be able to create host with new lookup value" do
lookup_key = FactoryBot.create(:lookup_key, override: true, path: 'fqdn')
subnets(:two).organizations = users(:one).organizations
subnets(:two).locations = users(:one).locations
User.current = users(:one)
User.current.roles << [roles(:manager)]
assert_difference(-> { LookupValue.unscoped.count }, 1) do
assert Host.create! :name => "abc.mydomain.net", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat),
:subnet => subnets(:two), :architecture => architectures(:x86_64), :medium => media(:one),
:organization => users(:one).organizations.first, :location => users(:one).locations.first,
:disk => "empty partition",
:lookup_values_attributes => {"new_123456" => {"lookup_key_id" => lookup_key.id, "value" => "some_value"}}
end
end

test "lookup value has right matcher for a host" do
lookup_key = FactoryBot.create(:lookup_key, override: true, path: 'fqdn')
assert_difference(-> { LookupValue.where(lookup_key_id: lookup_key.id, match: "fqdn=abc.mydomain.net").count }, 1) do
Host.create! :name => "abc", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat), :medium => media(:one),
:subnet => subnets(:two), :architecture => architectures(:x86_64), :disk => "empty partition",
:lookup_values_attributes => {"new_123456" => {"lookup_key_id" => lookup_key.id, "value" => "some_value"}}
end
end

test "should be able to add new lookup value on update_attributes" do
host = FactoryBot.create(:host)
lookup_key = FactoryBot.create(:lookup_key, override: true, path: 'fqdn')
assert_difference('LookupValue.count') do
assert host.update!(:lookup_values_attributes => { :new_123456 => { :lookup_key_id => lookup_key.id, :value => true,
:_destroy => 'false'}})
end
end

test "should be able to delete existing lookup value on update_attributes" do
host = FactoryBot.create(:host)
lookup_key = FactoryBot.create(:lookup_key, override: true, path: 'fqdn')
lookup_value = FactoryBot.create(:lookup_value, :lookup_key_id => lookup_key.id,
:match => "fqdn=#{host.fqdn}", :value => '8080')
host.reload
assert_difference('LookupValue.count', -1) do
assert host.update!(:lookup_values_attributes => { '0' => { :lookup_key_id => lookup_key.id, :value => '8080',
:id => lookup_value.id, :_destroy => 'true' }})
end
end

test "should be able to update lookup value on update_attributes" do
host = FactoryBot.create(:host)
lookup_key = FactoryBot.create(:lookup_key, override: true, path: 'fqdn')
lookup_value = FactoryBot.create(:lookup_value, :lookup_key_id => lookup_key.id,
:match => "fqdn=#{host.fqdn}", :value => '8080')
host.reload
assert_difference('LookupValue.count', 0) do
assert host.update!(:lookup_values_attributes => { '0' => { :lookup_key_id => lookup_key.id, :value => '80',
:id => lookup_value.id, :_destroy => 'false'}})
end
assert_equal '80', lookup_value.reload.value
end

test "should be able to update complex YAML lookup value" do
host = FactoryBot.create(:host)
lookup_key = FactoryBot.create(:lookup_key, key_type: 'yaml', override: true, path: 'fqdn')
lookup_value = FactoryBot.create(:lookup_value, :lookup_key_id => lookup_key.id,
:match => host.lookup_value_matcher, :value => YAML.dump(:foo => :bar))
host.reload
assert_difference('LookupValue.count', 0) do
assert host.update!(:lookup_values_attributes => { '0' => { :lookup_key_id => lookup_key.id.to_s, :value => YAML.dump(:updated => :value),
:id => lookup_value.id.to_s, :_destroy => 'false'}})
end
assert_equal({:updated => :value}, lookup_value.reload.value)
end

test "should raise nested lookup value validation errors" do
lookup_key = FactoryBot.create(:lookup_key, :hash, override: true, path: 'fqdn')
host = FactoryBot.build(:host)
host.attributes = {:lookup_values_attributes => {'0' =>
{:lookup_key_id => lookup_key.id.to_s, :value => '{"a":',
:_destroy => 'false'}}}
assert host.lookup_values.first.present?
refute_valid host, :'lookup_values.value', /invalid hash/
end
end

test "should read the Puppet CA Server URL from its proxy settings" do
host = FactoryBot.build_stubbed(:host)
assert_nil host.puppet_ca_server_uri
assert_empty host.puppet_ca_server

proxy = FactoryBot.create(:puppet_ca_smart_proxy, url: 'https://smartproxy.example.com:8443')
host.puppet_ca_proxy = proxy
assert_equal 'https://smartproxy.example.com:8140', host.puppet_ca_server_uri.to_s
assert_equal 'smartproxy.example.com', host.puppet_ca_server

features = {
'puppetca' => {
settings: {'puppet_url': 'https://puppetca.example.com:8140'},
},
}
SmartProxyFeature.import_features(proxy, features)
assert_equal 'https://puppetca.example.com:8140', host.puppet_ca_server_uri.to_s
assert_equal 'puppetca.example.com', host.puppet_ca_server
end

test "should populate primary interface attributes even without existing interface" do
host = FactoryBot.build(:host, :managed => false)
host.interfaces = []
host.populate_fields_from_facts(
mock_parser(:domain => 'example.com',
:operatingsystem => 'RedHat',
:operatingsystemrelease => '6.2',
:macaddress_eth0 => '00:00:11:22:11:22',
:ipaddress_eth0 => '192.168.0.1',
:ipaddress6_eth0 => '2001:db8::1',
:interfaces => 'eth0'),
'puppet',
nil)
assert_equal 'example.com', host.domain.name
assert_equal '2001:db8::1', host.primary_interface.ip6
refute host.primary_interface.managed?
end

test "should ignore link-local ipv6 addresses when importing from facts" do
host = FactoryBot.create(:host, :mac => '00:00:11:22:11:22')

interfaces = {
:eth0 => {
:macaddress => '00:00:11:22:11:22',
:ipaddress => '10.10.20.2',
:ipaddress6 => 'fe80::200:11ff:fe22:1122',
:virtual => false,
},
:eth1 => {
:macaddress => '00:00:11:22:11:23',
:ipaddress => '10.10.30.3',
:ipaddress6 => '2001:db8::1',
:virtual => false,
},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => interfaces, :ipmi_interface => {}, :suggested_primary_interface => interfaces.to_a.last)

host.set_interfaces(parser)

assert_nil host.primary_interface.ip6
assert_equal 1, host.interfaces.where(:ip6 => '2001:db8::1').count
end

test "should handle and ignore link-local ipv6 addresses with device identifiers when importing from facts" do
host = FactoryBot.create(:host, :mac => '00:00:11:22:11:22')

interfaces = {
:eth0 => {
:macaddress => '00:00:11:22:11:22',
:ipaddress6 => 'fe80::200:11ff:fe22:1122%5',
:virtual => false,
},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => interfaces, :ipmi_interface => {}, :suggested_primary_interface => interfaces.to_a.last)
Setting[:update_subnets_from_facts] = true

host.set_interfaces(parser)

assert_nil host.primary_interface.ip6
end

test "should ignore link-local ipv4 addresses when importing from facts" do
host = FactoryBot.create(:host, :mac => '00:00:11:22:11:22')

interfaces = {
:eth0 => {
:macaddress => '00:00:11:22:11:22',
:ipaddress => '169.254.1.2',
:virtual => false,
},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => interfaces, :ipmi_interface => {}, :suggested_primary_interface => interfaces.to_a.last)
Setting[:update_subnets_from_facts] = true

host.set_interfaces(parser)

assert_nil host.primary_interface.ip
end

test "#configuration? returns true when host has puppetmaster" do
host = FactoryBot.build_stubbed(:host)
refute host.configuration?

proxy = FactoryBot.create(:smart_proxy)
host.puppet_proxy = proxy
assert host.configuration?
end

test "host is created when receiving a report if setting is true" do
assert_difference 'Host.count' do
Setting[:create_new_host_when_report_is_uploaded] = true
ConfigReport.import read_json_fixture("reports/no-logs.json")
assert Host.find_by_name('report.example.com')
end
end

test "host is not created when receiving a report if setting is false" do
Setting[:create_new_host_when_report_is_uploaded] = false
assert_equal false, Setting[:create_new_host_when_report_is_uploaded]
ConfigReport.import read_json_fixture("reports/no-logs.json")
host = Host.find_by_name('report.example.com')
assert_nil host
end

test 'host #refresh_global_status defaults to OK' do
host = FactoryBot.build_stubbed(:host)
assert_empty host.host_statuses
host.refresh_global_status
assert_equal HostStatus::Global::OK, host.global_status
end

test 'host #get_status(type) builds a new status if there is none yet and returns existing one otherwise' do
host = FactoryBot.build(:host)
status = host.get_status(HostStatus::BuildStatus)
assert status.new_record?
assert_equal host, status.host

status.refresh!
new_status = host.get_status(HostStatus::BuildStatus)
assert_equal status, new_status
end

test 'host #get_status(type) only builds a new status once' do
host = FactoryBot.build_stubbed(:host)
status1 = host.get_status(HostStatus::BuildStatus)
assert status1.new_record?
status2 = host.get_status(HostStatus::BuildStatus)
assert_equal status1.object_id, status2.object_id
end

test 'host #refresh_statuses saves all relevant statuses and refreshes global status' do
stub_smart_proxy_v2_features
host = FactoryBot.create(:host, :with_reports)
host.reload
host.global_status = 1

host.refresh_statuses
assert_equal 0, host.global_status
refute_empty host.host_statuses
refute host.get_status(HostStatus::BuildStatus).new_record?
refute host.get_status(HostStatus::ConfigurationStatus).new_record?
end

test 'host #refresh_global_status! updates global status in database' do
host = FactoryBot.build(:host)
config_status = host.get_status(HostStatus::ConfigurationStatus)
config_status.status = 1
config_status.save!
config_status.stubs(:relevant?).returns(true)
HostStatus::ConfigurationStatus.any_instance.stubs(:error?).returns(true)

assert_equal 0, host.global_status
host.refresh_global_status!
assert_equal 2, host.reload.global_status
end

test 'host #refresh_statuses updates global status in database' do
host = FactoryBot.build(:host)
host.update_attribute(:global_status, 1)

assert_equal 1, host.global_status
host.refresh_statuses
assert_equal 0, host.reload.global_status
end

test 'build status is updated on host validation' do
host = FactoryBot.build_stubbed(:host)
host.build = false
host.valid?
original_status = host.get_status(HostStatus::BuildStatus).to_status

host.build = true
host.valid?
new_status = host.get_status(HostStatus::BuildStatus).to_status

refute_equal original_status, new_status
end

context 'host assigned to location and organization' do
setup do
@host = FactoryBot.create(:host, :managed => false)
@location = Location.create :name => "New York"
@organization = Organization.create :name => "Hosting client 1"

@organization.locations << @location
end

test "assign a host to a location" do
@host.location_id = @location.id
assert @host.save!
end

test "update a host's location" do
original_location = @location

@host.location_id = original_location.id
assert @host.save!
assert_equal @host.location_id, original_location.id

new_location = Location.create :name => "Los Angeles"
@host.location_id = new_location.id
assert @host.save!
assert_equal @host.location_id, new_location.id
end

test "assign a host to an organization" do
@host.organization_id = @organization.id
assert @host.save!
end

test "assign a host to both a location and an organization" do
@host.location_id = @location.id
@host.organization_id = @organization.id

assert @host.save!
assert @host.organization.valid?
assert @host.location.valid?
end
end

test 'host can be searched in multiple taxonomies' do
org1 = FactoryBot.create(:organization)
org2 = FactoryBot.create(:organization)
org3 = FactoryBot.create(:organization)
user = FactoryBot.create(:user, :organizations => [org1, org2])
users(:one).organizations << [org1, org2, org3]
host1 = FactoryBot.create(:host, :organization => org1)
host2 = FactoryBot.create(:host, :organization => org2)
host3 = FactoryBot.create(:host, :organization => org3)
hosts = nil

assert_nil Organization.current
as_user(user) do
hosts = Host::Managed.all
end
assert_includes hosts, host1
assert_includes hosts, host2
refute_includes hosts, host3

as_user(:one) do
hosts = Host::Managed.all
end
assert_includes hosts, host1
assert_includes hosts, host2
assert_includes hosts, host3
end

context 'associated provisioning template for taxed host' do
setup do
@org = FactoryBot.create(:organization)
@loc = FactoryBot.create(:location)
@host = FactoryBot.create(:host, :managed, :organization => @org, :location => @loc)
@template = FactoryBot.create(:provisioning_template)
@host.operatingsystem.provisioning_templates << @template
FactoryBot.create(:os_default_template, :provisioning_template => @template, :operatingsystem => @host.operatingsystem, :template_kind => @template.template_kind)
@user = FactoryBot.create(:user, :organizations => [@org], :locations => [@loc])
end

test "retrieves the template that is associated with host's organization and location" do
@template.organizations << @org
@template.locations << @loc
as_user @user do
assert_equal @template, @host.provisioning_template({:kind => @template.template_kind.name})
end
end

test "retrieves the template if location ignores template associations" do
@template.organizations << @org
@loc.update_attribute :ignore_types, ['ProvisioningTemplate']
as_user @user do
assert_equal @template, @host.provisioning_template({:kind => @template.template_kind.name})
end
end
end

test "should save if root password is undefined when the host is managed and in build mode" do
Setting[:root_pass] = ''
host = Host.new :name => "myfullhost", :managed => true, :build => false
host.valid?
refute host.errors[:root_pass].present?
end

test "should save if root password is undefined when the compute resource is image capable and in build mode" do
host = Host.new :name => "myfullhost", :managed => true, :build => true, :compute_resource_id => compute_resources(:openstack).id
host.valid?
refute host.errors[:root_pass].any?
end

test "should not save if root password is undefined when the host is managed and in build mode" do
Setting[:root_pass] = ''
host = Host.new :name => "myfullhost", :managed => true, :build => true
refute host.valid?
assert host.errors[:root_pass].present?
end

test "should not save if neither ptable or disk are defined when the host is managed" do
host = Host.create :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:domain => domains(:mydomain), :operatingsystem => Operatingsystem.first, :subnet => subnets(:two), :medium => media(:one),
:architecture => Architecture.first, :managed => true
refute_valid host
end

test "should save if neither ptable or disk are defined when the host is not managed" do
host = Host.create :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:medium => media(:one), :operatingsystem => operatingsystems(:redhat), :architecture => architectures(:x86_64),
:domain => domains(:mydomain), :subnet => subnets(:two), :managed => false
assert host.valid?
end

test "should save if ptable is defined" do
host = Host.create :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat), :medium => media(:one),
:subnet => subnets(:two), :architecture => architectures(:x86_64), :ptable => Ptable.first
assert !host.new_record?
end

test "should save if disk is defined" do
host = Host.create :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.3",
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat), :subnet => subnets(:two), :medium => media(:one),
:architecture => architectures(:x86_64), :disk => "aaa"
assert !host.new_record?
end

test "should not save if IP is not in the right subnet" do
host = Host.create :name => "myfullhost", :mac => "aabbecddeeff", :ip => "123.5.2.3", :ptable => FactoryBot.create(:ptable),
:domain => domains(:mydomain), :operatingsystem => Operatingsystem.first, :subnet => subnets(:two), :managed => true, :medium => media(:one),
:architecture => Architecture.first, :ip6 => "2001:db8::1", :subnet6 => subnets(:six)
refute host.valid?, "Host should be invalid: #{host.errors.messages}"
assert_includes host.errors.messages.keys, :"interfaces.ip"
assert_includes host.errors.messages.keys, :"interfaces.ip6"
end

test "should not save if installation media is missing" do
host = Host.new :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.03", :ptable => FactoryBot.create(:ptable),
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat), :subnet => subnets(:two),
:architecture => architectures(:x86_64), :managed => true, :build => true,
:owner_type => "User", :root_pass => "xybxa6JUkz63w"
refute host.valid?
assert_equal "can't be blank", host.errors[:medium_id][0]
end

test "should save if owner_type is empty and Host is unmanaged" do
host = Host.new :name => "myfullhost", :mac => "aabbecddeeff", :ip => "3.3.4.03", :medium => media(:one),
:domain => domains(:mydomain), :operatingsystem => operatingsystems(:redhat), :subnet => subnets(:two),
:architecture => architectures(:x86_64), :managed => false
assert host.valid?
end

test "show be enabled by default" do
host = Host.create :name => "myhost", :mac => "aabbccddeeff"
assert host.enabled?
end

test "host can be disabled" do
host = Host.create :name => "myhost", :mac => "aabbccddeeff"
host.enabled = false
host.save
assert host.disabled?
end

test "a fqdn Host should be assigned to a domain if such domain exists" do
domain = domains(:mydomain)
host = Host.create :name => "host.mydomain.net", :mac => "aabbccddeaff", :ip => "2.3.04.03",
:operatingsystem => operatingsystems(:redhat), :subnet => subnets(:one), :medium => media(:one),
:architecture => architectures(:x86_64), :disk => "aaa"
host.valid?
assert_equal domain, host.domain
end

test "custom_disk_partition_with_erb" do
operatingsystem = operatingsystems(:redhat)
arch = FactoryBot.build(:architecture)
medium = FactoryBot.build(:medium)
operatingsystem.architectures << arch
operatingsystem.media << medium
host = FactoryBot.build(
:host,
:operatingsystem => operatingsystem,
:architecture => arch,
:medium => medium
)
host.disk = "<%= template_name %> - <%= @osver %>"
assert host.save
assert host.disk.present?
assert_equal "Custom disk layout - #{operatingsystem.major}", host.diskLayout
end

test "custom_disk_partition_with_ptable" do
h = FactoryBot.create(:host, :managed, disk: '')
assert h.ptable.update(layout: '<%= template_name %>')
refute h.disk.present?
assert_equal h.ptable.name, h.diskLayout
end

test 'custom disk partition with ptable can render snippets' do
snippet = FactoryBot.create(:provisioning_template, :snippet)
h = FactoryBot.create(:host, :managed, disk: '')
assert h.ptable.update(layout: "<%= snippet('#{snippet.name}') %>")
refute h.disk.present?
assert_equal snippet.template, h.diskLayout
end

test "models are updated when host.model has no value" do
h = FactoryBot.create(:host)
FactoryBot.create(:fact_value, :value => 'superbox', :host => h,
:fact_name => FactoryBot.create(:fact_name, :name => 'kernelversion'))
assert_difference('Model.count') do
facts = read_json_fixture('facts/facts.json')
h.populate_fields_from_facts(
mock_parser(facts['facts']),
'puppet',
nil)
end
end

test "hostgroup should set default values for new host" do
hg = hostgroups(:common)
h = Host.new

h.architecture = architectures(:sparc)

h.hostgroup = hg
h.set_hostgroup_defaults

assert_equal hg.operatingsystem, h.operatingsystem
assert_equal architectures(:sparc), h.architecture
# overwrite host attrs with values from hostgroup
h.set_hostgroup_defaults true
assert_equal hg.operatingsystem, h.operatingsystem
assert_equal hg.architecture, h.architecture
end

test "host os attributes must be associated with the host os" do
h = FactoryBot.create(:host, :managed)
h.architecture = architectures(:sparc)
assert !h.os.architectures.include?(h.arch)
assert !h.valid?
assert_equal ["#{h.architecture} does not belong to #{h.os} operating system"], h.errors[:architecture_id]
end

test "should not allow short root passwords for managed host in build mode" do
h = FactoryBot.create(:host, :managed)
h.build = true
h.root_pass = "2short"
h.valid?
assert h.errors[:root_pass].include?("should be 8 characters or more")
end

test "should allow build mode for managed hosts" do
h = FactoryBot.build(:host, :managed)
assert h.valid?
h.build = true
assert h.valid?
end

test "should allow build mode for unmanaged hosts" do
h = FactoryBot.build_stubbed(:host)
assert h.valid?
h.build = true
assert h.valid?
end

test "should allow to save root pw" do
h = FactoryBot.create(:host, :managed)
pw = h.root_pass
h.root_pass = "12345678"
h.hostgroup = nil
assert h.save!
assert_not_equal pw, h.root_pass
end

test "should allow to revert to default root pw" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
h = FactoryBot.create(:host, :managed)
h.root_pass = "xybxa6JUkz63w"
assert h.save
h.root_pass = nil
assert h.save!
assert_equal h.root_pass, Setting[:root_pass]
end

test "should crypt the password and update it in the database" do
unencrypted_password = "xybxa6JUkz63w"
host = FactoryBot.create(:host, :managed)
host.hostgroup = nil
host.root_pass = unencrypted_password
assert host.save!
first_password = host.root_pass

# Make sure that the password gets encrypted in the DB, we don't care how it does that
refute first_password.include?(unencrypted_password)

# Check it changes
host.root_pass = "12345678"
assert host.save
assert_not_equal first_password, host.root_pass
# Encrypted passwords should have UTF-8 encoding
assert_equal Encoding::UTF_8, host.root_pass.encoding
end

test "should pass through existing salt when saving root pw" do
h = FactoryBot.create(:host, :managed)
pass = "$1$jmUiJ3NW$bT6CdeWZ3a6gIOio5qW0f1"
h.root_pass = pass
h.hostgroup = nil
assert h.save
assert_equal pass, h.root_pass
end

test "should base64-encode the root password and update it in the database" do
unencrypted_password = "xybxa6JUkz63w"
host = FactoryBot.create(:host, :managed)
host.hostgroup = nil
host.operatingsystem.password_hash = 'Base64'
host.root_pass = unencrypted_password
assert host.save!
assert_equal 'eHlieGE2SlVrejYzdw==', host.root_pass
# Encrypted passwords should have UTF-8 encoding
assert_equal Encoding::UTF_8, host.root_pass.encoding
end

test "should not reencode base64 passwords" do
unencrypted_password = "xybxa6JUkz63w"
host = FactoryBot.create(:host, :managed)
host.hostgroup = nil
host.operatingsystem.password_hash = 'Base64'
host.operatingsystem.save
host.root_pass = unencrypted_password
assert host.save!
host.reload
host.name = "whatever"
assert host.save!
assert_equal 'eHlieGE2SlVrejYzdw==', host.root_pass
# then let's check that we can change root pass
host.root_pass = "oh my pass"
assert host.save!
refute_equal host.root_pass, 'eHlieGE2SlVrejYzdw=='
end

test "should be able to generate extremely long passwords" do
unencrypted_password = "a" * 500
host = FactoryBot.create(:host, :managed)
host.hostgroup = nil
host.operatingsystem.password_hash = 'Base64-Windows'
host.operatingsystem.save
host.root_pass = unencrypted_password
assert host.save!
assert_equal 'YQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAGEAYQBhAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==', host.root_pass
end

test "should not reencode base64-windows passwords" do
unencrypted_password = "xybxa6JUkz63w"
host = FactoryBot.create(:host, :managed)
host.hostgroup = nil
host.operatingsystem.password_hash = 'Base64-Windows'
host.operatingsystem.save
host.root_pass = unencrypted_password
assert host.save!
assert_equal 'eAB5AGIAeABhADYASgBVAGsAegA2ADMAdwBBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA=', host.root_pass
host.reload
host.name = "whatever"
assert host.save!
assert_equal 'eAB5AGIAeABhADYASgBVAGsAegA2ADMAdwBBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA=', host.root_pass
# then let's check that we can change root pass
host.root_pass = "oh my pass"
assert host.save!
refute_equal host.root_pass, 'eAB5AGIAeABhADYASgBVAGsAegA2ADMAdwBBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA='
end

test "should use hostgroup base64 root password without reencoding" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
hg = FactoryBot.create(:hostgroup, :with_os, :with_domain)
hg.operatingsystem.update_attribute(:password_hash, 'Base64')
hg.root_pass = "abcdefghi"
hg.save!
assert_equal "YWJjZGVmZ2hp", hg.root_pass

h = FactoryBot.create(:host, :managed, :hostgroup => hg, :operatingsystem => nil)
h.root_pass = nil
h.save!
assert h.root_pass.present?
assert_equal h.hostgroup.root_pass, h.root_pass
assert_nil h.read_attribute(:root_pass), 'should not copy root_pass to host unmodified'
end

test "should use hostgroup base64-windows root password without reencoding" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
hg = FactoryBot.create(:hostgroup, :with_os, :with_domain)
hg.operatingsystem.update_attribute(:password_hash, 'Base64-Windows')
hg.root_pass = "xybxa6JUkz63w"
hg.save!
assert_equal "eAB5AGIAeABhADYASgBVAGsAegA2ADMAdwBBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA=", hg.root_pass

h = FactoryBot.create(:host, :managed, :hostgroup => hg, :operatingsystem => nil)
h.root_pass = nil
h.save!
assert h.root_pass.present?
assert_equal h.hostgroup.root_pass, h.root_pass
assert_nil h.read_attribute(:root_pass), 'should not copy root_pass to host unmodified'
end

test "should use hostgroup root password" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
h = FactoryBot.create(:host, :managed, :with_hostgroup)
h.hostgroup.update_attribute(:root_pass, "abc")
h.root_pass = nil
assert h.save
assert h.root_pass.present?
assert_equal h.hostgroup.root_pass, h.root_pass
assert_nil h.read_attribute(:root_pass), 'should not copy root_pass to host unmodified'
end

test "should use a nested hostgroup parent root password" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
h = FactoryBot.create(:host, :managed, :with_hostgroup)
g = h.hostgroup
p = FactoryBot.create(:hostgroup)
p.update_attribute(:root_pass, "abc")
h.root_pass = nil
g.root_pass = nil
g.parent = p
g.save
assert h.save
assert h.root_pass.present?
assert_equal p.root_pass, h.root_pass
assert_nil h.read_attribute(:root_pass), 'should not copy root_pass to host unmodified'
end

test "should use settings root password" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
h = FactoryBot.create(:host, :managed)
h.root_pass = nil
assert h.save
assert h.root_pass.present?
assert_equal Setting[:root_pass], h.root_pass
assert_nil h.read_attribute(:root_pass), 'should not copy root_pass to host'
end

test "should change password when hostgroup is changed" do
first_password = "$1$default$hCkak1kaJPQILNmYbUXhD0"
second_password = "$2$newone$hCkak1kaJPQILNmYbUXhD1"

h1 = FactoryBot.create(:hostgroup, :root_pass => first_password)
h2 = FactoryBot.create(:hostgroup, :root_pass => second_password)

host = FactoryBot.create(:host, :managed, :hostgroup => h1, :root_pass => nil)
assert host.save
assert host.root_pass.present?
assert_equal first_password, host.root_pass
assert_equal host.root_pass_source, 'hostgroup'

host.hostgroup = h2
assert host.save
assert host.root_pass.present?
assert_equal second_password, host.root_pass
assert_equal host.root_pass_source, 'hostgroup'
end

test "should change password when hostgroup is changed to hostgroup without password" do
first_password = "$1$default$hCkak1kaJPQILNmYbUXhD0"
Setting[:root_pass] = "$2$newone$hCkak1kaJPQILNmYbUXhD1"

h1 = FactoryBot.create(:hostgroup, :root_pass => first_password)
h2 = FactoryBot.create(:hostgroup, :root_pass => nil)

host = FactoryBot.create(:host, :managed, :hostgroup => h1, :root_pass => nil)
assert host.save
assert host.root_pass.present?
assert_equal first_password, host.root_pass
assert_equal host.root_pass_source, 'hostgroup'

host.hostgroup = h2
assert host.save
assert host.root_pass.present?
assert_equal Setting[:root_pass], host.root_pass
assert_equal host.root_pass_source, 'global setting'
end

test "should change password when hostgroup without password is changed to hostgroup with password" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
second_password = "$2$newone$hCkak1kaJPQILNmYbUXhD1"

h1 = FactoryBot.create(:hostgroup, :root_pass => nil)
h2 = FactoryBot.create(:hostgroup, :root_pass => second_password)

host = FactoryBot.create(:host, :managed, :hostgroup => h1, :root_pass => nil)
assert host.save
assert host.root_pass.present?
assert_equal Setting[:root_pass], host.root_pass
assert_equal host.root_pass_source, 'global setting'

host.hostgroup = h2
assert host.save
assert host.root_pass.present?
assert_equal second_password, host.root_pass
assert_equal host.root_pass_source, 'hostgroup'
end

test "should change password when hostgroup without password is changed to hostgroup with password and parent" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
second_password = "$2$newone$hCkak1kaJPQILNmYbUXhD1"

h1 = FactoryBot.create(:hostgroup, :root_pass => nil)
parent_h2 = FactoryBot.create(:hostgroup, :root_pass => second_password)
h2 = FactoryBot.create(:hostgroup, :parent => parent_h2, :root_pass => nil)

host = FactoryBot.create(:host, :managed, :hostgroup => h1, :root_pass => nil)
assert host.save
assert host.root_pass.present?
assert_equal Setting[:root_pass], host.root_pass
assert_equal host.root_pass_source, 'global setting'

host.hostgroup = h2
assert host.save
assert host.root_pass.present?
assert_equal second_password, host.root_pass
assert_equal host.root_pass_source, 'hostgroup'
end

test "should use settings root password when hostgroup has empty root password" do
Setting[:root_pass] = "$1$default$hCkak1kaJPQILNmYbUXhD0"
g = FactoryBot.create(:hostgroup, :with_domain, :with_os, :root_pass => "")
h = FactoryBot.create(:host, :managed, :hostgroup => g)
h.root_pass = ""
h.save
assert_valid h
assert h.root_pass.present?
assert_equal Setting[:root_pass], h.root_pass
assert_nil h.read_attribute(:root_pass), 'should not copy root_pass to host unmodified'
end

test "should use settings root password for windows when hostgroup has empty root password" do
password = "HelloWorld"
Setting[:root_pass] = password.dup
g = FactoryBot.create(:hostgroup, :with_domain, :with_os, :root_pass => "")
h = FactoryBot.create(:host, :managed, :hostgroup => g)

g.operatingsystem.update_attribute(:password_hash, 'Base64-Windows')
g.save
h.root_pass = ""
h.save

assert_valid h
assert h.root_pass.present?
assert_equal Setting[:root_pass], password, 'should not modify Setting[:root_pass]'
assert_equal h.root_pass, 'SABlAGwAbABvAFcAbwByAGwAZABBAGQAbQBpAG4AaQBzAHQAcgBhAHQAbwByAFAAYQBzAHMAdwBvAHIAZAA='
assert_nil h.read_attribute(:root_pass), 'should not copy root_pass to host unmodified'
end

test "should validate pxe loader when provided" do
host = Host.create :name => "myhostpxe", :mac => "aabbecddeeff", :ip => "2.3.4.3", :hostgroup => hostgroups(:common), :managed => true, :pxe_loader => "PXELinux BIOS", :location => taxonomies(:location1), :organization => taxonomies(:organization1)
assert_equal "x86_64", host.architecture.name
assert_equal "PXELinux BIOS", host.pxe_loader
assert_empty host.errors.messages
assert host.valid?
end

test "should save uuid on managed hosts" do
Setting[:use_uuid_for_certificates] = true
host = Host.create :name => "myhost1", :mac => "aabbecddeeff", :ip => "2.3.4.3", :hostgroup => hostgroups(:common), :managed => true, :location => taxonomies(:location1), :organization => taxonomies(:organization1)
assert host.valid?, host.errors.full_messages.to_sentence
assert !host.new_record?
assert_not_nil host.certname
assert_not_equal host.name, host.certname
end

test "should not save uuid on non managed hosts" do
Setting[:use_uuid_for_certificates] = true
host = Host.create :name => "myhost1", :mac => "aabbecddeeff", :ip => "2.3.4.3", :hostgroup => hostgroups(:common), :managed => false
assert host.valid?
assert !host.new_record?
assert_equal host.name, host.certname
end

test "should not save uuid when settings disable it" do
Setting[:use_uuid_for_certificates] = false
host = Host.create :name => "myhost1", :mac => "aabbecddeeff", :ip => "2.3.4.3", :hostgroup => hostgroups(:common), :managed => false
assert host.valid?
assert !host.new_record?
assert_equal host.name, host.certname
end

test "all whitespace should be removed from hostname" do
host = Host.create :name => "my host 1 ", :mac => "aabbecddeeff", :ip => "2.3.4.3", :hostgroup => hostgroups(:common), :managed => false
assert host.valid?
assert !host.new_record?
assert_equal "myhost1.mydomain.net", host.name
end

test "should have only one provision interface" do
organization = FactoryBot.create(:organization)
location = FactoryBot.create(:location)
subnet = FactoryBot.create(:subnet_ipv4, :organizations => [organization], :locations => [location])
host = FactoryBot.create(:host, :managed, :organization => organization,
:location => location, :subnet => subnet,
:ip => subnet.network.succ)
host.interfaces_attributes = [
{ :name => "dummy-bootable2", :ip => "2.3.4.103",
:mac => "aa:bb:cd:cd:ee:ff", :subnet_id => host.subnet_id,
:type => 'Nic::Managed', :domain_id => host.domain_id,
:provision => true },
]
refute host.valid?
assert_equal ['interface is already set on the host'], host.errors['interfaces.provision']
assert_equal 1, host.interfaces.count
end

test "#set_interfaces handles no interfaces" do
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
parser = stub(:class_name_humanized => 'TestParser', :ipmi_interface => {}, :interfaces => {}, :suggested_primary_interface => [nil, nil])
host.set_interfaces(parser)
assert host.primary_interface
assert_empty host.primary_interface.mac
end

test "#set_interfaces updates primary physical interface" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => false, :ipaddress => '10.0.0.200', :ipaddress6 => '2001:db8::2', :identifier => 'eth1'})
host.update_attribute :mac, '00:00:00:11:22:33'
host.update_attribute :ip, '10.0.0.100'
host.update_attribute :ip6, '2001:db8::1'
host.primary_interface.update_attribute :identifier, 'eth0'
refute_nil host.primary_interface
assert_equal '10.0.0.100', host.ip
assert_equal '2001:db8::1', host.ip6

# physical NICs with same MAC are skipped
assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end
assert_equal '10.0.0.200', host.ip
assert_equal '2001:db8::2', host.ip6
assert_equal 'eth1', host.primary_interface.identifier
end

test "#set_interfaces updates existing physical interface" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => false, :ipaddress => '10.0.0.200', :ipaddress6 => '2001:db8::2', :link => false})
FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :ip => '10.10.0.1', :ip6 => '2001:db8::1', :link => true)
assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end
assert_equal '10.0.0.200', host.interfaces.where(:mac => '00:00:00:11:22:33').first.ip
assert_equal '2001:db8::2', host.interfaces.where(:mac => '00:00:00:11:22:33').first.ip6
refute host.interfaces.where(:mac => '00:00:00:11:22:33').first.link
end

test "#set_interfaces does not save when no changes made" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => false, :ipaddress => '10.0.0.1', :ipaddress6 => '2001:db8::1', :link => true})
host.primary_interface.update_attribute :mac, '00:00:00:11:22:33'
host.primary_interface.update_attribute :ip, '10.0.0.1'
host.primary_interface.update_attribute :ip6, '2001:db8::1'
host.primary_interface.update_attribute :identifier, 'eth0'
Nic::Base.any_instance.expects(:save).never
assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end
end

test "#set_interfaces updates existing physical interface by identifier" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:22:33:44', :identifier => 'eth0', :virtual => false, :ipaddress => '10.0.0.200', :ipaddress6 => '2001:db8::2', :link => false})
host.managed = false
host.primary_interface.update(:identifier => 'eth0', :mac => '00:00:00:11:22:33', :ip => '10.10.0.1', :ip6 => '2001:db8::1', :link => true)
assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end

assert_equal '10.0.0.200', host.interfaces.where(:mac => '00:00:00:22:33:44').first.ip
assert_equal '2001:db8::2', host.interfaces.where(:mac => '00:00:00:22:33:44').first.ip6
assert_empty host.interfaces.where(:mac => '00:00:00:11:22:33')
refute host.interfaces.where(:mac => '00:00:00:22:33:44').first.link
end

test "#set_interfaces updates existing physical interface by MAC address" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => false, :ipaddress => '10.10.0.1', :ipaddress6 => '2001:db8::1'})

# primary already existed so it's updated
assert_no_difference 'host.interfaces.tap { |i| i.reload }.count' do
host.set_interfaces(parser)
end
assert_equal '10.10.0.1', host.interfaces.where(:mac => '00:00:00:11:22:33').first.ip
assert_equal '2001:db8::1', host.interfaces.where(:mac => '00:00:00:11:22:33').first.ip6
end

test "#set_interfaces creates new physical interface if none exists" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:34', :virtual => false, :ipaddress => '10.10.0.1', :ipaddress6 => '2001:db8::1'})
host.managed = true

assert_difference 'host.interfaces.tap { |i| i.reload }.count' do
host.set_interfaces(parser)
end
assert_equal '10.10.0.1', host.interfaces.where(:mac => '00:00:00:11:22:34').first.ip
assert_equal '2001:db8::1', host.interfaces.where(:mac => '00:00:00:11:22:34').first.ip6
end

test "#set_interfaces creates new interface with link up if no link fact specified" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => false, :ipaddress => '10.10.0.1'})
host.set_interfaces(parser)
assert host.interfaces.where(:mac => '00:00:00:11:22:33').first.link
end

test "#set_interfaces updates existing bridge interface suggested as primary" do
host, parser = setup_host_with_nic_parser({:identifier => 'br-ex', :macaddress => '00:00:00:11:22:33', :bridge => true, :virtual => true, :ipaddress => '10.10.0.1'})
host.managed = false
host.primary_interface.update(:identifier => 'br-ex', :mac => '00:00:00:11:22:33', :ip => '10.10.0.1')

host.set_interfaces(parser)
assert host.interfaces.where(:identifier => 'br-ex').first.virtual
end

test "#set_interfaces creates new interface even if primary interface has same MAC" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => true, :ipaddress => '10.10.0.1', :attached_to => 'eth0', :identifier => 'eth0_0'})
host.update_attribute :mac, '00:00:00:11:22:33'
host.update_attribute :ip, '10.0.0.100'

assert_difference 'host.interfaces.tap { |i| i.reload }.count' do
host.set_interfaces(parser)
end
assert_equal '10.0.0.100', host.ip
end

test "#set_interfaces creates new interface even if another virtual interface has same MAC but another identifier" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => true, :ipaddress => '10.10.0.2', :identifier => 'eth0_1', :attached_to => 'eth0'})
host.update_attribute :mac, '00:00:00:11:22:44'
FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :ip => '10.10.0.1', :virtual => true, :identifier => 'eth0_0', :attached_to => 'eth0', :name => 'second')

assert_difference 'host.interfaces.tap { |i| i.reload }.count' do
host.set_interfaces(parser)
end
end

test "#set_interfaces updates existing virtual interface only if it has same MAC and identifier" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :virtual => true, :ipaddress => '10.10.0.1', :attached_to => 'eth0', :identifier => 'eth0_0'})
host.primary_interface.update_attribute :identifier, 'eth0'
FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :ip => '10.10.0.200', :virtual => true, :attached_to => 'eth0', :identifier => 'eth0_0')

assert_no_difference 'host.interfaces.tap { |i| i.reload }.count' do
host.set_interfaces(parser)
end
assert_equal '10.10.0.1', host.interfaces.where(:identifier => 'eth0_0').first.ip
end

test "#set_interfaces creates IPMI device if parameters are found" do
host, parser = setup_host_with_ipmi_parser({:ipaddress => '192.168.0.1', :macaddress => '00:00:00:11:33:55'})

assert_difference 'host.interfaces.tap { |i| i.reload }.count' do
host.set_interfaces(parser)
end
bmc = host.interfaces.where(:type => 'Nic::BMC').first
assert_equal '192.168.0.1', bmc.ip
assert_equal '00:00:00:11:33:55', bmc.mac
end

test "#set_interfaces updates IPMI device if parameters are found and there's existing IPMI with same MAC" do
host, parser = setup_host_with_ipmi_parser({:ipaddress => '192.168.0.1', :macaddress => '00:00:00:11:33:55'})
FactoryBot.create(:nic_bmc, :host => host, :mac => '00:00:00:11:33:55', :ip => '10.10.0.200', :virtual => false)

assert_no_difference 'host.interfaces.tap { |i| i.reload }.count' do
host.set_interfaces(parser)
end
bmcs = host.interfaces.where(:type => 'Nic::BMC')
assert_equal 1, bmcs.count
assert_equal '192.168.0.1', bmcs.first.ip
end

test "#set_interfaces updates associated virtuals identifier on identifier change" do
# eth4 was renamed to eth5 (same MAC)
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false, :identifier => 'eth5'})
FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :ip => '10.10.0.1', :identifier => 'eth4')
virtual = FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :virtual => true, :ip => '10.10.0.2', :identifier => 'eth4.1', :attached_to => 'eth4')

host.set_interfaces(parser)
virtual.reload
assert_equal 'eth5.1', virtual.identifier
assert_equal 'eth5', virtual.attached_to
end

test "#set_interfaces does not update unassociated virtuals identifier on identifier change if original identifier was blank" do
# interface with empty identifier was renamed to eth5 (same MAC)
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup), :mac => '00:00:00:11:22:33')
host.primary_interface.update_attribute :identifier, ''
hash = { :bond0 => {:macaddress => '00:00:00:44:55:66', :ipaddress => '10.10.0.2', :virtual => true},
:eth5 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false, :identifier => 'eth5'},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)
bond0 = FactoryBot.create(:nic_bond, :host => host, :mac => '00:00:00:44:55:66', :ip => '10.10.0.2', :identifier => 'bond0', :attached_to => '')

host.set_interfaces(parser)
bond0.reload
assert_equal 'bond0', bond0.identifier
assert_equal '', bond0.attached_to
end

test "set_interfaces updates associated virtuals identifier even on primary interface" do
host, parser = setup_host_with_nic_parser({:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false, :identifier => 'eth1'})
host.primary_interface.update_attribute :identifier, 'eth0'
host.primary_interface.update_attribute :mac, '00:00:00:11:22:33'
virtual = FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :virtual => true, :ip => '10.10.0.2', :identifier => 'eth0.1', :attached_to => 'eth0')

host.set_interfaces(parser)
virtual.reload
assert_equal 'eth1.1', virtual.identifier
assert_equal 'eth1', virtual.attached_to
end

test "#set_interfaces matches bonds based on identifier and even updates its mac" do
# interface with empty identifier was renamed to eth5 (same MAC)
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup), :mac => '00:00:00:11:22:33')
hash = { :bond0 => {:macaddress => 'aa:bb:cc:44:55:66', :ipaddress => '10.10.0.3', :virtual => true},
:eth5 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false, :identifier => 'eth5'},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)
bond0 = FactoryBot.create(:nic_bond, :host => host, :mac => '00:00:00:44:55:66', :ip => '10.10.0.2', :identifier => 'bond0')

host.set_interfaces(parser)
host.interfaces.reload
assert_equal 1, host.interfaces.bonds.size
bond0.reload
assert_equal 'aa:bb:cc:44:55:66', bond0.mac
assert_equal '10.10.0.3', bond0.ip
end

test "#set_interfaces matches bridges based on identifier and even updates its mac" do
# interface with empty identifier was renamed to eth5 (same MAC)
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup), :mac => '00:00:00:11:22:33')
hash = { :br0 => {:macaddress => 'aa:bb:cc:44:55:66', :ipaddress => '10.10.0.3', :virtual => true},
:eth5 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false, :identifier => 'eth5'},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)
br0 = FactoryBot.create(:nic_bridge, :host => host, :mac => '00:00:00:44:55:66', :ip => '10.10.0.2', :identifier => 'br0')

host.set_interfaces(parser)
host.interfaces.reload
assert_equal 1, host.interfaces.bridges.size
br0.reload
assert_equal 'aa:bb:cc:44:55:66', br0.mac
assert_equal '10.10.0.3', br0.ip
end

test "#set_interfaces creates virtual primary interface as suggested" do
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
hash = { :eno777 => {:identifier => 'eno777', :macaddress => '00:00:00:11:22:33', :virtual => false},
:eno777_22 => {:identifier => 'eno777_22', :macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => true, :attached_to => 'eno777', :tag => '22'},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => [:eno777_22, hash[:eno777_22]])
host.set_interfaces(parser)
host.interfaces.reload
assert_equal 2, host.interfaces.size
assert_equal 'eno777_22', host.primary_interface.identifier
assert_equal '10.10.0.1', host.primary_interface.ip
end

test "#set_interfaces updates associated virtuals identifier on identifier change mutualy exclusively" do
# eth4 was renamed to eth5 and eth5 renamed to eth4
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
hash = { :eth5 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false},
:eth4 => {:macaddress => '00:00:00:44:55:66', :ipaddress => '10.10.0.2', :virtual => false},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)
physical4 = FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :ip => '10.10.0.1', :identifier => 'eth4')
physical5 = FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:44:55:66', :ip => '10.10.0.2', :identifier => 'eth5')
virtual4 = FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :virtual => true, :ip => '10.10.0.10', :identifier => 'eth4.1', :attached_to => 'eth4')
virtual5 = FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:44:55:66', :virtual => true, :ip => '10.10.0.20', :identifier => 'eth5.1', :attached_to => 'eth5')

host.set_interfaces(parser)
physical4.reload
physical5.reload
virtual4.reload
virtual5.reload
assert_equal 'eth5', physical4.identifier
assert_equal 'eth4', physical5.identifier
assert_equal 'eth5.1', virtual4.identifier
assert_equal 'eth4.1', virtual5.identifier
assert_equal 'eth5', virtual4.attached_to
assert_equal 'eth4', virtual5.attached_to
end

test "#set_interfaces updates virtuals with :attached_to defined" do
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :ip => '10.10.0.1', :identifier => 'em1')
virtual = FactoryBot.create(:nic_managed, :host => host, :mac => '00:00:00:11:22:33', :virtual => true, :ip => '10.10.0.2', :identifier => 'bond0', :attached_to => 'em1')
hash = { :em1 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false},
:bond0 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.42', :virtual => true, :attached_to => nil},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)

host.set_interfaces(parser)
virtual.reload
assert_equal 'em1', virtual.attached_to
assert_equal '10.10.0.42', virtual.ip
end

test "#set_interfaces does not allow two physical devices with same IP, it ignores the second" do
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
hash = { :eth0 => {:macaddress => '00:00:00:55:66:77', :ipaddress => '10.10.0.1', :virtual => false },
:eth1 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false },
:eth2 => {:macaddress => '00:00:00:44:55:66', :ipaddress => '10.10.0.2', :virtual => false },
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)

host.set_interfaces(parser)
host.reload
assert_includes host.interfaces.map(&:identifier), 'eth2'
assert_includes host.interfaces, host.primary_interface
refute_includes host.interfaces.map(&:identifier), 'eth1'
assert_equal 2, host.interfaces.size
end

context 'update_subnets_from_facts is enabled' do
setup do
Setting[:update_subnets_from_facts] = true
end
let(:subnet) { FactoryBot.create(:subnet_ipv4, :dhcp, :network => '10.10.0.0') }

test "#set_interfaces updates existing physical interface when subnet does not match ip and new subnet is unknown" do
host = FactoryBot.create(:host,
:managed,
:mac => '00:00:00:11:22:33',
:ip => '10.10.0.1',
:subnet => subnet
)
hash = { :eth0 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.20.2', :virtual => false},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.last)

assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end

assert_equal '10.10.20.2', host.primary_interface.ip
assert_nil host.primary_interface.subnet
end

test "#set_interfaces updates existing physical interface when subnet does not match ip and new subnet is known" do
subnet2 = FactoryBot.create(:subnet_ipv4, :dhcp, :network => '10.10.20.0')
host = FactoryBot.create(:host,
:managed,
:mac => '00:00:00:11:22:33',
:ip => '10.10.0.1',
:subnet => subnet
)
hash = { :eth0 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.20.2', :virtual => false},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.last)

assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end

assert_equal '10.10.20.2', host.primary_interface.ip
assert_equal subnet2, host.primary_interface.subnet
end

test "#set_interfaces does not update subnet when keep_subnet attribute is present" do
FactoryBot.create(:subnet_ipv4, :dhcp, :network => '10.10.20.0')
host = FactoryBot.create(:host,
:managed,
:mac => '00:00:00:11:22:33',
:ip => '10.10.0.1',
:subnet => subnet
)
hash = { :eth0 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.20.2', :virtual => false, :keep_subnet => true},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.last)
assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end

assert_equal subnet, host.primary_interface.subnet
end

test "#set_interfaces updates existing physical interface when subnet6 is set but facts report no ipv6 addr" do
subnet6 = FactoryBot.create(:subnet_ipv6, :network => '2001:db8::')
host = FactoryBot.create(:host,
:managed,
:mac => '00:00:00:11:22:33',
:ip => '10.10.0.1',
:ip6 => '2001:db8::10',
:subnet => subnet,
:subnet6 => subnet6
)
hash = { :eth0 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => false},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.last)

assert_no_difference 'Nic::Base.count' do
host.set_interfaces(parser)
end
assert_equal '10.10.0.1', host.primary_interface.ip
assert_equal subnet, host.primary_interface.subnet
assert_nil host.primary_interface.ip6
assert_nil host.primary_interface.subnet6
end
end

test "#set_interfaces creates bond interfaces according to identifier" do
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
hash = {
:eth1 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '', :virtual => false},
:bond0 => {:macaddress => '00:00:00:11:22:33', :ipaddress => '10.10.0.1', :virtual => true},
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)

host.set_interfaces(parser)
host.reload
assert_includes host.interfaces.map(&:identifier), 'eth1'
assert_includes host.interfaces.map(&:identifier), 'bond0'
assert_equal 2, host.interfaces.size
assert_kind_of Nic::Bond, host.interfaces.find_by_identifier('bond0')
assert_kind_of Nic::Managed, host.interfaces.find_by_identifier('eth1')
end

test "host can't have more interfaces with the same identifier" do
host = FactoryBot.build_stubbed(:host, :managed)
host.primary_interface.identifier = 'eth0'
nic = host.interfaces.build(:identifier => 'eth0')
refute host.valid?
assert nic.errors[:identifier].present?
assert host.errors[:interfaces].present?
nic.identifier = 'eth1'
host.valid?
refute_includes nic.errors.attribute_names, :identifier
refute_includes host.errors.attribute_names, :interfaces
end

# Token tests

context "tokens are enabled" do
setup do
Setting[:token_duration] = 30
end

test "built should clean tokens" do
h = FactoryBot.create(:host, :managed)
h.create_token(:value => "aaaaaa", :expires => Time.now.utc)
assert_equal Token.all.size, 1
h.expire_token
assert_equal Token.all.size, 0
end

test "hosts should be able to retrieve their token if one exists" do
h = FactoryBot.create(:host, :managed, build: true)
assert_equal Token.first, h.token
end

test "a token can be matched to a host" do
h = FactoryBot.create(:host, :managed)
h.create_token(:value => "aaaaaa", :expires => Time.now.utc + 1.minute)
assert_equal h, Host.for_token("aaaaaa").first
end

test "a token cannot be matched to a host when expired" do
h = FactoryBot.create(:host, :managed)
h.create_token(:value => "aaaaaa", :expires => 1.minute.ago)
refute Host.for_token("aaaaaa").first
end

test "deleting an host with an expired token does not cause a Foreign Key error" do
h = FactoryBot.create(:host, :managed)
h.create_token(:value => "aaaaaa", :expires => 5.minutes.ago)
assert_nothing_raised { h.reload.destroy }
end

test "token_expired? should be true if expiration date is in the past" do
h = FactoryBot.create(:host, :managed)
h.create_token(:value => "aaaaaa", :expires => Time.now.utc - 1)
assert_equal h.token_expired?, true
end

test "token_expired? should be false if expiration date is in the future" do
h = FactoryBot.create(:host, :managed)
h.create_token(:value => "aaaaaa", :expires => Time.now.utc + 30)
assert_equal h.token_expired?, false
end
end

context "tokens are disabled" do
setup do
Setting[:token_duration] = 0
end

test "built should clean tokens even when tokens are disabled" do
h = FactoryBot.create(:host, :managed)
h.create_token(:value => "aaaaaa", :expires => Time.now.utc)
assert_equal Token.all.size, 1
h.expire_token
assert_equal Token.all.size, 0
end

test "token should be nil when tokens are disabled or invalid" do
h = FactoryBot.create(:host, :managed)
assert_nil h.token
Setting[:token_duration] = 30
h.reload
assert_nil h.token
end
end

test "can search hosts by hostgroup" do
# setup - add parent to hostgroup :common (not in fixtures, since no field parent_id)
hostgroup = hostgroups(:db)
parent_hostgroup = hostgroups(:common)
hostgroup.parent_id = parent_hostgroup.id
assert hostgroup.save!

FactoryBot.create(:host, :hostgroup => hostgroup)
# search hosts by hostgroup label
hosts = Host.search_for("hostgroup_title = #{hostgroup.title}")
assert_equal 1, hosts.count
assert_equal hosts.first.hostgroup_id, hostgroup.id
end

test "can search hosts by parent hostgroup and its descendants" do
# setup - add parent to hostgroup :common (not in fixtures, since no field parent_id)
hostgroup = hostgroups(:db)
parent_hostgroup = hostgroups(:common)
hostgroup.parent_id = parent_hostgroup.id
assert hostgroup.save!

FactoryBot.create(:host, :hostgroup => hostgroup)
FactoryBot.create(:host, :hostgroup => parent_hostgroup)
# search hosts by parent hostgroup label
hosts = Host::Managed.search_for("parent_hostgroup = Common")
assert_equal hosts.count, 2
assert_equal ["Common", "Common/db"].sort, hosts.map { |h| h.hostgroup.title }.sort
end

test "search hosts by non-existing parent hostgroup returns no results" do
FactoryBot.create(:host, :with_hostgroup)
refute_equal Host::Managed.count, 0
hosts = Host::Managed.search_for("parent_hostgroup = Nosuchgroup")
assert_equal hosts.count, 0
end

test "can build a hash of all host facts" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 22)
assert_equal host.facts.keys.length, 22
end

test "can build a hash of specific host facts" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 5)
assert_equal host.facts(host.fact_names.map(&:name).first(3)).keys.length, 3
end

test "makes only one SQL query when you pass specific fact names" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 5)
fact_names = host.fact_names.map(&:name).first(3)
assert_sql_queries(1) do
host.facts_hash(fact_names)
end
end

test "makes one SQL query per host.facts_hash" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 5)
fact_names = host.fact_names.map(&:name).first(2)
assert_sql_queries(2) do
host.facts_hash[fact_names[0]]
host.facts_hash[fact_names[1]]
end
end

test "facts caches facts_hash" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 5)
fact_names = host.fact_names.map(&:name).first(2)
assert_sql_queries(1) do
host.facts[fact_names[0]]
host.facts[fact_names[1]]
host.facts[fact_names[0]]
host.facts[fact_names[1]]
end
end

test "facts does not cache if you pass fact names" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 5)
fact_names = host.fact_names.map(&:name).first(2)
assert_sql_queries(3) do
host.facts(fact_names)
host.facts(fact_names)
host.facts(fact_names)
end
end

test "can search hosts by numeric and string facts" do
host = FactoryBot.create(:host, :hostname => 'num001.example.com')
HostFactImporter.new(host).import_facts({
:architecture => "x86_64",
:interfaces => 'eth0',
:operatingsystem => 'RedHat-test',
:operatingsystemrelease => '6.2',
:memory_mb => "64498",
:custom_fact => "find_me",
})

hosts = Host::Managed.search_for("facts.memory_mb > 112889")
assert_equal hosts.count, 0

hosts = Host::Managed.search_for("facts.memory_mb > 6544")
assert_equal hosts.count, 1
assert_equal ["num001.example.com"], hosts.map { |h| h.name }.sort

hosts = Host::Managed.search_for("facts.memory_mb ~ 64498")
assert_equal hosts.count, 1
assert_equal ["num001.example.com"], hosts.map { |h| h.name }.sort

hosts = Host::Managed.search_for("facts.custom_fact = find_me")
assert_equal hosts.count, 1
assert_equal ["num001.example.com"], hosts.map { |h| h.name }.sort

hosts = Host::Managed.search_for("facts.memory_mb > 6544 and facts.custom_fact = find_me")
assert_equal hosts.count, 1
assert_equal ["num001.example.com"], hosts.map { |h| h.name }.sort

hosts = Host::Managed.search_for("facts.custom_fact ~ %nd_me")
assert_equal hosts.count, 1
assert_equal ["num001.example.com"], hosts.map { |h| h.name }.sort

hosts = Host::Managed.search_for("facts.custom_fact ~ nd_m")
assert_equal hosts.count, 1
assert_equal ["num001.example.com"], hosts.map { |h| h.name }.sort
end

test "search by fact name is not vulnerable to SQL injection in name" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 1)
query = "facts.a'b = c or facts.#{host.facts.keys.first} = #{host.facts.values.first}"
assert_equal [host], Host::Managed.search_for(query)
end

test "search by fact name is not vulnerable to SQL injection in value" do
host = FactoryBot.create(:host, :with_facts, :fact_count => 1)
query = "facts.a = \"a'b\" or facts.#{host.facts.keys.first} = #{host.facts.values.first}"
assert_equal [host], Host::Managed.search_for(query)
end

test "host edit permision must be always edit_hosts" do
h = FactoryBot.build(:host, :managed)
assert_equal "edit_hosts", h.send(:permission_name, :edit)
end

test "non-admin user with edit_hosts permission can update interface" do
@one = users(:one)
# add permission for user :one
as_admin do
filter = FactoryBot.build(:filter)
filter.permissions = [Permission.find_by_name('edit_hosts')]
filter.save!
role = Role.where(:name => "testing_role").first_or_create
role.filters = [filter]
role.save!
@one.roles = [role]
@one.save!
end
h = FactoryBot.create(:host, :managed)
assert h.interfaces.create :mac => "cabbccddeeff", :host => h, :type => 'Nic::BMC',
:provider => "IPMI", :username => "root", :password => "secret", :ip => "2.3.4.5",
:identifier => 'eth2', :subnet => subnets(:one)
as_user :one do
h.update!("interfaces_attributes" => {"0" => {"mac" => "00:52:10:1e:45:16"}})
assert_empty h.errors
end
end

context "built notifications" do
let(:host) { FactoryBot.build(:host, :managed, :owner => User.current) }

setup do
ActionMailer::Base.deliveries = []
User.current.mail_notifications << MailNotification[:host_built]
end

test "is sent notification when installed" do
host.built(true)
email = ActionMailer::Base.deliveries.detect { |mail| mail.subject =~ /Host #{host} is built/ }
assert email
assert_match(/Your host has finished/, email.body.encoded)
end

test "is not sent when not installed" do
host.built(false)
assert_empty ActionMailer::Base.deliveries
end
end

test "can auto-complete searches by host name" do
as_admin do
completions = Host::Managed.complete_for("name =")
Host::Managed.all.each do |h|
assert completions.include?("name = #{h.name}"), "completion missing: #{h}"
end
end
end

test "can auto-complete searches by facts" do
as_admin do
completions = Host::Managed.complete_for("facts.")
FactName.order(:name).each do |fact|
assert completions.include?(" facts.#{fact.name} "), "completion missing: #{fact}"
end
end
end

test "can auto-complete user searches by current_user" do
as_admin do
completions = Host::Managed.complete_for("user.login =")
assert completions.include?("user.login = current_user"), "completion missing: current_user"
end
end

test "should accept lookup_values_attributes" do
h = FactoryBot.create(:host)
as_admin do
assert_difference "LookupValue.count" do
assert h.update(:lookup_values_attributes => {"0" => {:lookup_key_id => lookup_keys(:one).id, :value => "8080" }})
end
end
end

context "search hosts by parameter" do
test "can search hosts by params" do
host = FactoryBot.create(:host, :with_parameter)
parameter = host.parameters.first
results = Host.search_for(%{params_name = "#{parameter.name}"})
assert_equal 1, results.count
assert_equal parameter.value, results.first.params[parameter.name]
end

test "search by params returns only the relevant hosts" do
hg = hostgroups(:common)
host = FactoryBot.create(:host, :hostgroup => hg)
host2 = FactoryBot.create(:host, :hostgroup => nil)
parameter = hg.group_parameters.first
results = Host.search_for(%{params.#{parameter.name} = "#{parameter.searchable_value}"})
assert results.include?(host)
refute results.include?(host2)
end

test "can search hosts by domain connected to their primary interface" do
host = FactoryBot.create(:host, :managed)
domain = host.domain
domain.domain_parameters << DomainParameter.create(:name => "animal", :value => "dog", :parameter_type => 'string')
parameter = domain.domain_parameters.first
results = Host.search_for(%{params.#{parameter.name} = "#{parameter.searchable_value}"})
assert results.include?(host)
end

test "can search hosts by inherited params from a hostgroup" do
hg = hostgroups(:common)
host = FactoryBot.create(:host, :hostgroup => hg)
parameter = hg.group_parameters.first
results = Host.search_for(%{params.#{parameter.name} = "#{parameter.searchable_value}"})
assert results.include?(host)
end

test "can search hosts by inherited params from a parent hostgroup" do
parent_hg = hostgroups(:common)
hg = FactoryBot.create(:hostgroup, :parent => parent_hg)
host = FactoryBot.create(:host, :hostgroup => hg)
parameter = parent_hg.group_parameters.first
results = Host.search_for(%{params.#{parameter.name} = "#{parameter.searchable_value}"})
assert results.include?(host)
end

test "can search hosts with tilde operator when value is other than plain text" do
host = FactoryBot.create(:host, :managed)
domain = host.domain
domain.domain_parameters << DomainParameter.create(:name => "arr_param", :value => "['abc','pqr']", :parameter_type => 'array')
parameter = domain.domain_parameters.first
results = Host.search_for(%{params.#{parameter.name} ~ "abc"})
assert results.include?(host)
end

test "can't search hosts with equal operator when value is other than plain text" do
host = FactoryBot.create(:host, :managed)
domain = host.domain
domain.domain_parameters << DomainParameter.create(:name => "arr_param", :value => "['abc','pqr']", :parameter_type => 'array')
parameter = domain.domain_parameters.first
results = Host.search_for(%{params.#{parameter.name} = "#{parameter.searchable_value}"})
refute results.include?(host)
end

test "can search hosts by organization parameter" do
host = FactoryBot.create(:host, :managed)
org = host.organization
org.organization_parameters << OrganizationParameter.create(:name => "test_param", :value => "true", :parameter_type => 'boolean')
parameter = org.organization_parameters.first
results = Host.search_for(%{params.#{parameter.name} = "#{parameter.searchable_value}"})
assert results.include?(host)
end

test "can search hosts by location parameter" do
host = FactoryBot.create(:host, :managed)
location = host.location
location.location_parameters << LocationParameter.create(:name => "test_param", :value => "true", :parameter_type => 'boolean')
parameter = location.location_parameters.first
results = Host.search_for(%{params.#{parameter.name} = "#{parameter.searchable_value}"})
assert results.include?(host)
end
end

test "can search hosts by current_user" do
FactoryBot.create(:host)
results = Host.search_for("owner = current_user")
assert_equal 1, results.count
assert_equal results[0].owner, User.current
end

test "Correctly find hosts with overridden parameter values" do
host1 = FactoryBot.create(:host)
host2 = FactoryBot.create(:host)
parameter1 = FactoryBot.create(:parameter)

host1_param = FactoryBot.create(:host_parameter, name: parameter1.name, value: "different", host: host1)
host2_param = FactoryBot.create(:host_parameter, name: 'test_param2', value: "xxx", host: host2)

results = Host.search_for(%{params_name = "#{host1_param.name}"})
assert results.include?(host1)
refute results.include?(host2)

results = Host.search_for(%{params_name = "#{host2_param.name}"})
assert results.include?(host2)
refute results.include?(host1)

results = Host.search_for(%{params_name != "very_different_parameter"})
assert results.include?(host2)
assert results.include?(host1)
end

# Ip validations
test "unmanaged hosts don't require an IPv4 or IPv6" do
host = FactoryBot.build_stubbed(:host)
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "CRs without IP attribute don't require an IP" do
Setting[:token_duration] = 30 # enable tokens so that we only test the CR
host = FactoryBot.build_stubbed(:host, :managed,
:compute_resource => compute_resources(:one),
:compute_attributes => {:fake => "data"})
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "CRs with IP attribute and a DNS-enabled domain do not require an IP" do
Setting[:token_duration] = 30 # enable tokens so that we only test the CR
host = FactoryBot.build_stubbed(:host, :managed, :domain => domains(:mydomain),
:compute_resource => compute_resources(:openstack),
:compute_attributes => {:fake => "data"})
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "hosts with a IPv4 DNS-enabled Domain do require an IPv4 address" do
Setting[:token_duration] = 30 # enable tokens so that we only test the domain
host = FactoryBot.build(:host, :managed, :domain => domains(:mydomain))
assert host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "hosts with a DNS-enabled Domain without IPv4 do require an IPv6 address" do
Setting[:token_duration] = 30 # enable tokens so that we only test the domain
host = FactoryBot.build_stubbed(:host, :managed, :with_ipv6, :domain => domains(:mydomain))
refute host.require_ip4_validation?
assert host.require_ip6_validation?
end

test "hosts without a DNS-enabled Domain don't require an IP" do
Setting[:token_duration] = 30 # enable tokens so that we only test the domain
host = FactoryBot.build_stubbed(:host, :managed, :domain => domains(:useless))
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "hosts with a DNS-enabled Subnet do require an IPv4 address" do
Setting[:token_duration] = 30 # enable tokens so that we only test the subnet
host = FactoryBot.build_stubbed(:host, :managed, :subnet => FactoryBot.build_stubbed(:subnet_ipv4, :dns))
assert host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "hosts with a DNS-enabled Domain on CR providing a IPv4 address do not require any kind of address" do
Setting[:token_duration] = 30 # enable tokens so that we only test the subnet
proxy = FactoryBot.create(:smart_proxy,
:features => [FactoryBot.create(:feature, :dns)])
domain = FactoryBot.create(:domain,
:dns => proxy)
host = FactoryBot.build_stubbed(:host,
:managed,
:on_compute_resource,
:with_compute_profile,
:ip => nil,
:domain => domain)
host.compute_resource.stubs(:provided_attributes).returns({:ip => :ip})
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "hosts with a DHCP-enabled Subnet do require an IP" do
Setting[:token_duration] = 30 # enable tokens so that we only test the subnet
host = FactoryBot.build_stubbed(:host, :managed, :subnet => FactoryBot.build_stubbed(:subnet_ipv4, :dhcp))
assert host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "hosts without a DNS/DHCP-enabled Subnet don't require an IP" do
Setting[:token_duration] = 30 # enable tokens so that we only test the subnet
host = FactoryBot.build_stubbed(:host, :managed, :subnet => FactoryBot.build_stubbed(:subnet_ipv4, :dhcp => nil, :dns => nil))
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "hosts with a DNS-enabled IPv6 Subnet require an IPv6 but don't require an IPv4 address" do
Setting[:token_duration] = 30 # enable tokens so that we only test the subnet
host = FactoryBot.build_stubbed(:host, :managed,
:subnet => FactoryBot.build_stubbed(:subnet_ipv4, :dhcp => nil, :dns => nil),
:subnet6 => FactoryBot.build_stubbed(:subnet_ipv6, :dns))
refute host.require_ip4_validation?
assert host.require_ip6_validation?
end

test "hosts with a DNS-enabled IPv6 Subnet, the mac provided by a CR and a mac based IPAM require neither a IPv6 nor a IPv4 address" do
Setting[:token_duration] = 30 # enable tokens so that we only test the subnet
subnet6 = FactoryBot.build_stubbed(:subnet_ipv6, :dns, :ipam => IPAM::MODES[:eui64])
host = FactoryBot.build_stubbed(:host,
:on_compute_resource,
:with_compute_profile,
:with_ipv6_dns_orchestration,
:ip6 => nil,
:subnet6 => subnet6)
host.compute_resource.stubs(:provided_attributes).returns({:mac => :mac})
assert_nil host.ip
assert_nil host.ip6
refute host.require_ip4_validation?, 'should not require ipv4 validation'
refute host.require_ip6_validation?, 'should not require ipv6 validation'
end

test "with tokens enabled hosts don't require an IPv4 or IPv6 address" do
Setting[:token_duration] = 30
host = FactoryBot.build_stubbed(:host, :managed)
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "with tokens disabled PXE build hosts do require an IPv4 address" do
host = FactoryBot.build_stubbed(:host, :managed)
host.stubs(:pxe_build?).returns(true)
host.expects(:image_build?).twice.returns(false)
assert host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "with tokens disabled PXE build IPv6 hosts do not require an IPv4 but a IPv6 address" do
host = FactoryBot.build_stubbed(:host, :managed, :with_ipv6)
host.stubs(:pxe_build?).returns(true)
host.expects(:image_build?).twice.returns(false)
refute host.require_ip4_validation?
assert host.require_ip6_validation?
end

test "tokens disabled doesn't require an IPv4 or IPv6 address for image hosts" do
host = FactoryBot.build_stubbed(:host, :managed)
host.stubs(:pxe_build?).returns(false)
host.expects(:image_build?).times(4).returns(true)
image = stub()
image.expects(:user_data?).twice.returns(false)
host.stubs(:image).returns(image)
refute host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "tokens disabled requires an IPv4 address for image hosts with user data" do
host = FactoryBot.build_stubbed(:host, :managed)
host.stubs(:pxe_build?).returns(false)
host.expects(:image_build?).times(4).returns(true)
image = stub()
image.expects(:user_data?).twice.returns(true)
host.stubs(:image).returns(image)
assert host.require_ip4_validation?
refute host.require_ip6_validation?
end

test "tokens disabled requires only an IPv6 address for image hosts with user data and IPv6 address" do
host = FactoryBot.build_stubbed(:host, :managed, :with_ipv6)
host.stubs(:pxe_build?).returns(false)
host.expects(:image_build?).times(4).returns(true)
image = stub()
image.expects(:user_data?).twice.returns(true)
host.stubs(:image).returns(image)
refute host.require_ip4_validation?
assert host.require_ip6_validation?
end

test "test tokens are not created until host is saved" do
class Host::Test < Host::Base
def lookup_value_match
'no_match'
end

def to_managed!
host = becomes(::Host::Managed)
host.type = 'Host::Managed'
host.name = "#{host.name}-Managed"
host.save
host
end
end
Setting[:token_duration] = 30 # enable tokens so that we only test the subnet
test_host = Host::Test.create(:name => 'testhost', :interfaces => [FactoryBot.build(:nic_primary_and_provision)])
managed_host = test_host.to_managed!
assert_empty Token.where(:host_id => managed_host.id)
end

test "compute attributes are populated by hardware profile from hostgroup" do
cr_hostgroup = FactoryBot.build(:compute_resource, :libvirt)
cr_host = FactoryBot.build(:compute_resource, :libvirt)
hg = FactoryBot.build(:hostgroup, :compute_resource => cr_hostgroup)
host = FactoryBot.build(:host, :managed, :provision_method => 'image',
:hostgroup => hg,
:compute_resource => cr_host)
host.stubs(:provision_method_in_capabilities).returns(true)
host.stubs(:vm_exists?).returns(false)
host.stubs(:queue_compute_create)
assert host.valid?, host.errors.full_messages.to_sentence
assert_equal cr_hostgroup.attrs, host.compute_attributes
end

test "compute attributes are populated by hardware profile passed to host" do
resource = FactoryBot.create(:libvirt_cr)
profile = FactoryBot.create(:compute_profile)
attribute = FactoryBot.create(:compute_attribute, :compute_resource => resource, :compute_profile => profile)

host = FactoryBot.build(:host, :managed,
:provision_method => 'image',
:compute_resource => resource,
:compute_profile => profile)
host.stubs(:provision_method_in_capabilities).returns(true)
host.stubs(:vm_exists?).returns(false)
host.expects(:queue_compute_create)
assert host.valid?, host.errors.full_messages.to_sentence
assert_equal attribute.vm_attrs, host.compute_attributes
end

test "should not save if owner taxonomies do not match host configuration" do
org1 = FactoryBot.create(:organization)
loc1 = FactoryBot.create(:location)
user = FactoryBot.create(:user, :organizations => [], :locations => [])
host = FactoryBot.build_stubbed(:host, :organization => org1, :location => loc1, :owner => user)

refute host.valid?
assert_operator 2, :<=, host.errors[:is_owned_by].size
end

test "#capabilities returns capabilities from compute resource" do
host = FactoryBot.create(:host, :compute_resource => compute_resources(:one))
host.compute_resource.expects(:capabilities).returns([:build, :image])
assert_equal [:build, :image], host.capabilities
end

test "#capabilities on bare metal returns build" do
host = FactoryBot.create(:host)
host.compute_resource = nil
assert_equal [:build], host.capabilities
end

test "#provision_method cannot be set to invalid type" do
host = FactoryBot.create(:host, :managed)
host.provision_method = 'foobar'
host.stubs(:provision_method_in_capabilities).returns(true)
host.valid?
assert host.errors[:provision_method].include?('is unknown')
end

test "#provision_method doesn't matter on unmanaged hosts" do
host = FactoryBot.create(:host)
host.managed = false
host.provision_method = 'foobar'
assert host.valid?
end

test "#provision_method must be within capabilities" do
host = FactoryBot.create(:host, :managed)
host.provision_method = 'image'
host.stubs(:capabilities).returns([:build])
host.valid?
assert_match(/unsupported provisioning method/, host.errors[:provision_method].to_sentence)
end

test "#provision_method can be updated to implicit value" do
host = FactoryBot.create(:host, :managed)
assert_nil host[:provision_method]
host.provision_method = host.provision_method
refute_nil host[:provision_method]
assert host.provision_method_changed?
assert host.valid?
end

test "#provision_method cannot be updated for existing host" do
host = FactoryBot.create(:host, :managed)
host.provision_method = 'image'
refute host.save
assert host.errors[:provision_method].include?("can't be updated after host is provisioned")
end

test "#provision_methods must include build and image by default" do
assert_includes Host::Managed.provision_methods.keys, 'build'
assert_includes Host::Managed.provision_methods.keys, 'image'
end

test 'validation of a host should work with a newly registered provision method' do
host = FactoryBot.build(:host, :managed, :provision_method => 'awesome')
host.stubs(:capabilities).returns([:build, :awesome])
refute_valid host
assert host.errors[:provision_method].include?('is unknown')
Foreman::Plugin.register :awesome_provision do
name 'Awesome provision'
provision_method 'awesome', 'Awesomeness Based'
end
assert_valid host
end

test "#image_build? must be true when provision_method is image" do
host = FactoryBot.create(:host, :managed)
host.provision_method = 'image'
assert host.image_build?
refute host.pxe_build?
end

test "#pxe_build? must be true when provision_method is build" do
host = FactoryBot.create(:host, :managed)
host.provision_method = 'build'
assert host.pxe_build?
refute host.image_build?
end

test "#info ENC YAML omits root_pw when password_hash is set to Base64" do
host = FactoryBot.build(:host, :managed)
host.hostgroup = nil

unencrypted_password = "xybxa6JUkz63w"

host.operatingsystem.password_hash = 'Base64'
host.root_pass = unencrypted_password
assert host.save!
enc = host.info
assert_kind_of Hash, enc
assert_nil enc['parameters']['root_pw']

host.operatingsystem.password_hash = 'SHA512'
host.root_pass = unencrypted_password
assert host.save!
enc = host.info
assert_kind_of Hash, enc
refute_nil enc['parameters']['root_pw']
end

test '#info ENC YAML contains domain name and description' do
host = FactoryBot.build_stubbed(:host, :domain => FactoryBot.build_stubbed(:domain, :name => 'example.tst', :fullname => 'custom text'))
enc = host.info
assert_equal 'example.tst', enc['parameters']['domainname']
assert_equal 'custom text', enc['parameters']['foreman_domain_description']
end

test '#info ENC YAML contains ipv4 and ipv6 subnets' do
host = FactoryBot.build(:host, :with_subnet, :with_ipv6_subnet)
enc = host.info
assert enc['parameters']['foreman_subnets'].any? { |s| s['network_type'] == 'IPv4' }
assert enc['parameters']['foreman_subnets'].any? { |s| s['network_type'] == 'IPv6' }
end

test '#info ENC YAML contains ipv4 and ipv6 address of host' do
host = FactoryBot.build(:host, :dualstack)
enc = host.info
assert enc['parameters']['foreman_interfaces'].any? { |s| s['ip'] == host.ip }
assert enc['parameters']['foreman_interfaces'].any? { |s| s['ip6'] == host.ip6 }
end

describe 'cloning' do
test 'relationships are copied' do
host = FactoryBot.create(:host, :with_parameter)
FactoryBot.create(:lookup_key, :with_override, path: 'fqdn', overrides: { host.lookup_value_matcher => 'abc' })
copy = host.clone
assert_equal host.host_parameters.map(&:name), copy.host_parameters.map(&:name)
assert_equal host.host_parameters.map(&:value), copy.host_parameters.map(&:value)
assert_equal host.lookup_values.map(&:key), copy.lookup_values.map(&:key)
assert_equal host.lookup_values.map(&:value), copy.lookup_values.map(&:value)
end

test 'lookup values are copied' do
host = FactoryBot.create(:host)
FactoryBot.create(:lookup_key, :with_override, path: "fqdn\ncomment", overrides: { host.lookup_value_matcher => 'test' })
copy = host.clone
assert_equal 1, host.lookup_values.reload.size
assert_equal 1, copy.lookup_values.size
assert_equal host.lookup_values.map(&:value), copy.lookup_values.map(&:value)
end

test 'clone host should not copy name, system fields (mac, ip, etc)' do
host = FactoryBot.create(:host, :with_parameter, :dualstack)
copy = host.clone
assert copy.name.blank?
assert copy.mac.blank?
assert copy.ip.blank?
assert copy.ip6.blank?
assert copy.uuid.blank?
assert copy.certname.blank?
assert copy.last_report.blank?
end

test 'clone host should copy interfaces without name, mac, host_id and ips' do
host = FactoryBot.create(:host, :with_parameter, :dualstack)
copy = host.clone

assert_equal host.interfaces.length, copy.interfaces.length

interface = copy.interfaces.first
assert interface.name.blank?
assert interface.mac.blank?
assert interface.ip.blank?
assert interface.ip6.blank?
assert interface.host_id.blank?
end

test 'without save makes no changes' do
host = FactoryBot.create(:host, :with_parameter)
FactoryBot.create(:lookup_key, :with_override, :path => "fqdn\ncomment", :overrides => {host.lookup_value_matcher => 'test'})
ActiveRecord::Base.any_instance.expects(:destroy).never
ActiveRecord::Base.any_instance.expects(:save).never
host.clone
end

test 'clone host with identifier should be valid' do
interface = FactoryBot.build(:nic_primary_and_provision, :identifier => 'eth0')
host = FactoryBot.create(:host, :interfaces => [interface])
copy = host.clone

cloned_interface = copy.interfaces.first
assert_valid cloned_interface
end
end

test 'fqdn of host with period in name returns just name with no concatenation of domain' do
host = FactoryBot.create(:host, :hostname => 'my5name.mydomain.net')
assert_equal 'my5name.mydomain.net', host.name
assert_equal host.name, host.fqdn
end

test 'fqdn of host without period in name returns name concatenated with domain' do
host = Host::Managed.new(:name => 'otherfullhost', :domain => domains(:mydomain))
assert_equal 'otherfullhost', host.name
assert_equal 'mydomain.net', host.domain.name
assert_equal 'otherfullhost.mydomain.net', host.fqdn
end

test 'fqdn of host period and no domain returns just name' do
assert_equal "dhcp123", Host::Managed.new(:name => "dhcp123").fqdn
end

test 'clone should create compute_attributes for VM-based hosts' do
host = FactoryBot.create(:host, :on_compute_resource)
ComputeResource.any_instance.stubs(:vm_compute_attributes_for).returns({:foo => 'bar'})
copy = host.clone
assert !copy.compute_attributes.nil?
end

test 'clone should NOT create compute_attributes for bare-metal host' do
host = FactoryBot.create(:host)
ComputeResource.any_instance.stubs(:vm_compute_attributes_for).returns({:foo => 'bar'})
copy = host.clone
assert copy.compute_attributes.nil?
end

test 'facts are deleted when build set to true' do
host = FactoryBot.create(:host, :with_facts, :managed)
assert host.fact_values.present?
refute host.build?
host.update(:build => true)
assert_empty host.fact_values.reload
end

test 'reports are deleted when build set to true' do
host = FactoryBot.create(:host, :with_reports, :managed)
assert host.reports.present?
refute host.build?
host.update(:build => true)
assert_empty host.reports.reload
end

test 'host.last_report is deleted when build set to true' do
host = FactoryBot.create(:host, :with_reports, :managed)
refute host.build?
refute host.last_report.blank?
host.update(:build => true)
assert host.last_report.blank?
end

test 'changing name with a fqdn should rename lookup_value matcher' do
host = FactoryBot.create(:host)
lookup_key = FactoryBot.create(:lookup_key)
lookup_value = FactoryBot.create(:lookup_value, :lookup_key_id => lookup_key.id,
:match => "fqdn=#{host.fqdn}", :value => '8080')
host.reload
assert_equal "fqdn=#{host.fqdn}", LookupValue.find(lookup_value.id).match

host.name = "my5name-new.mydomain.net"
host.save!
assert_equal "fqdn=my5name-new.mydomain.net", LookupValue.find(lookup_value.id).match
end

test 'changing only name should rename lookup_value matcher' do
host = FactoryBot.create(:host, :domain => FactoryBot.create(:domain))
lookup_key = FactoryBot.create(:lookup_key)
lookup_value = FactoryBot.create(:lookup_value, :lookup_key_id => lookup_key.id,
:match => "fqdn=#{host.fqdn}", :value => '8080')
host.reload
assert_equal LookupValue.find(lookup_value.id).match, "fqdn=#{host.fqdn}"

host.name = "my5name-new"
host.save!
assert_equal "fqdn=my5name-new.#{host.domain.name}", LookupValue.find(lookup_value.id).match
end

test 'changing host domain should rename lookup_value matcher' do
host = FactoryBot.create(:host)
lookup_key = FactoryBot.create(:lookup_key)
lookup_value = FactoryBot.create(:lookup_value, :lookup_key_id => lookup_key.id,
:match => "fqdn=#{host.fqdn}", :value => '8080')
host.reload
assert_equal LookupValue.find(lookup_value.id).match, "fqdn=#{host.fqdn}"

host.domain = domains(:yourdomain)
host.save!
assert_equal "fqdn=#{host.shortname}.yourdomain.net", LookupValue.find(lookup_value.id).match
end

test "destroying host should destroy lookup values" do
host = FactoryBot.create(:host)
lookup_key = FactoryBot.create(:lookup_key)
lookup_value = FactoryBot.create(:lookup_value, :lookup_key_id => lookup_key.id,
:match => "fqdn=#{host.fqdn}", :value => '8080')
host.reload
host.destroy
assert LookupValue.where(:id => lookup_value.id).first.blank?
end

test '#setup_clone skips new records' do
assert_nil FactoryBot.build(:host, :managed).send(:setup_clone)
end

test '#setup_clone is public and clones interfaces so delegated attributes are applied to cloned interfaces' do
host = FactoryBot.create(:host, :managed)
original_mac = host.mac
host.mac = 'AA:AA:AA:AA:AA:AA'
clone = host.setup_clone
refute_equal host.object_id, clone.object_id
assert_equal 'aa:aa:aa:aa:aa:aa', host.mac
refute_equal host.mac, clone.mac
assert_equal original_mac, clone.mac
assert_equal original_mac, clone.provision_interface.mac
end

test '#primary_interface works during deletion' do
host = FactoryBot.create(:host, :managed)
iface = host.interfaces.first
assert iface.delete
assert_equal iface, host.primary_interface
end

test '#primary_interface is never cached for new record' do
host = FactoryBot.build(:host, :managed)
refute_nil host.primary_interface
host.interfaces = []
assert_nil host.primary_interface
end

test '#provision_interface is never cached for new record' do
host = FactoryBot.build(:host, :managed)
refute_nil host.provision_interface
host.interfaces = []
assert_nil host.provision_interface
end

test '#drop_primary_interface_cache' do
host = FactoryBot.create(:host, :managed)
refute_nil host.primary_interface
host.interfaces.clear
# existing host must cache interface
refute_nil host.primary_interface
host.drop_primary_interface_cache
assert_nil host.primary_interface
end

test '#drop_provision_interface_cache' do
host = FactoryBot.create(:host, :managed)
refute_nil host.provision_interface
host.interfaces.clear
# existing host must cache interface
refute_nil host.provision_interface
host.drop_provision_interface_cache
assert_nil host.provision_interface
end

test '#reload drops primary and provision interface cache' do
host = FactoryBot.create(:host, :managed)
refute_nil host.primary_interface
refute_nil host.provision_interface
host.expects(:drop_primary_interface_cache).once
host.expects(:drop_provision_interface_cache).once

host.reload
end

test '#becomes drops interface cache on new instance and copies all interfaces' do
host = FactoryBot.create(:host, :managed)
refute_nil host.primary_interface
refute_nil host.provision_interface
primary = host.primary_interface

nic = FactoryBot.build_stubbed(:nic_managed, :host => host, :mac => '00:00:00:AA:BB:CC', :ip => '192.168.0.1',
:name => 'host2', :domain => host.domain)
nic.primary = true
nic.provision = true

# make cache wrong - I don't find a way how to do it cleanly (which is good)
host.instance_variable_set '@primary_interface', nic
host.instance_variable_set '@provision_interface', nic

converted = host.becomes(Host::Managed)
assert_equal 1, converted.interfaces.size
assert_equal primary, converted.interfaces.first
refute_equal host.primary_interface, converted.primary_interface
refute_equal host.provision_interface, converted.provision_interface
end

test '#initialize builds primary and provision interface if not present in arguments' do
h = Host.new
refute_nil h.primary_interface
refute_nil h.provision_interface
end

test '#initialize respects primary interface attributes and sets provision to the same if missing' do
h = Host.new(:interfaces_attributes => {
'0' => {'_destroy' => '0',
:type => 'Nic::Managed',
:mac => 'ff:ff:ff:aa:aa:aa',
:managed => '1',
:primary => '1',
:provision => '0',
:virtual => '0'},
})
refute_nil h.primary_interface
refute_nil h.provision_interface
assert_equal 'ff:ff:ff:aa:aa:aa', h.primary_interface.mac
assert_equal h.primary_interface, h.provision_interface
end

test '#initialize respects primary and provision interface attributes' do
h = Host.new(:interfaces_attributes => {
'0' => {'_destroy' => '0',
:type => 'Nic::Managed',
:mac => 'ff:ff:ff:aa:aa:aa',
:managed => '1',
:primary => '1',
:provision => '0',
:virtual => '0'},
'1' => {'_destroy' => '0',
:type => 'Nic::Managed',
:mac => 'aa:aa:aa:ff:ff:ff',
:managed => '1',
:primary => '0',
:provision => '1',
:virtual => '0'},
})
refute_nil h.primary_interface
refute_nil h.provision_interface
assert_equal 'ff:ff:ff:aa:aa:aa', h.primary_interface.mac
assert_equal 'aa:aa:aa:ff:ff:ff', h.provision_interface.mac
refute_equal h.primary_interface, h.provision_interface
end

describe '#overwrite=' do
context 'false' do
[:false, 'false', false].each do |v|
test "when setting to #{v.inspect}" do
refute FactoryBot.build_stubbed(:host, :overwrite => v).overwrite?
end
end
end

context 'true' do
[:true, 'true', true].each do |v|
test "when setting to #{v.inspect}" do
assert FactoryBot.build_stubbed(:host, :overwrite => v).overwrite?
end
end
end
end

test 'updating host domain should validate domain exists' do
host = FactoryBot.create(:host, :managed)
last_domain_id = Domain.order(:id).last.id
fake_domain_id = last_domain_id + 1
host.domain_id = fake_domain_id
refute(host.valid?)
host.domain_id = last_domain_id
assert(host.valid?)
end

test '#fqdn returns the FQDN from the primary interface' do
primary = FactoryBot.build(:nic_managed, :primary => true, :name => 'foo', :domain => FactoryBot.build(:domain))
host = FactoryBot.create(:host, :managed, :interfaces => [primary, FactoryBot.build(:nic_managed, :provision => true)])
assert_equal "foo.#{primary.domain.name}", host.fqdn
end

test '#shortname returns the name from the primary interface' do
primary = FactoryBot.build(:nic_managed, :primary => true, :name => 'foo')
host = FactoryBot.create(:host, :managed, :interfaces => [primary, FactoryBot.build(:nic_managed, :provision => true)])
assert_equal 'foo', host.shortname
end

test 'lookup_value_match returns host name instead of fqdn when there is no primary interface' do
host = FactoryBot.build_stubbed(:host, :managed)
host_name = host.name
host.interfaces.delete_all
assert_nil host.primary_interface
assert_equal host.send(:lookup_value_match), "fqdn=#{host_name}"
end

test 'check operatingsystem and architecture association' do
host = FactoryBot.build(:host, :interfaces => [FactoryBot.build(:nic_primary_and_provision)])
assert_nil Operatingsystem.find_by_name('RedHat-test'), "operatingsystem already exist"
host.populate_fields_from_facts(
mock_parser(:architecture => "x86_64", :operatingsystem => 'RedHat-test', :operatingsystemrelease => '6.2'),
'puppet',
nil)
assert host.operatingsystem.architectures.include?(host.architecture), "no association between operatingsystem and architecture"
end

test 'check operatingsystem and medium assocation' do
host = FactoryBot.create(:host, :managed, :build => true)
assert host.valid?

host.operatingsystem.media = []
refute host.valid?
assert_match(/must belong/, host.errors[:medium_id].first)
end

describe "#lookup_values_attributes=" do
test "does not save lookup values in db until #save is invoked" do
host = FactoryBot.create(:host)
lkey = FactoryBot.create(:lookup_key, override: true, path: 'fqdn')
assert_no_difference('LookupValue.count') do
host.lookup_values_attributes = {"new_123456" => {"lookup_key_id" => lkey.id, "value" => "some_value"}}
end

assert_difference('LookupValue.count', 1) do
host.save
end
end

test "updates existing lookup values" do
host = FactoryBot.create(:host)
lkey = FactoryBot.create(:lookup_key, :with_override, path: 'fqdn', overrides: {"fqdn=#{host.name}" => 'old value'})
lval = host.lookup_values.first

host.lookup_values_attributes = {'0' => {'lookup_key_id' => lkey.id.to_s, 'value' => 'new value', '_destroy' => '0', 'id' => lval.id.to_s}}.with_indifferent_access
assert_equal 'old value', LookupValue.find(lval.id).value

host.save!
assert_equal 'new value', LookupValue.find(lval.id).value
end

test "destroy existing lookup values on host save" do
lkey = FactoryBot.create(:lookup_key, override: true, path: 'fqdn')
host = FactoryBot.create(:host, :lookup_values_attributes => {"new_123456" => {"lookup_key_id" => lkey.id, "value" => "some_value"}})
lookup_value = host.lookup_values.first
assert_no_difference('LookupValue.count') do
host.lookup_values_attributes = {'0' => {'lookup_key_id' => lkey.id.to_s, 'id' => lookup_value.id.to_s, '_destroy' => '1'}}.with_indifferent_access
end

assert_difference('LookupValue.count', -1) do
host.save
end
end
end

describe '#apply_inherited_attributes' do
test 'should be no-op if no hostgroup selected' do
host = FactoryBot.build_stubbed(:host, :managed)
attributes = { 'compute_resource_id' => 1 }

actual_attr = host.apply_inherited_attributes(attributes)

assert_equal actual_attr, attributes
end

test 'should take new hostgroup if hostgroup_id present' do
host = FactoryBot.build_stubbed(:host, :managed, :with_hostgroup)
new_compute_resource = FactoryBot.create(:compute_resource, :libvirt)
new_hostgroup = FactoryBot.create(:hostgroup, compute_resource: new_compute_resource)
assert_not_equal new_compute_resource.id, host.hostgroup.compute_resource.try(:id)

attributes = { 'hostgroup_id' => new_hostgroup.id }
actual_attr = host.apply_inherited_attributes(attributes)

assert_equal actual_attr['compute_resource_id'], new_compute_resource.id
end

test 'should take new hostgroup if hostgroup_name present' do
host = FactoryBot.build_stubbed(:host, :managed, :with_hostgroup)
new_compute_resource = FactoryBot.create(:compute_resource, :libvirt)
new_hostgroup = FactoryBot.create(:hostgroup, compute_resource: new_compute_resource)
assert_not_equal new_compute_resource.id, host.hostgroup.compute_resource.try(:id)

attributes = { 'hostgroup_name' => new_hostgroup.title }
actual_attr = host.apply_inherited_attributes(attributes)

assert_equal actual_attr['compute_resource_id'], new_compute_resource.id
end

test 'should take old hostgroup if hostgroup not updated' do
hostgroup = FactoryBot.create(:hostgroup, :with_compute_resource)
compute_resource = FactoryBot.create(:compute_resource, :libvirt)
host = FactoryBot.build_stubbed(:host, :managed, hostgroup: hostgroup, compute_resource: compute_resource)
Hostgroup.expects(:find).never

attributes = { 'hostgroup_id' => host.hostgroup.id }
actual_attr = host.apply_inherited_attributes(attributes)

assert_equal actual_attr['compute_resource_id'], hostgroup.compute_resource.id
end

test 'should accept non-existing hostgroup' do
host = FactoryBot.build_stubbed(:host, :managed, :with_hostgroup)
hostgroup_friendly_scope = stub
hostgroup_friendly_scope.stubs(:find).with(1111).returns(nil)
Hostgroup.stubs(:friendly).returns(hostgroup_friendly_scope)

attributes = { 'hostgroup_id' => 1111 }
actual_attr = host.apply_inherited_attributes(attributes)

assert_nil actual_attr['compute_resource_id']
end

test 'should not touch attribute set explicitly' do
host = FactoryBot.build_stubbed(:host, :managed, :with_hostgroup)

attributes = { 'hostgroup_id' => host.hostgroup.id, 'compute_resource_id' => 1111 }
actual_attr = host.apply_inherited_attributes(attributes)

assert_equal actual_attr['compute_resource_id'], 1111
end

test 'should inherit attribute value, if not set explicitly' do
host = FactoryBot.build_stubbed(:host, :managed, :with_hostgroup)
compute_resource = FactoryBot.create(:compute_resource, :libvirt)
host.hostgroup.compute_resource = compute_resource
host.hostgroup.save!

attributes = { 'hostgroup_id' => host.hostgroup.id }
actual_attr = host.apply_inherited_attributes(attributes)

assert_equal actual_attr['compute_resource_id'], host.hostgroup.compute_resource.id
end

test 'should not touch non-inherited attributes' do
host = FactoryBot.build_stubbed(:host, :managed, :with_hostgroup)

attributes = { 'hostgroup_id' => host.hostgroup.id, 'zzz_id' => 1111 }
actual_attr = host.apply_inherited_attributes(attributes)

assert_equal actual_attr['zzz_id'], 1111
end

test 'should add inherited attributes when hostgroup in attributes' do
hg = FactoryBot.create(:hostgroup, :with_compute_resource)
host = Host.new(name: 'test-host', hostgroup: hg)
assert_not_nil host.compute_resource
end
end

describe 'rendering interface' do
let(:host) { FactoryBot.build_stubbed(:host, :managed) }

test "#multiboot" do
host.respond_to?(:multiboot)
end

test "#jumpstart_path" do
host.respond_to?(:jumpstart_path)
end

test "#install_path" do
host.respond_to?(:install_path)
end

test "#miniroot" do
host.respond_to?(:miniroot)
end
end

describe 'interface identifiers validation' do
let(:host) { FactoryBot.build(:host, :managed) }
let(:additional_interface) { host.interfaces.build }

context 'additional interface has different identifier' do
test 'host is valid' do
assert host.valid?
end
end

context 'additional interface has same identifier' do
before { additional_interface.identifier = host.primary_interface.identifier }

test 'host is valid' do
refute host.valid?
end

test 'validation ignores interfaces marked for destruction' do
additional_interface.mark_for_destruction
assert host.valid?
end
end
end

context "recreating host config" do
setup do
@nic = FactoryBot.build_stubbed(:nic_primary_and_provision)
@nic.expects(:rebuild_tftp).returns(true)
@nic.expects(:rebuild_dns).returns(true)
@nic.expects(:rebuild_dhcp).returns(true)
Nic::Managed.expects(:rebuild_methods_for).returns(:rebuild_dhcp => "DHCP", :rebuild_dns => "DNS", :rebuild_tftp => "TFTP")
end

test "recreate config with success - only empty" do
Host::Managed.expects(:rebuild_methods_for).returns(:rebuild_test => "TEST")
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic])
host.expects(:rebuild_test).returns(true)
result = host.recreate_config([])
assert result["DHCP"]
assert result["DNS"]
assert result["TFTP"]
assert result["TEST"]
end

test "recreate config with success - only all values" do
Host::Managed.expects(:rebuild_methods_for).returns(:rebuild_test => "TEST")
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic])
host.expects(:rebuild_test).returns(true)
result = host.recreate_config(Nic::Managed.rebuild_methods.keys + Host::Managed.rebuild_methods.keys)
assert result["DHCP"]
assert result["DNS"]
assert result["TFTP"]
assert result["TEST"]
end

test "recreate config with success" do
Host::Managed.expects(:rebuild_methods_for).returns(:rebuild_test => "TEST")
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic])
host.expects(:rebuild_test).returns(true)
result = host.recreate_config
assert result["DHCP"]
assert result["DNS"]
assert result["TFTP"]
assert result["TEST"]
end

test "recreate config with clashing methods" do
Host::Managed.expects(:rebuild_methods_for).returns(:rebuild_dns => "DNS")
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic])
assert_raises(Foreman::Exception) { host.recreate_config }
end

context "recreate with multiple nics and failures" do
setup do
@nic2 = FactoryBot.build_stubbed(:nic_managed)
@nic2.expects(:rebuild_tftp).returns(false)
@nic2.expects(:rebuild_dns).returns(false)
@nic2.expects(:rebuild_dhcp).returns(false)
end

test "second is a failure" do
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic, @nic2])
result = host.recreate_config
refute result["DHCP"]
refute result["DNS"]
refute result["TFTP"]
end

test "first is a failure" do
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic2, @nic])
result = host.recreate_config
refute result["DHCP"]
refute result["DNS"]
refute result["TFTP"]
end
end

test "recreate with multiple nics, all are success" do
nic = FactoryBot.build_stubbed(:nic_managed)
nic.expects(:rebuild_tftp).returns(true)
nic.expects(:rebuild_dns).returns(true)
nic.expects(:rebuild_dhcp).returns(true)
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic, nic])
result = host.recreate_config
assert result["DHCP"]
assert result["DNS"]
assert result["TFTP"]
end
end

context "recreating host TFTP config" do
setup do
@nic = FactoryBot.build_stubbed(:nic_primary_and_provision)
@nic.expects(:rebuild_tftp).returns(true)
@nic.expects(:rebuild_dns).never
@nic.expects(:rebuild_dhcp).never
Nic::Managed.stubs(:rebuild_methods_for).returns(:rebuild_tftp => "TFTP")
end

test "recreate TFTP config with success" do
Host::Managed.expects(:rebuild_methods_for).returns({})
host = FactoryBot.build_stubbed(:host, :interfaces => [@nic])
host.expects(:rebuild_test).never
result = host.recreate_config(['TFTP'])
refute result["DHCP"]
refute result["DNS"]
assert result["TFTP"]
refute result["TEST"]
end
end

test 'should display inherited parameters' do
host = FactoryBot.create(:host,
:location => taxonomies(:location1),
:organization => taxonomies(:organization1),
:domain => domains(:mydomain))
location_parameter = LocationParameter.new(:name => 'location', :value => 'parameter')
host.location.location_parameters = [location_parameter]
assert(host.host_inherited_params_objects.include?(location_parameter), 'Taxonomy parameters should be included')
end

test '#host_params_objects should display all parameters with overrides' do
host = FactoryBot.create(:host,
:location => taxonomies(:location1),
:organization => taxonomies(:organization1),
:domain => domains(:mydomain))
location_parameter = LocationParameter.new(:name => 'location', :value => 'parameter')
host.location.location_parameters = [location_parameter]
host_location_override = HostParameter.new(:name => 'location', :value => 'the moon')
host.host_parameters += [host_location_override]
assert(host.host_params_objects.include?(host_location_override), 'Location parameter should be overriden')
refute(host.host_params_objects.include?(location_parameter), 'Location parameter should not be included')
end

test 'host_params_objects should display parameters in the right order' do
host = FactoryBot.create(:host,
:location => taxonomies(:location1),
:organization => taxonomies(:organization1),
:domain => domains(:mydomain))
domain_parameter = DomainParameter.new(:name => 'domain', :value => 'here.there')
host.domain.domain_parameters = [domain_parameter]
assert_equal(domain_parameter, host.host_params_objects.first, 'with no hostgroup, DomainParameter should be first parameter')
assert(host.host_params_objects.last.is_a?(CommonParameter), 'CommonParameter should be last parameter')
end

context 'compute resources' do
setup do
@group1 = FactoryBot.create(:hostgroup, :with_domain, :with_os,
:compute_profile => compute_profiles(:one), :compute_resource => compute_resources(:ec2))
@group2 = FactoryBot.create(:hostgroup, :with_domain, :with_os,
:compute_profile => compute_profiles(:two), :compute_resource => compute_resources(:one))
end

test 'set_hostgroup_defaults doesnt touch compute attributes' do
Host::Managed.any_instance.stubs(:vm_exists?).returns(true)
Host::Managed.any_instance.stubs(:compute_update_required?).returns(false)
host = FactoryBot.create(:host, :managed, :compute_resource => compute_resources(:one), :hostgroup => @group1)
assert_not_equal 4, host.compute_attributes['cpus']

host.attributes = host.apply_inherited_attributes('hostgroup_id' => @group2.id)
host.set_hostgroup_defaults
assert_not_equal 4, host.compute_attributes['cpus']
end

test 'set_compute_attributes changes the compute attributes' do
Host::Managed.any_instance.stubs(:vm_exists?).returns(true)
Host::Managed.any_instance.stubs(:compute_update_required?).returns(false)
host = FactoryBot.create(:host, :managed, :compute_resource => compute_resources(:one), :hostgroup => @group1)
assert_not_equal 4, host.compute_attributes['cpus']
host.attributes = host.apply_inherited_attributes('hostgroup_id' => @group2.id)
host.set_compute_attributes
assert_equal 4, host.compute_attributes['cpus']
end
end

describe '.for_vm' do
test 'returns hosts with matching CR and identity' do
uuid = Foreman.uuid
vm = mock('vm', :identity => uuid)
host = FactoryBot.create(:host, :on_compute_resource, :uuid => uuid)
assert_equal [host], Host::Managed.for_vm(host.compute_resource, vm).to_a
end

test 'returns hosts with matching an integer identity' do
vm = mock('vm', :identity => 42)
host = FactoryBot.create(:host, :on_compute_resource, :uuid => '42')
assert_equal [host], Host::Managed.for_vm(host.compute_resource, vm).to_a
end
end

test 'hardware_model_name= sets model_id by name' do
model = FactoryBot.create(:model)
host = FactoryBot.build_stubbed(:host)
Foreman::Deprecation.expects(:deprecation_warning).never
host.hardware_model_name = model.name
assert_equal model.id, host.model_id
end

test '.new handles model_name without deprecation warning' do
model = FactoryBot.create(:model)
Foreman::Deprecation.expects(:deprecation_warning).never
assert_equal model.id, Host::Managed.new(:model_name => model.name).model_id
end

test 'hardware_model_id= is aliased to model_id' do
host = FactoryBot.build_stubbed(:host)
Foreman::Deprecation.expects(:deprecation_warning).never
host.hardware_model_id = 42
assert_equal 42, host.model_id
assert_equal 42, host.hardware_model_id
end

describe "loading compute_attributes from compute profile" do
setup do
@compute_attrs = compute_attributes(:one)

@host = FactoryBot.build(:host)
@host.compute_attributes = {}
@host.compute_resource = @compute_attrs.compute_resource
@host.compute_profile = @compute_attrs.compute_profile
end

test "should create host with compute profile when compute_attributes are empty" do
@host.stubs(:vm_exists?).returns(false)
@host.compute_resource.expects(:create_vm).once.with do |vm_attrs|
vm_attrs['flavor_id'] == @compute_attrs.vm_attrs['flavor_id'] &&
vm_attrs['availability_zone'] == @compute_attrs.vm_attrs['availability_zone']
end

@host.valid?
@host.send(:setCompute)
end

test "should create host with compute profile when compute_attributes are nil" do
@host.compute_attributes = nil
@host.stubs(:vm_exists?).returns(false)
@host.compute_resource.expects(:create_vm).once.with do |vm_attrs|
vm_attrs['flavor_id'] == @compute_attrs.vm_attrs['flavor_id'] &&
vm_attrs['availability_zone'] == @compute_attrs.vm_attrs['availability_zone']
end

@host.valid?
@host.send(:setCompute)
end

test "should create host without compute profile when compute_attributes contain some data" do
@host.compute_attributes = {
"volumes_attributes" => {
'0' => {
'size' => 20,
},
},
"interfaces_attributes" => {},
"nics_attributes" => {},
}

@host.compute_resource.expects(:create_vm).once.with do |vm_attrs|
(vm_attrs['volumes_attributes']['0']['size'] == 20) &&
vm_attrs['flavor_id'].nil? &&
vm_attrs['availability_zone'].nil?
end
@host.stubs(:vm_exists?).returns(false)

@host.valid?
@host.send(:setCompute)
end
end

describe 'apply_compute_profile' do
test 'modificator gets correct paramaters' do
host = FactoryBot.build(:host, :on_compute_resource, :with_compute_profile)

modificator = stub
modificator.expects(:run).with do |_host, attrs|
(attrs.compute_resource == host.compute_resource) &&
(attrs.compute_profile == host.compute_profile)
end

host.apply_compute_profile(modificator)
end

test 'modificator gets nil when the compute_resource does not exist' do
host = FactoryBot.build_stubbed(:host)

modificator = stub
modificator.expects(:run).with(host, nil)

host.apply_compute_profile(modificator)
end

test 'modificator gets nil when the compute_profile does not exist' do
host = FactoryBot.build_stubbed(:host, :on_compute_resource)

modificator = stub
modificator.expects(:run).with(host, nil)

host.apply_compute_profile(modificator)
end
end

describe 'taxonomy scopes' do
test 'no_location overrides default scope' do
location = FactoryBot.create(:location)
host = FactoryBot.create(:host, :location => nil)
Location.stubs(:current).returns(location)

assert_nil Host.where(:id => host.id).first
assert_not_nil Host.no_location.where(:id => host.id).first
Location.unstub(:current)
end

test 'no_organization overrides default scope' do
organization = FactoryBot.create(:organization)
host = FactoryBot.create(:host, :organization => nil)
Organization.stubs(:current).returns(organization)

assert_nil Host.where(:id => host.id).first
assert_not_nil Host.no_organization.where(:id => host.id).first
Organization.unstub(:current)
end
end

describe '#smart_proxy_ids' do
test 'returns IDs for proxies associated with host services' do
# IDs are fake, just to prove host.smart_proxy_ids gathers them
host = FactoryBot.build(:host, :with_subnet, :with_realm,
:puppet_ca_proxy_id => 1)
host.realm = FactoryBot.build_stubbed(:realm, :realm_proxy_id => 1)
host.subnet.tftp_id = 2
host.subnet.dhcp_id = 3
host.subnet.dns_id = 4
assert host.smart_proxy_ids, [1, 2, 3, 4]
end

context 'from hostgroup' do
setup do
@hostgroup = FactoryBot.create(:hostgroup, :with_puppet_ca)
@host = FactoryBot.build_stubbed(:host)
@host.hostgroup = @hostgroup
@host.send(:assign_hostgroup_attributes, [:puppet_ca_proxy_id])
end

test 'returns IDs for proxies used by services inherited from hostgroup' do
@host.realm = FactoryBot.build_stubbed(:realm, :realm_proxy_id => 1)
assert_equal [@hostgroup.puppet_ca_proxy_id,
@host.realm.realm_proxy_id].sort,
@host.smart_proxy_ids.sort
end

test 'does not return IDs for services not inherited from the hostgroup' do
@host.realm = FactoryBot.build_stubbed(:realm, :realm_proxy_id => 1)
@host.puppet_proxy_id = nil
assert_equal [@hostgroup.puppet_ca_proxy_id, @host.realm.realm_proxy_id].sort,
@host.smart_proxy_ids.sort
end
end
end

describe '#ipmi_boot' do
setup do
@host = FactoryBot.build_stubbed(:host)
end

test 'throws exception when host does not have BMC proxy' do
assert_raises(Foreman::Exception) do
@host.ipmi_boot('bios')
end
end

test 'calls the proxy with the right function and device' do
bmc_proxy_stub = stub('bmc_proxy')
@host.expects(:bmc_available?).returns(true)
@host.expects(:bmc_proxy).returns(bmc_proxy_stub)
bmc_proxy_stub.expects(:boot).with({ :function => 'bootdevice', :device => 'bios' }).returns(true)
assert @host.ipmi_boot('bios')
end
end

describe '#firmware_type' do
test 'should be :none for host with none loader' do
host = FactoryBot.build_stubbed(:host, :managed, :pxe_loader => "None")
assert_equal :none, host.firmware_type
end

test 'should be :bios for host with bios loader' do
host = FactoryBot.build_stubbed(:host, :managed, :pxe_loader => "PXELinux BIOS")
assert_equal :bios, host.firmware_type
end

test 'should be :uefi for host with uefi loader' do
host = FactoryBot.build_stubbed(:host, :managed, :pxe_loader => "Grub2 UEFI")
assert_equal :uefi, host.firmware_type
end
end

describe '#templates_used' do
test 'returns all templates used on a given host' do
os = operatingsystems(:redhat)
host = FactoryBot.build_stubbed(:host, :managed, :operatingsystem => os)
host.templates_used.each do |template_kind, template_name|
template = os.provisioning_templates.find_by_name(template_name).name
assert_equal template, host.templates_used[template_kind]
end
end
end

describe 'HostParams module' do
test 'shows global params' do
host = FactoryBot.build_stubbed(:host)
FactoryBot.create(:common_parameter, :name => 'test_param1', :value => 'test_value1')

assert_equal 'test_value1', host.host_params['test_param1']
end

test 'renders global params if template specified' do
host = FactoryBot.build_stubbed(:host)
# rubocop:disable Lint/InterpolationCheck
FactoryBot.create(:common_parameter, :name => 'test_param1', :value => '<%= "test_value1-#{@host.name}" %>')
# rubocop:enable Lint/InterpolationCheck

assert_equal "test_value1-#{host.name}", host.host_params['test_param1']
end
end

test "should find smart proxy ids" do
host_1 = FactoryBot.create(:host, :with_tftp_orchestration)
host_2 = FactoryBot.create(:host, :with_dns_orchestration)
host_3 = FactoryBot.create(:host, :with_dhcp_orchestration)
host_4 = FactoryBot.create(:host, :with_realm)
host_5 = FactoryBot.create(:host, :with_puppet_ca)

tftp_proxy_id = host_1.primary_interface.subnet.tftp_id
dns_proxy_id = host_2.primary_interface.subnet.dns_id
dhcp_proxy_id = host_3.primary_interface.subnet.dhcp_id
realm_proxy_id = host_4.realm.realm_proxy_id
puppet_ca_id = host_5.puppet_ca_proxy_id

res = Host.smart_proxy_ids(Host.where(:id => [host_1, host_2, host_3, host_4, host_5].map(&:id)))

[tftp_proxy_id, dns_proxy_id, dhcp_proxy_id, realm_proxy_id, puppet_ca_id].each do |id|
assert res.include?(id)
end
end

test "host have a valid media provider" do
hostgroup = FactoryBot.create(:hostgroup, :with_domain, :with_os)
host = FactoryBot.create(:host, :managed, :hostgroup => hostgroup)
assert host.medium_provider
end

test "host have a media provider providing a valid URL" do
hostgroup = FactoryBot.create(:hostgroup, :with_domain, :with_os)
host = FactoryBot.create(:host, :managed, :hostgroup => hostgroup)
assert_match(/^http:/, host.medium_provider.medium_uri.to_s)
end

test "should find interface by attached mac" do
mac = 'aa:bb:cc:dd:ee:ff'
host = FactoryBot.create(:host, :name => 'test-host')
FactoryBot.create(:nic_managed, :mac => mac, :identifier => 'ens1', :host => host)
FactoryBot.create(:nic_managed,
:mac => mac,
:identifier => 'ens1.101',
:virtual => true,
:attached_to => 'ens1',
:tag => '101',
:host => host)
FactoryBot.create(:nic_managed,
:mac => mac,
:identifier => 'ens1.102',
:virtual => true,
:attached_to => 'ens1',
:tag => '102',
:host => host)
res = host.send(:find_by_attached_mac, host.interfaces, host.interfaces.where(:mac => mac), 'ens1', { :tag => '102' })
assert_equal 'ens1.102', res.first.identifier
end

private

def setup_host_with_nic_parser(nic_attributes)
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
hash = { (nic_attributes.delete(:identifier) || :eth0) => nic_attributes,
}.with_indifferent_access
parser = stub(:class_name_humanized => 'TestParser', :interfaces => hash, :ipmi_interface => {}, :suggested_primary_interface => hash.to_a.first)
[host, parser]
end

def setup_host_with_ipmi_parser(ipmi_attributes)
host = FactoryBot.create(:host, :hostgroup => FactoryBot.create(:hostgroup))
hash = ipmi_attributes.with_indifferent_access
primary = host.primary_interface
parser = stub(:class_name_humanized => 'TestParser', :ipmi_interface => hash, :interfaces => {}, :suggested_primary_interface => [primary.identifier, {:macaddress => primary.mac, :ipaddress => primary.ip}])
[host, parser]
end

def mock_parser(properties)
parser = PuppetFactParser.new(properties)
parser.stubs(:class_name_humanized).returns('TestParser')
parser
end
end
(17-17/65)