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 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/configurer'
describe Puppet::Configurer do
before do
Puppet.settings.stubs(:use).returns(true)
@agent = Puppet::Configurer.new
@agent.stubs(:init_storage)
Puppet::Util::Storage.stubs(:store)
Puppet[:server] = "puppetmaster"
Puppet[:report] = true
end
it "should include the Fact Handler module" do
expect(Puppet::Configurer.ancestors).to be_include(Puppet::Configurer::FactHandler)
end
describe "when executing a pre-run hook" do
it "should do nothing if the hook is set to an empty string" do
Puppet.settings[:prerun_command] = ""
Puppet::Util.expects(:exec).never
@agent.execute_prerun_command
end
it "should execute any pre-run command provided via the 'prerun_command' setting" do
Puppet.settings[:prerun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
@agent.execute_prerun_command
end
it "should fail if the command fails" do
Puppet.settings[:prerun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
expect(@agent.execute_prerun_command).to be_falsey
end
end
describe "when executing a post-run hook" do
it "should do nothing if the hook is set to an empty string" do
Puppet.settings[:postrun_command] = ""
Puppet::Util.expects(:exec).never
@agent.execute_postrun_command
end
it "should execute any post-run command provided via the 'postrun_command' setting" do
Puppet.settings[:postrun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
@agent.execute_postrun_command
end
it "should fail if the command fails" do
Puppet.settings[:postrun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
expect(@agent.execute_postrun_command).to be_falsey
end
end
describe "when executing a catalog run" do
before do
Puppet.settings.stubs(:use).returns(true)
@agent.stubs(:download_plugins)
Puppet::Node::Facts.indirection.terminus_class = :memory
@facts = Puppet::Node::Facts.new(Puppet[:node_name_value])
Puppet::Node::Facts.indirection.save(@facts)
@catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote(Puppet[:environment].to_sym))
@catalog.stubs(:to_ral).returns(@catalog)
Puppet::Resource::Catalog.indirection.terminus_class = :rest
Puppet::Resource::Catalog.indirection.stubs(:find).returns(@catalog)
@agent.stubs(:send_report)
@agent.stubs(:save_last_run_summary)
Puppet::Util::Log.stubs(:close_all)
end
after :all do
Puppet::Node::Facts.indirection.reset_terminus_class
Puppet::Resource::Catalog.indirection.reset_terminus_class
end
it "should initialize storage" do
Puppet::Util::Storage.expects(:load)
@agent.run
end
it "downloads plugins when told" do
@agent.expects(:download_plugins)
@agent.run(:pluginsync => true)
end
it "does not download plugins when told" do
@agent.expects(:download_plugins).never
@agent.run(:pluginsync => false)
end
it "should carry on when it can't fetch its node definition" do
error = Net::HTTPError.new(400, 'dummy server communication error')
Puppet::Node.indirection.expects(:find).raises(error)
expect(@agent.run).to eq(0)
end
it "applies a cached catalog when it can't connect to the master" do
error = Errno::ECONNREFUSED.new('Connection refused - connect(2)')
Puppet::Node.indirection.expects(:find).raises(error)
Puppet::Resource::Catalog.indirection.expects(:find).with(anything, has_entry(:ignore_cache => true)).raises(error)
Puppet::Resource::Catalog.indirection.expects(:find).with(anything, has_entry(:ignore_terminus => true)).returns(@catalog)
expect(@agent.run).to eq(0)
end
it "should initialize a transaction report if one is not provided" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns report
@agent.run
end
it "should respect node_name_fact when setting the host on a report" do
Puppet[:node_name_fact] = 'my_name_fact'
@facts.values = {'my_name_fact' => 'node_name_from_fact'}
report = Puppet::Transaction::Report.new("apply")
@agent.run(:report => report)
expect(report.host).to eq('node_name_from_fact')
end
it "should pass the new report to the catalog" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.stubs(:new).returns report
@catalog.expects(:apply).with{|options| options[:report] == report}
@agent.run
end
it "should use the provided report if it was passed one" do
report = Puppet::Transaction::Report.new("apply")
@catalog.expects(:apply).with {|options| options[:report] == report}
@agent.run(:report => report)
end
it "should set the report as a log destination" do
report = Puppet::Transaction::Report.new("apply")
report.expects(:<<).with(instance_of(Puppet::Util::Log)).at_least_once
@agent.run(:report => report)
end
it "should retrieve the catalog" do
@agent.expects(:retrieve_catalog)
@agent.run
end
it "should log a failure and do nothing if no catalog can be retrieved" do
@agent.expects(:retrieve_catalog).returns nil
Puppet.expects(:err).with "Could not retrieve catalog; skipping run"
@agent.run
end
it "should apply the catalog with all options to :run" do
@agent.expects(:retrieve_catalog).returns @catalog
@catalog.expects(:apply).with { |args| args[:one] == true }
@agent.run :one => true
end
it "should accept a catalog and use it instead of retrieving a different one" do
@agent.expects(:retrieve_catalog).never
@catalog.expects(:apply)
@agent.run :one => true, :catalog => @catalog
end
it "should benchmark how long it takes to apply the catalog" do
@agent.expects(:benchmark).with(:notice, instance_of(String))
@agent.expects(:retrieve_catalog).returns @catalog
@catalog.expects(:apply).never # because we're not yielding
@agent.run
end
it "should execute post-run hooks after the run" do
@agent.expects(:execute_postrun_command)
@agent.run
end
it "should send the report" do
report = Puppet::Transaction::Report.new("apply", nil, "test", "aaaa")
Puppet::Transaction::Report.expects(:new).returns(report)
@agent.expects(:send_report).with(report)
expect(report.environment).to eq("test")
expect(report.transaction_uuid).to eq("aaaa")
@agent.run
end
it "should send the transaction report even if the catalog could not be retrieved" do
@agent.expects(:retrieve_catalog).returns nil
report = Puppet::Transaction::Report.new("apply", nil, "test", "aaaa")
Puppet::Transaction::Report.expects(:new).returns(report)
@agent.expects(:send_report).with(report)
expect(report.environment).to eq("test")
expect(report.transaction_uuid).to eq("aaaa")
@agent.run
end
it "should send the transaction report even if there is a failure" do
@agent.expects(:retrieve_catalog).raises "whatever"
report = Puppet::Transaction::Report.new("apply", nil, "test", "aaaa")
Puppet::Transaction::Report.expects(:new).returns(report)
@agent.expects(:send_report).with(report)
expect(report.environment).to eq("test")
expect(report.transaction_uuid).to eq("aaaa")
expect(@agent.run).to be_nil
end
it "should remove the report as a log destination when the run is finished" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
@agent.run
expect(Puppet::Util::Log.destinations).not_to include(report)
end
it "should return the report exit_status as the result of the run" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
report.expects(:exit_status).returns(1234)
expect(@agent.run).to eq(1234)
end
it "should send the transaction report even if the pre-run command fails" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
Puppet.settings[:prerun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
@agent.expects(:send_report).with(report)
expect(@agent.run).to be_nil
end
it "should include the pre-run command failure in the report" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
Puppet.settings[:prerun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
expect(@agent.run).to be_nil
expect(report.logs.find { |x| x.message =~ /Could not run command from prerun_command/ }).to be
end
it "should send the transaction report even if the post-run command fails" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
Puppet.settings[:postrun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
@agent.expects(:send_report).with(report)
expect(@agent.run).to be_nil
end
it "should include the post-run command failure in the report" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
Puppet.settings[:postrun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
report.expects(:<<).with { |log| log.message.include?("Could not run command from postrun_command") }
expect(@agent.run).to be_nil
end
it "should execute post-run command even if the pre-run command fails" do
Puppet.settings[:prerun_command] = "/my/precommand"
Puppet.settings[:postrun_command] = "/my/postcommand"
Puppet::Util::Execution.expects(:execute).with(["/my/precommand"]).raises(Puppet::ExecutionFailure, "Failed")
Puppet::Util::Execution.expects(:execute).with(["/my/postcommand"])
expect(@agent.run).to be_nil
end
it "should finalize the report" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
report.expects(:finalize_report)
@agent.run
end
it "should not apply the catalog if the pre-run command fails" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
Puppet.settings[:prerun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
@catalog.expects(:apply).never()
@agent.expects(:send_report)
expect(@agent.run).to be_nil
end
it "should apply the catalog, send the report, and return nil if the post-run command fails" do
report = Puppet::Transaction::Report.new("apply")
Puppet::Transaction::Report.expects(:new).returns(report)
Puppet.settings[:postrun_command] = "/my/command"
Puppet::Util::Execution.expects(:execute).with(["/my/command"]).raises(Puppet::ExecutionFailure, "Failed")
@catalog.expects(:apply)
@agent.expects(:send_report)
expect(@agent.run).to be_nil
end
it "should refetch the catalog if the server specifies a new environment in the catalog" do
catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote('second_env'))
@agent.expects(:retrieve_catalog).returns(catalog).twice
@agent.run
end
it "should change the environment setting if the server specifies a new environment in the catalog" do
@catalog.stubs(:environment).returns("second_env")
@agent.run
expect(@agent.environment).to eq("second_env")
end
it "should fix the report if the server specifies a new environment in the catalog" do
report = Puppet::Transaction::Report.new("apply", nil, "test", "aaaa")
Puppet::Transaction::Report.expects(:new).returns(report)
@agent.expects(:send_report).with(report)
@catalog.stubs(:environment).returns("second_env")
@agent.stubs(:retrieve_catalog).returns(@catalog)
@agent.run
expect(report.environment).to eq("second_env")
end
it "sends the transaction uuid in a catalog request" do
@agent.instance_variable_set(:@transaction_uuid, 'aaa')
Puppet::Resource::Catalog.indirection.expects(:find).with(anything, has_entries(:transaction_uuid => 'aaa'))
@agent.run
end
it "sets the static_catalog query param to true in a catalog request" do
Puppet::Resource::Catalog.indirection.expects(:find).with(anything, has_entries(:static_catalog => true))
@agent.run
end
it "sets the checksum_type query param to the default supported_checksum_types in a catalog request" do
Puppet::Resource::Catalog.indirection.expects(:find).with(anything,
has_entries(:checksum_type => 'md5.sha256'))
@agent.run
end
it "sets the checksum_type query param to the supported_checksum_types setting in a catalog request" do
# Regenerate the agent to pick up the new setting
Puppet[:supported_checksum_types] = ['sha256']
@agent = Puppet::Configurer.new
@agent.stubs(:init_storage)
@agent.stubs(:download_plugins)
@agent.stubs(:send_report)
@agent.stubs(:save_last_run_summary)
Puppet::Resource::Catalog.indirection.expects(:find).with(anything, has_entries(:checksum_type => 'sha256'))
@agent.run
end
describe "when not using a REST terminus for catalogs" do
it "should not pass any facts when retrieving the catalog" do
Puppet::Resource::Catalog.indirection.terminus_class = :compiler
@agent.expects(:facts_for_uploading).never
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options|
options[:facts].nil?
}.returns @catalog
@agent.run
end
end
describe "when using a REST terminus for catalogs" do
it "should pass the prepared facts and the facts format as arguments when retrieving the catalog" do
Puppet::Resource::Catalog.indirection.terminus_class = :rest
@agent.expects(:facts_for_uploading).returns(:facts => "myfacts", :facts_format => :foo)
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options|
options[:facts] == "myfacts" and options[:facts_format] == :foo
}.returns @catalog
@agent.run
end
end
end
describe "when initialized with a transaction_uuid" do
it "stores it" do
SecureRandom.expects(:uuid).never
configurer = Puppet::Configurer.new(Puppet::Configurer::DownloaderFactory.new, 'foo')
expect(configurer.instance_variable_get(:@transaction_uuid) == 'foo')
end
end
describe "when sending a report" do
include PuppetSpec::Files
before do
Puppet.settings.stubs(:use).returns(true)
@configurer = Puppet::Configurer.new
Puppet[:lastrunfile] = tmpfile('last_run_file')
@report = Puppet::Transaction::Report.new("apply")
Puppet[:reports] = "none"
end
it "should print a report summary if configured to do so" do
Puppet.settings[:summarize] = true
@report.expects(:summary).returns "stuff"
@configurer.expects(:puts).with("stuff")
@configurer.send_report(@report)
end
it "should not print a report summary if not configured to do so" do
Puppet.settings[:summarize] = false
@configurer.expects(:puts).never
@configurer.send_report(@report)
end
it "should save the report if reporting is enabled" do
Puppet.settings[:report] = true
Puppet::Transaction::Report.indirection.expects(:save).with(@report, nil, instance_of(Hash))
@configurer.send_report(@report)
end
it "should not save the report if reporting is disabled" do
Puppet.settings[:report] = false
Puppet::Transaction::Report.indirection.expects(:save).with(@report, nil, instance_of(Hash)).never
@configurer.send_report(@report)
end
it "should save the last run summary if reporting is enabled" do
Puppet.settings[:report] = true
@configurer.expects(:save_last_run_summary).with(@report)
@configurer.send_report(@report)
end
it "should save the last run summary if reporting is disabled" do
Puppet.settings[:report] = false
@configurer.expects(:save_last_run_summary).with(@report)
@configurer.send_report(@report)
end
it "should log but not fail if saving the report fails" do
Puppet.settings[:report] = true
Puppet::Transaction::Report.indirection.expects(:save).raises("whatever")
Puppet.expects(:err)
expect { @configurer.send_report(@report) }.not_to raise_error
end
end
describe "when saving the summary report file" do
include PuppetSpec::Files
before do
Puppet.settings.stubs(:use).returns(true)
@configurer = Puppet::Configurer.new
@report = stub 'report', :raw_summary => {}
Puppet[:lastrunfile] = tmpfile('last_run_file')
end
it "should write the last run file" do
@configurer.save_last_run_summary(@report)
expect(Puppet::FileSystem.exist?(Puppet[:lastrunfile])).to be_truthy
end
it "should write the raw summary as yaml" do
@report.expects(:raw_summary).returns("summary")
@configurer.save_last_run_summary(@report)
expect(File.read(Puppet[:lastrunfile])).to eq(YAML.dump("summary"))
end
it "should log but not fail if saving the last run summary fails" do
# The mock will raise an exception on any method used. This should
# simulate a nice hard failure from the underlying OS for us.
fh = Class.new(Object) do
def method_missing(*args)
raise "failed to do #{args[0]}"
end
end.new
Puppet::Util.expects(:replace_file).yields(fh)
Puppet.expects(:err)
expect { @configurer.save_last_run_summary(@report) }.to_not raise_error
end
it "should create the last run file with the correct mode" do
Puppet.settings.setting(:lastrunfile).expects(:mode).returns('664')
@configurer.save_last_run_summary(@report)
if Puppet::Util::Platform.windows?
require 'puppet/util/windows/security'
mode = Puppet::Util::Windows::Security.get_mode(Puppet[:lastrunfile])
else
mode = Puppet::FileSystem.stat(Puppet[:lastrunfile]).mode
end
expect(mode & 0777).to eq(0664)
end
it "should report invalid last run file permissions" do
Puppet.settings.setting(:lastrunfile).expects(:mode).returns('892')
Puppet.expects(:err).with(regexp_matches(/Could not save last run local report.*892 is invalid/))
@configurer.save_last_run_summary(@report)
end
end
describe "when requesting a node" do
it "uses the transaction uuid in the request" do
Puppet::Node.indirection.expects(:find).with(anything, has_entries(:transaction_uuid => anything)).twice
@agent.run
end
it "sends an explicitly configured environment request" do
Puppet.settings.expects(:set_by_config?).with(:environment).returns(true)
Puppet::Node.indirection.expects(:find).with(anything, has_entries(:configured_environment => Puppet[:environment])).twice
@agent.run
end
it "does not send a configured_environment when using the default" do
Puppet::Node.indirection.expects(:find).with(anything, has_entries(:configured_environment => nil)).twice
@agent.run
end
end
def expects_new_catalog_only(catalog)
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns catalog
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_terminus] == true }.never
end
def expects_cached_catalog_only(catalog)
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_terminus] == true }.returns catalog
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.never
end
def expects_fallback_to_cached_catalog(catalog)
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns nil
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_terminus] == true }.returns catalog
end
def expects_fallback_to_new_catalog(catalog)
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_terminus] == true }.returns nil
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns catalog
end
def expects_neither_new_or_cached_catalog
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns nil
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_terminus] == true }.returns nil
end
describe "when retrieving a catalog" do
before do
Puppet.settings.stubs(:use).returns(true)
@agent.stubs(:facts_for_uploading).returns({})
@agent.stubs(:download_plugins)
# retrieve a catalog in the current environment, so we don't try to converge unexpectedly
@catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote(Puppet[:environment].to_sym))
# this is the default when using a Configurer instance
Puppet::Resource::Catalog.indirection.stubs(:terminus_class).returns :rest
end
describe "and configured to only retrieve a catalog from the cache" do
before do
Puppet.settings[:use_cached_catalog] = true
end
it "should first look in the cache for a catalog" do
expects_cached_catalog_only(@catalog)
expect(@agent.retrieve_catalog({})).to eq(@catalog)
end
it "should not make a node request or pluginsync when a cached catalog is successfully retrieved" do
Puppet::Node.indirection.expects(:find).never
expects_cached_catalog_only(@catalog)
@agent.expects(:download_plugins).never
@agent.run
end
it "should make a node request and pluginsync when a cached catalog cannot be retrieved" do
Puppet::Node.indirection.expects(:find).returns nil
expects_fallback_to_new_catalog(@catalog)
@agent.expects(:download_plugins)
@agent.run
end
it "should set its cached_catalog_status to 'explicitly_requested'" do
expects_cached_catalog_only(@catalog)
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('explicitly_requested')
end
it "should set its cached_catalog_status to 'explicitly requested' if the cached catalog is from a different environment" do
cached_catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote('second_env'))
expects_cached_catalog_only(cached_catalog)
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('explicitly_requested')
end
it "should compile a new catalog if none is found in the cache" do
expects_fallback_to_new_catalog(@catalog)
expect(@agent.retrieve_catalog({})).to eq(@catalog)
end
it "should set its cached_catalog_status to 'not_used' if no catalog is found in the cache" do
expects_fallback_to_new_catalog(@catalog)
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('not_used')
end
it "should not attempt to retrieve a cached catalog again if the first attempt failed" do
Puppet::Node.indirection.expects(:find).returns(nil)
expects_neither_new_or_cached_catalog
@agent.run
end
it "should return the cached catalog when the environment doesn't match" do
cached_catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote('second_env'))
expects_cached_catalog_only(cached_catalog)
Puppet.expects(:info).with("Using cached catalog from environment 'second_env'")
expect(@agent.retrieve_catalog({})).to eq(cached_catalog)
end
end
describe "and strict environment mode is set" do
before do
@catalog.stubs(:to_ral).returns(@catalog)
@catalog.stubs(:write_class_file)
@catalog.stubs(:write_resource_file)
@agent.stubs(:send_report)
@agent.stubs(:save_last_run_summary)
Puppet.settings[:strict_environment_mode] = true
end
it "should not make a node request" do
Puppet::Node.indirection.expects(:find).never
@agent.run
end
it "should return nil when the catalog's environment doesn't match the agent specified environment" do
@agent.instance_variable_set(:@environment, 'second_env')
expects_new_catalog_only(@catalog)
Puppet.expects(:err).with("Not using catalog because its environment 'production' does not match agent specified environment 'second_env' and strict_environment_mode is set")
expect(@agent.run).to be_nil
end
it "should not return nil when the catalog's environment matches the agent specified environment" do
@agent.instance_variable_set(:@environment, 'production')
expects_new_catalog_only(@catalog)
expect(@agent.run).to eq(0)
end
describe "and a cached catalog is explicitly requested" do
before do
Puppet.settings[:use_cached_catalog] = true
end
it "should return nil when the cached catalog's environment doesn't match the agent specified environment" do
@agent.instance_variable_set(:@environment, 'second_env')
expects_cached_catalog_only(@catalog)
Puppet.expects(:err).with("Not using catalog because its environment 'production' does not match agent specified environment 'second_env' and strict_environment_mode is set")
expect(@agent.run).to be_nil
end
it "should proceed with the cached catalog if its environment matchs the local environment" do
Puppet.settings[:use_cached_catalog] = true
@agent.instance_variable_set(:@environment, 'production')
expects_cached_catalog_only(@catalog)
expect(@agent.run).to eq(0)
end
end
end
it "should use the Catalog class to get its catalog" do
Puppet::Resource::Catalog.indirection.expects(:find).returns @catalog
@agent.retrieve_catalog({})
end
it "should set its cached_catalog_status to 'not_used' when downloading a new catalog" do
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns @catalog
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('not_used')
end
it "should use its node_name_value to retrieve the catalog" do
Facter.stubs(:value).returns "eh"
Puppet.settings[:node_name_value] = "myhost.domain.com"
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| name == "myhost.domain.com" }.returns @catalog
@agent.retrieve_catalog({})
end
it "should default to returning a catalog retrieved directly from the server, skipping the cache" do
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns @catalog
expect(@agent.retrieve_catalog({})).to eq(@catalog)
end
it "should log and return the cached catalog when no catalog can be retrieved from the server" do
expects_fallback_to_cached_catalog(@catalog)
Puppet.expects(:info).with("Using cached catalog from environment 'production'")
expect(@agent.retrieve_catalog({})).to eq(@catalog)
end
it "should set its cached_catalog_status to 'on_failure' when no catalog can be retrieved from the server" do
expects_fallback_to_cached_catalog(@catalog)
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('on_failure')
end
it "should not look in the cache for a catalog if one is returned from the server" do
expects_new_catalog_only(@catalog)
expect(@agent.retrieve_catalog({})).to eq(@catalog)
end
it "should return the cached catalog when retrieving the remote catalog throws an exception" do
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.raises "eh"
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_terminus] == true }.returns @catalog
expect(@agent.retrieve_catalog({})).to eq(@catalog)
end
it "should set its cached_catalog_status to 'on_failure' when retrieving the remote catalog throws an exception" do
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.raises "eh"
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_terminus] == true }.returns @catalog
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('on_failure')
end
it "should log and return nil if no catalog can be retrieved from the server and :usecacheonfailure is disabled" do
Puppet[:usecacheonfailure] = false
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns nil
Puppet.expects(:warning).with('Not using cache on failed catalog')
expect(@agent.retrieve_catalog({})).to be_nil
end
it "should set its cached_catalog_status to 'not_used' if no catalog can be retrieved from the server and :usecacheonfailure is disabled or fails to retrieve a catalog" do
Puppet[:usecacheonfailure] = false
Puppet::Resource::Catalog.indirection.expects(:find).with { |name, options| options[:ignore_cache] == true }.returns nil
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('not_used')
end
it "should return nil if no cached catalog is available and no catalog can be retrieved from the server" do
expects_neither_new_or_cached_catalog
expect(@agent.retrieve_catalog({})).to be_nil
end
it "should return nil if its cached catalog environment doesn't match server-specified environment" do
cached_catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote('second_env'))
@agent.instance_variable_set(:@node_environment, 'production')
expects_fallback_to_cached_catalog(cached_catalog)
Puppet.expects(:err).with("Not using cached catalog because its environment 'second_env' does not match 'production'")
expect(@agent.retrieve_catalog({})).to be_nil
end
it "should set its cached_catalog_status to 'not_used' if the cached catalog environment doesn't match server-specified environment" do
cached_catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote('second_env'))
@agent.instance_variable_set(:@node_environment, 'production')
expects_fallback_to_cached_catalog(cached_catalog)
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('not_used')
end
it "should return its cached catalog if the environment matches the server-specified environment" do
cached_catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote(Puppet[:environment]))
@agent.instance_variable_set(:@node_environment, cached_catalog.environment)
expects_fallback_to_cached_catalog(cached_catalog)
expect(@agent.retrieve_catalog({})).to eq(cached_catalog)
end
it "should set its cached_catalog_status to 'on_failure' if the cached catalog environment matches server-specified environment" do
cached_catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote(Puppet[:environment]))
@agent.instance_variable_set(:@node_environment, cached_catalog.environment)
expects_fallback_to_cached_catalog(cached_catalog)
@agent.retrieve_catalog({})
expect(@agent.instance_variable_get(:@cached_catalog_status)).to eq('on_failure')
end
end
describe "when converting the catalog" do
before do
Puppet.settings.stubs(:use).returns(true)
catalog.stubs(:to_ral).returns ral_catalog
end
let (:catalog) { Puppet::Resource::Catalog.new('tester', Puppet::Node::Environment.remote(Puppet[:environment].to_sym)) }
let (:ral_catalog) { Puppet::Resource::Catalog.new('tester', Puppet::Node::Environment.remote(Puppet[:environment].to_sym)) }
it "should convert the catalog to a RAL-formed catalog" do
expect(@agent.convert_catalog(catalog, 10)).to equal(ral_catalog)
end
it "should finalize the catalog" do
ral_catalog.expects(:finalize)
@agent.convert_catalog(catalog, 10)
end
it "should record the passed retrieval time with the RAL catalog" do
ral_catalog.expects(:retrieval_duration=).with 10
@agent.convert_catalog(catalog, 10)
end
it "should write the RAL catalog's class file" do
ral_catalog.expects(:write_class_file)
@agent.convert_catalog(catalog, 10)
end
it "should write the RAL catalog's resource file" do
ral_catalog.expects(:write_resource_file)
@agent.convert_catalog(catalog, 10)
end
end
describe "when determining whether to pluginsync" do
it "should default to Puppet[:pluginsync] when explicitly set by the commandline" do
Puppet.settings[:pluginsync] = false
Puppet.settings.expects(:set_by_cli?).returns(true)
expect(described_class).not_to be_should_pluginsync
end
it "should default to Puppet[:pluginsync] when explicitly set by config" do
Puppet.settings[:pluginsync] = false
Puppet.settings.expects(:set_by_config?).returns(true)
expect(described_class).not_to be_should_pluginsync
end
it "should be true if use_cached_catalog is false" do
Puppet.settings[:use_cached_catalog] = false
expect(described_class).to be_should_pluginsync
end
it "should be false if use_cached_catalog is true" do
Puppet.settings[:use_cached_catalog] = true
expect(described_class).not_to be_should_pluginsync
end
end
describe "when attempting failover" do
it "should not failover if server_list is not set" do
Puppet.settings[:server_list] = []
@agent.expects(:find_functional_server).never
@agent.run
end
it "should not failover during an apply run" do
Puppet.settings[:server_list] = ["myserver:123"]
@agent.expects(:find_functional_server).never
catalog = Puppet::Resource::Catalog.new("tester", Puppet::Node::Environment.remote(Puppet[:environment].to_sym))
@agent.run :catalog => catalog
end
it "should select a server when provided" do
Puppet.settings[:server_list] = ["myserver:123"]
pool = Puppet::Network::HTTP::Pool.new(Puppet[:http_keepalive_timeout])
Puppet::Network::HTTP::Pool.expects(:new).returns(pool)
Puppet.expects(:override).with({:http_pool => pool}).yields
Puppet.expects(:override).with({:server => "myserver", :serverport => '123'}).twice.yields
Puppet::Node.indirection.expects(:find).returns(nil)
@agent.expects(:run_internal).returns(nil)
@agent.run
end
it "should fallback to an empty server when failover fails" do
Puppet.settings[:server_list] = ["myserver:123"]
pool = Puppet::Network::HTTP::Pool.new(Puppet[:http_keepalive_timeout])
Puppet::Network::HTTP::Pool.expects(:new).returns(pool)
Puppet.expects(:override).with({:http_pool => pool}).yields
Puppet.expects(:override).with({:server => "myserver", :serverport => '123'}).yields
Puppet.expects(:override).with({:server => nil, :serverport => nil}).yields
error = Net::HTTPError.new(400, 'dummy server communication error')
Puppet::Node.indirection.expects(:find).raises(error)
@agent.expects(:run_internal).returns(nil)
@agent.run
end
it "should not make multiple node requets when the server is found" do
Puppet.settings[:server_list] = ["myserver:123"]
Puppet::Node.indirection.expects(:find).returns("mynode").once
@agent.expects(:prepare_and_retrieve_catalog).returns(nil)
@agent.run
end
end
end
|