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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../../spec_helper'
require 'puppet/application/kick'
describe Puppet::Application::Kick do
confine "Kick's eventloops can only start on POSIX" => Puppet.features.posix?
before :each do
require 'puppet/util/ldap/connection'
Puppet::Util::Ldap::Connection.stubs(:new).returns(stub_everything)
@kick = Puppet::Application[:kick]
Puppet::Util::Log.stubs(:newdestination)
Puppet::Util::Log.stubs(:level=)
end
describe ".new" do
it "should take a command-line object as an argument" do
command_line = stub_everything "command_line"
lambda{ Puppet::Application::Kick.new( command_line ) }.should_not raise_error
end
end
it "should ask Puppet::Application to not parse Puppet configuration file" do
@kick.should_parse_config?.should be_false
end
it "should declare a main command" do
@kick.should respond_to(:main)
end
it "should declare a test command" do
@kick.should respond_to(:test)
end
it "should declare a preinit block" do
@kick.should respond_to(:preinit)
end
describe "during preinit" do
before :each do
@kick.stubs(:trap)
end
it "should catch INT and TERM" do
@kick.stubs(:trap).with { |arg,block| arg == :INT or arg == :TERM }
@kick.preinit
end
it "should set parallel option to 1" do
@kick.preinit
@kick.options[:parallel].should == 1
end
it "should set verbose by default" do
@kick.preinit
@kick.options[:verbose].should be_true
end
it "should set fqdn by default" do
@kick.preinit
@kick.options[:fqdn].should be_true
end
it "should set ignoreschedules to 'false'" do
@kick.preinit
@kick.options[:ignoreschedules].should be_false
end
it "should set foreground to 'false'" do
@kick.preinit
@kick.options[:foreground].should be_false
end
end
describe "when applying options" do
before do
@kick.preinit
end
[:all, :foreground, :debug, :ping, :test].each do |option|
it "should declare handle_#{option} method" do
@kick.should respond_to("handle_#{option}".to_sym)
end
it "should store argument value when calling handle_#{option}" do
@kick.options.expects(:[]=).with(option, 'arg')
@kick.send("handle_#{option}".to_sym, 'arg')
end
end
it "should add to the host list with the host option" do
@kick.handle_host('host')
@kick.hosts.should == ['host']
end
it "should add to the tag list with the tag option" do
@kick.handle_tag('tag')
@kick.tags.should == ['tag']
end
it "should add to the class list with the class option" do
@kick.handle_class('class')
@kick.classes.should == ['class']
end
end
describe "during setup" do
before :each do
@kick.classes = []
@kick.tags = []
@kick.hosts = []
Puppet::Log.stubs(:level=)
@kick.stubs(:trap)
@kick.stubs(:puts)
Puppet.stubs(:parse_config)
@kick.options.stubs(:[]).with(any_parameters)
end
it "should set log level to debug if --debug was passed" do
@kick.options.stubs(:[]).with(:debug).returns(true)
Puppet::Log.expects(:level=).with(:debug)
@kick.setup
end
it "should set log level to info if --verbose was passed" do
@kick.options.stubs(:[]).with(:verbose).returns(true)
Puppet::Log.expects(:level=).with(:info)
@kick.setup
end
it "should Parse puppet config" do
Puppet.expects(:parse_config)
@kick.setup
end
describe "when using the ldap node terminus" do
before :each do
Puppet.stubs(:[]).with(:node_terminus).returns("ldap")
end
it "should pass the fqdn option to search" do
@kick.options.stubs(:[]).with(:fqdn).returns(:something)
@kick.options.stubs(:[]).with(:all).returns(true)
@kick.stubs(:puts)
Puppet::Node.expects(:search).with("whatever",:fqdn => :something).returns([])
@kick.setup
end
it "should search for all nodes if --all" do
@kick.options.stubs(:[]).with(:all).returns(true)
@kick.stubs(:puts)
Puppet::Node.expects(:search).with("whatever",:fqdn => nil).returns([])
@kick.setup
end
it "should search for nodes including given classes" do
@kick.options.stubs(:[]).with(:all).returns(false)
@kick.stubs(:puts)
@kick.classes = ['class']
Puppet::Node.expects(:search).with("whatever", :class => "class", :fqdn => nil).returns([])
@kick.setup
end
end
describe "when using regular nodes" do
it "should fail if some classes have been specified" do
$stderr.stubs(:puts)
@kick.classes = ['class']
@kick.expects(:exit).with(24)
@kick.setup
end
end
end
describe "when running" do
before :each do
@kick.stubs(:puts)
end
it "should dispatch to test if --test is used" do
@kick.options.stubs(:[]).with(:test).returns(true)
@kick.expects(:test)
@kick.run_command
end
it "should dispatch to main if --test is not used" do
@kick.options.stubs(:[]).with(:test).returns(false)
@kick.expects(:main)
@kick.run_command
end
describe "the test command" do
it "should exit with exit code 0 " do
@kick.expects(:exit).with(0)
@kick.test
end
end
describe "the main command" do
before :each do
@kick.options.stubs(:[]).with(:parallel).returns(1)
@kick.options.stubs(:[]).with(:ping).returns(false)
@kick.options.stubs(:[]).with(:ignoreschedules).returns(false)
@kick.options.stubs(:[]).with(:foreground).returns(false)
@kick.options.stubs(:[]).with(:debug).returns(false)
@kick.stubs(:print)
@kick.stubs(:exit)
@kick.preinit
@kick.stubs(:parse_options)
@kick.setup
$stderr.stubs(:puts)
end
it "should create as much childs as --parallel" do
@kick.options.stubs(:[]).with(:parallel).returns(3)
@kick.hosts = ['host1', 'host2', 'host3']
@kick.stubs(:exit).raises(SystemExit)
Process.stubs(:wait).returns(1).then.returns(2).then.returns(3).then.raises(Errno::ECHILD)
@kick.expects(:fork).times(3).returns(1).then.returns(2).then.returns(3)
lambda { @kick.main }.should raise_error
end
it "should delegate to run_for_host per host" do
@kick.hosts = ['host1', 'host2']
@kick.stubs(:exit).raises(SystemExit)
@kick.stubs(:fork).returns(1).yields
Process.stubs(:wait).returns(1).then.raises(Errno::ECHILD)
@kick.expects(:run_for_host).times(2)
lambda { @kick.main }.should raise_error
end
describe "during call of run_for_host" do
before do
require 'puppet/run'
options = {
:background => true, :ignoreschedules => false, :tags => []
}
@kick.preinit
@agent_run = Puppet::Run.new( options.dup )
@agent_run.stubs(:status).returns("success")
Puppet::Run.indirection.expects(:terminus_class=).with( :rest )
Puppet::Run.expects(:new).with( options ).returns(@agent_run)
end
it "should call run on a Puppet::Run for the given host" do
@agent_run.expects(:save).with('https://host:8139/production/run/host').returns(@agent_run)
@kick.run_for_host('host')
end
it "should exit the child with 0 on success" do
@agent_run.stubs(:status).returns("success")
@kick.expects(:exit).with(0)
@kick.run_for_host('host')
end
it "should exit the child with 3 on running" do
@agent_run.stubs(:status).returns("running")
@kick.expects(:exit).with(3)
@kick.run_for_host('host')
end
it "should exit the child with 12 on unknown answer" do
@agent_run.stubs(:status).returns("whatever")
@kick.expects(:exit).with(12)
@kick.run_for_host('host')
end
end
end
end
end
|