Project

General

Profile

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

class LookupKeyTest < ActiveSupport::TestCase

def test_element_seperations
key = ""
as_admin do
key = LookupKey.create!(:key => "ntp", :path => "domain,hostgroup\n domain", :puppetclass => Puppetclass.first)
end
elements = key.send(:path_elements) # hack to access private method
assert_equal "domain", elements[0][0]
assert_equal "hostgroup", elements[0][1]
assert_equal "domain", elements[1][0]
end

def test_path2match_single_domain_path
key = ""
value = ""
as_admin do
key = LookupKey.create!(:key => "ntp", :path => "domain", :puppetclass => Puppetclass.first)
value = LookupValue.create!(:value => "ntp.mydomain.net", :match => "domain = mydomain.net", :lookup_key => key)
end

host = hosts(:one)
host.domain = domains(:mydomain)
assert_equal [value.match], key.send(:path2matches,host)
end

def test_fetching_the_correct_value_to_a_given_key
key = ""
value = ""
puppetclass = puppetclasses(:one)

as_admin do
key = LookupKey.create!(:key => "dns", :path => "domain\npuppetversion", :puppetclass => puppetclass,:override=>true)
value = LookupValue.create!(:value => "[1.2.3.4,2.3.4.5]", :match => "domain = mydomain.net", :lookup_key => key)
EnvironmentClass.create!(:puppetclass => puppetclass, :environment => environments(:production), :lookup_key => key)
end

key.reload
assert key.lookup_values_count > 0
host = hosts(:one)
host.domain = domains(:mydomain)

assert_equal value.value, Classification::ClassParam.new(:host=>host).enc['base']['dns']
end

def test_path2match_single_hostgroup_path
key = ""
value = ""
as_admin do
key = LookupKey.create!(:key => "ntp", :path => "hostgroup", :puppetclass => Puppetclass.first)
value = LookupValue.create!(:value => "ntp.pool.org", :match => "hostgroup = Common", :lookup_key => key)
end
host = hosts(:one)
host.hostgroup = hostgroups(:common)
assert_equal [value.match], key.send(:path2matches,host)
end

def test_multiple_paths
host = hosts(:one)
host.hostgroup = hostgroups(:common)
host.environment = environments(:testing)

host2 = hosts(:minimal)
host2.hostgroup = hostgroups(:unusual)
host2.environment = environments(:testing)

host3 = hosts(:redhat)
host3.environment = environments(:testing)

default = "default"
key = ""
value1 = ""
value2 = ""
puppetclass = Puppetclass.first
as_admin do
key = LookupKey.create!(:key => "dns", :path => "environment,hostgroup \n hostgroup", :puppetclass => puppetclass, :default_value => default, :override=>true)
value1 = LookupValue.create!(:value => "v1", :match => "environment=testing,hostgroup=Common", :lookup_key => key)
value2 = LookupValue.create!(:value => "v2", :match => "hostgroup=Unusual", :lookup_key => key)
EnvironmentClass.create!(:puppetclass => puppetclass, :environment => environments(:testing), :lookup_key => key)
HostClass.create!(:host => host,:puppetclass=>puppetclass)
HostClass.create!(:host => host2,:puppetclass=>puppetclass)
HostClass.create!(:host => host3,:puppetclass=>puppetclass)
end

key.reload

assert_equal value1.value, Classification::ClassParam.new(:host=>host).enc['apache']['dns']
assert_equal value2.value, Classification::ClassParam.new(:host=>host2).enc['apache']['dns']
assert_equal default, Classification::ClassParam.new(:host=>host3).enc['apache']['dns']
end

def test_parameters_multiple_paths
host = hosts(:one)
host.hostgroup = hostgroups(:common)

host2 = hosts(:minimal)
host2.hostgroup = hostgroups(:unusual)

host3 = hosts(:redhat)

default = "default"
key = ""
value1 = ""
value2 = ""
puppetclass = Puppetclass.first
as_admin do
key = LookupKey.create!(:key => "dns", :path => "environment,hostgroup \n hostgroup", :puppetclass => puppetclass, :default_value => default, :override=>true)
value1 = LookupValue.create!(:value => "v1", :match => "hostgroup=Common", :lookup_key => key)
value2 = LookupValue.create!(:value => "v2", :match => "hostgroup=Unusual", :lookup_key => key)
host.puppetclasses << puppetclass
host2.puppetclasses << puppetclass
host3.puppetclasses << puppetclass
end

key.reload

assert_equal value1.value, Classification::GlobalParam.new(:host=>host).enc['dns']
assert_equal value2.value, Classification::GlobalParam.new(:host=>host2).enc['dns']
assert_equal default, Classification::GlobalParam.new(:host=>host3).enc['dns']
end

def test_value_should_not_be_changed
param = lookup_keys(:three)
default = param.default_value
param.save
assert_equal default, param.default_value
assert_equal default, param.default_value_before_type_cast
end

test "this is a smart variable?" do
assert lookup_keys(:two).is_smart_variable?
end

test "this is a smart class parameter?" do
assert lookup_keys(:complex).is_smart_class_parameter?
end

test "when changed, an audit entry should be added" do
env = FactoryGirl.create(:environment)
pc = FactoryGirl.create(:puppetclass, :with_parameters, :environments => [env])
key = pc.class_params.first
assert_difference('Audit.count') do
key.override = true
key.default_value = "new default value"
key.save!
end
assert_equal pc.name, key.audits.last.associated_name
end
end
(47-47/96)