1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/node/environment'
describe "Puppet::Rails::Host", :if => can_use_scratch_database? do
before do
require 'puppet/rails/host'
setup_scratch_database
@node = Puppet::Node.new("foo")
@node.environment = "production"
@node.ipaddress = "127.0.0.1"
@host = stub 'host', :environment= => nil, :ip= => nil
end
describe "when converting a Puppet::Node instance into a Rails instance" do
it "should modify any existing instance in the database" do
Puppet::Rails::Host.expects(:find_by_name).with("foo").returns @host
Puppet::Rails::Host.from_puppet(@node)
end
it "should create a new instance in the database if none can be found" do
Puppet::Rails::Host.expects(:find_by_name).with("foo").returns nil
Puppet::Rails::Host.expects(:new).with(:name => "foo").returns @host
Puppet::Rails::Host.from_puppet(@node)
end
it "should copy the environment from the Puppet instance" do
Puppet::Rails::Host.expects(:find_by_name).with("foo").returns @host
@node.environment = "production"
@host.expects(:environment=).with {|x| x.name.to_s == 'production' }
Puppet::Rails::Host.from_puppet(@node)
end
it "should stringify the environment" do
host = Puppet::Rails::Host.new
host.environment = Puppet::Node::Environment.create(:production, [])
host.environment.class.should == String
end
it "should copy the ipaddress from the Puppet instance" do
Puppet::Rails::Host.expects(:find_by_name).with("foo").returns @host
@node.ipaddress = "192.168.0.1"
@host.expects(:ip=).with "192.168.0.1"
Puppet::Rails::Host.from_puppet(@node)
end
it "should not save the Rails instance" do
Puppet::Rails::Host.expects(:find_by_name).with("foo").returns @host
@host.expects(:save).never
Puppet::Rails::Host.from_puppet(@node)
end
end
describe "when converting a Puppet::Rails::Host instance into a Puppet::Node instance" do
before do
@host = Puppet::Rails::Host.new(:name => "foo", :environment => "production", :ip => "127.0.0.1")
@node = Puppet::Node.new("foo")
Puppet::Node.stubs(:new).with("foo").returns @node
end
it "should create a new instance with the correct name" do
Puppet::Node.expects(:new).with("foo").returns @node
@host.to_puppet
end
it "should copy the environment from the Rails instance" do
@host.environment = "prod"
@node.expects(:environment=).with "prod"
@host.to_puppet
end
it "should copy the ipaddress from the Rails instance" do
@host.ip = "192.168.0.1"
@node.expects(:ipaddress=).with "192.168.0.1"
@host.to_puppet
end
end
describe "when merging catalog resources and database resources" do
before :each do
Puppet[:thin_storeconfigs] = false
@resource1 = stub_everything 'res1'
@resource2 = stub_everything 'res2'
@resources = [ @resource1, @resource2 ]
@dbresource1 = stub_everything 'dbres1'
@dbresource2 = stub_everything 'dbres2'
@dbresources = { 1 => @dbresource1, 2 => @dbresource2 }
@host = Puppet::Rails::Host.new(:name => "foo", :environment => "production", :ip => "127.0.0.1")
@host.stubs(:find_resources).returns(@dbresources)
@host.stubs(:find_resources_parameters_tags)
@host.stubs(:compare_to_catalog)
@host.stubs(:id).returns(1)
end
it "should find all database resources" do
@host.expects(:find_resources)
@host.merge_resources(@resources)
end
it "should find all paramaters and tags for those database resources" do
@host.expects(:find_resources_parameters_tags).with(@dbresources)
@host.merge_resources(@resources)
end
it "should compare all database resources to catalog" do
@host.expects(:compare_to_catalog).with(@dbresources, @resources)
@host.merge_resources(@resources)
end
it "should compare only exported resources in thin_storeconfigs mode" do
Puppet[:thin_storeconfigs] = true
@resource1.stubs(:exported?).returns(true)
@host.expects(:compare_to_catalog).with(@dbresources, [ @resource1 ])
@host.merge_resources(@resources)
end
end
describe "when searching the database for host resources" do
before :each do
Puppet[:thin_storeconfigs] = false
@resource1 = stub_everything 'res1', :id => 1
@resource2 = stub_everything 'res2', :id => 2
@resources = [ @resource1, @resource2 ]
@dbresources = stub 'resources'
@dbresources.stubs(:find).returns(@resources)
@host = Puppet::Rails::Host.new(:name => "foo", :environment => "production", :ip => "127.0.0.1")
@host.stubs(:resources).returns(@dbresources)
end
it "should return a hash keyed by id of all resources" do
@host.find_resources.should == { 1 => @resource1, 2 => @resource2 }
end
it "should return a hash keyed by id of only exported resources in thin_storeconfigs mode" do
Puppet[:thin_storeconfigs] = true
@dbresources.expects(:find).with { |*h| h[1][:conditions] == { :exported => true } }.returns([])
@host.find_resources
end
end
end
|