Project

General

Profile

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

class LookupKeyTest < ActiveSupport::TestCase

def valid_attrs1
{ :match => "fqdn=#{hosts(:one).name}",
:value => "false",
:lookup_key_id => lookup_keys(:three).id
}
end

def valid_attrs2
{ :match => "fqdn=#{hosts(:two).name}",
:value => "3001",
:lookup_key_id => lookup_keys(:one).id
}
end

def valid_attrs3
{ :match => "hostgroup=Common",
:value => "3001",
:lookup_key_id => lookup_keys(:one).id
}
end

test "create lookup value by admin" do
as_admin do
assert_difference('LookupValue.count') do
LookupValue.create!(valid_attrs2)
end
end
end

test "update lookup value by admin" do
lookup_value = lookup_values(:one)
as_admin do
assert lookup_value.update_attributes!(:value => "9000")
end
end

test "non-admin user cannot create lookup value if user has no matching host/hostgroup" do
# Host.my_hosts returns only hosts(:one)
user = users(:one)
as_user :one do
refute Host.my_hosts.where(:name => hosts(:two).name).exists?
refute Hostgroup.my_groups.where(:name => hosts(:two).try(:hostgroup).try(:name)).exists?
lookup_value = LookupValue.new(valid_attrs2)
refute lookup_value.save
end
end

test "any user including admin cannot create lookup value if match fqdn= does not match existing host" do
as_admin do
attrs = { :match => "fqdn=non.existing.com", :value => "123", :lookup_key_id => lookup_keys(:one).id }
lookup_value = LookupValue.new(attrs)
refute lookup_value.save
assert_match /Match fqdn=non.existing.com does not match an existing host/, lookup_value.errors.full_messages.join("\n")
end
end

test "any user including admin cannot create lookup value if match hostgroup= does not match existing hostgroup" do
as_admin do
attrs = { :match => "hostgroup=non_existing_group", :value => "123", :lookup_key_id => lookup_keys(:one).id }
lookup_value = LookupValue.new(attrs)
refute lookup_value.save
assert_match /Match hostgroup=non_existing_group does not match an existing host group/, lookup_value.errors.full_messages.join("\n")
end
end

test "cannot update lookup value if user has no matching host/hostgroup" do
# Host.my_hosts returns only hosts(:one)
user = users(:one)
as_user :one do
refute Host.my_hosts.where(:name => hosts(:two).name).exists?
refute Hostgroup.my_groups.where(:name => hosts(:two).try(:hostgroup).try(:name)).exists?
refute lookup_values(:hosttwo).update_attributes(:value => "9000")
end
end

test "can create lookup value if user has matching host " do
# Host.my_hosts returns only hosts(:one)
user = users(:one)
as_user :one do
assert Host.my_hosts.where(:name => hosts(:one).name).exists?
refute Hostgroup.my_groups.where(:name => hosts(:one).try(:hostgroup).try(:name)).exists?
lookup_value = LookupValue.new(valid_attrs1)
assert_difference('LookupValue.count') do
assert lookup_value.save
end
end
end

test "can update lookup value if user has matching host " do
# Host.my_hosts returns only hosts(:one)
user = users(:one)
as_user :one do
assert Host.my_hosts.where(:name => hosts(:one).name).exists?
refute Hostgroup.my_groups.where(:name => hosts(:one).try(:hostgroup).try(:name)).exists?
assert lookup_values(:one).update_attributes(:value => "9000")
end
end

test "can create lookup value if user has matching hostgroup " do
# Host.my_hosts returns only hosts(:one)
user = users(:one)
as_admin do
assert user.hostgroups << hostgroups(:common)
end
as_user :one do
assert Hostgroup.my_groups.where(:name => "Common").exists?
lookup_value = LookupValue.new(valid_attrs3)
assert_difference('LookupValue.count') do
assert lookup_value.save
end
end
end

test "can update lookup value if user has matching hostgroup " do
# Host.my_hosts returns only hosts(:one)
user = users(:one)
as_admin do
assert user.hostgroups << hostgroups(:common)
end
as_user :one do
assert Hostgroup.my_groups.where(:name => "Common").exists?
assert lookup_values(:hostgroupcommon).update_attributes(:value => "9000")
end
end

test "smart class parameter accepts valid data" do
as_admin do
lk = LookupValue.new(:value => "---\nfoo:\n bar: baz", :match => "hostgroup=Common", :lookup_key => lookup_keys(:six))
assert lk.valid?
assert lk.save!
end
end

test "smart class parameter validation detects invalid data" do
as_admin do
lk = LookupValue.new(:value => "---\n[[\n;", :match => "hostgroup=Common", :lookup_key => lookup_keys(:six))
refute lk.valid?
assert lk.errors.messages[:value].include? "is invalid yaml"
end
end

test "should cast and uncast string containing a Hash" do
lk1 = LookupValue.new(:value => "---\n foo: bar", :match => "hostgroup=Common", :lookup_key => lookup_keys(:six))
assert lk1.save!
assert lk1.value.is_a? Hash
assert_equal lk1.value_before_type_cast, "foo: bar\n"

lk2 = LookupValue.new(:value => "{'foo': 'bar'}", :match => "environment=Production", :lookup_key => lookup_keys(:six))
assert lk2.save!
assert lk2.value.is_a? Hash
assert_equal lk2.value_before_type_cast, "foo: bar\n"
end

test "should cast and uncast string containing an Array" do
lk = LookupValue.new(:value => "[{\"foo\":\"bar\"},{\"baz\":\"qux\"},\"baz\"]", :match => "hostgroup=Common", :lookup_key => lookup_keys(:seven))
assert lk.save!
assert lk.value.is_a? Array
assert_equal lk.value_before_type_cast, "[{\"foo\":\"bar\"},{\"baz\":\"qux\"},\"baz\"]"
end
end
(39-39/83)