Sha256: 0112f8266a76198a159ee5787918a96462bdd664ca52bc33f1bad348b8571ba0
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
require 'test_plugin_helper' module ForemanSalt class HostExtensionsTest < ActiveSupport::TestCase setup do User.current = User.find_by_login 'admin' end test 'host has a salt smart proxy' do host = FactoryGirl.create :host, :with_salt_proxy assert host.salt_proxy.has_feature? 'Salt' end test 'smart_proxy_ids returns salt smart proxy' do host = FactoryGirl.create :host, :with_salt_proxy assert host.smart_proxy_ids.include? host.salt_proxy_id end test 'host params includes salt_master' do host = FactoryGirl.create :host, :with_salt_proxy assert host.params.key? 'salt_master' assert_equal host.params['salt_master'], host.salt_master end test 'host inherits salt proxy from host group' do hostgroup = FactoryGirl.create :hostgroup, :with_salt_proxy host = FactoryGirl.create :host, :hostgroup => hostgroup host.set_hostgroup_defaults assert_equal host.salt_proxy, hostgroup.salt_proxy end test 'host does not accept salt modules outside its environment' do hosts_environment = FactoryGirl.create :salt_environment other_environment = FactoryGirl.create :salt_environment state = FactoryGirl.create :salt_module other_environment.salt_modules << state host = FactoryGirl.create :host, :with_salt_proxy, :salt_environment => hosts_environment host.salt_modules = [state] refute host.save assert host.errors.full_messages.include? 'Salt states must be in the environment of the host' end test '#configuration? considers salt' do host = FactoryGirl.build(:host) proxy = FactoryGirl.build(:smart_proxy) refute host.configuration? host.salt_proxy = proxy assert host.configuration? end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
foreman_salt-4.0.0 | test/unit/host_extensions_test.rb |