Merge pull request #9720 from briancain/puppet-prov-fix

Properly finalize structured_facts config option
This commit is contained in:
Brian Cain 2018-04-24 09:30:54 -07:00 committed by GitHub
commit 50445505f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 0 deletions

View File

@ -101,6 +101,7 @@ module VagrantPlugins
@synced_folder_args = nil if @synced_folder_args == UNSET_VALUE @synced_folder_args = nil if @synced_folder_args == UNSET_VALUE
@temp_dir = "/tmp/vagrant-puppet" if @temp_dir == UNSET_VALUE @temp_dir = "/tmp/vagrant-puppet" if @temp_dir == UNSET_VALUE
@working_directory = nil if @working_directory == UNSET_VALUE @working_directory = nil if @working_directory == UNSET_VALUE
@structured_facts = nil if @structured_facts == UNSET_VALUE
end end
# Returns the module paths as an array of paths expanded relative to the # Returns the module paths as an array of paths expanded relative to the

View File

@ -49,4 +49,59 @@ describe VagrantPlugins::Puppet::Provisioner::Puppet do
subject.run_puppet_apply() subject.run_puppet_apply()
end end
end end
describe "#provision" do
let(:options) { double("options") }
let(:binary_path) { "/opt/puppetlabs/bin" }
let(:manifest_file) { "default.pp" }
let(:module_paths) { ["etc/puppet/modules"] } # make this something real
let(:environment_paths) { ["/etc/puppet/environment"] }
it "builds structured facts if set" do
allow(machine).to receive(:guest).and_return(true)
allow(machine.guest).to receive(:capability?).and_return(false)
allow(config).to receive(:environment_path).and_return(environment_paths)
allow(config).to receive(:environment).and_return("production")
allow(config).to receive(:manifests_path).and_return(manifest_file)
allow(config).to receive(:temp_dir).and_return("/tmp")
allow(config).to receive(:hiera_config_path).and_return(false)
allow(subject).to receive(:parse_environment_metadata).and_return(true)
allow(subject).to receive(:verify_binary).and_return(true)
allow(subject).to receive(:run_puppet_apply).and_return(true)
allow_message_expectations_on_nil
allow(@module_paths).to receive(:each) { module_paths }
allow(config).to receive(:facter).and_return({"coolfacts"=>"here they are"})
allow(config).to receive(:structured_facts).and_return(true)
expect(machine.communicate).to receive(:upload).with(anything, "/tmp/vagrant_facts.yaml")
expect(machine.communicate).to receive(:sudo).with("mkdir -p /tmp; chmod 0777 /tmp", {})
expect(machine.communicate).to receive(:sudo).with("cp /tmp/vagrant_facts.yaml /etc/puppetlabs/facter/facts.d/vagrant_facts.yaml")
subject.provision()
end
it "does not build structured facts if not set" do
allow(machine).to receive(:guest).and_return(true)
allow(machine.guest).to receive(:capability?).and_return(false)
allow(config).to receive(:environment_path).and_return(environment_paths)
allow(config).to receive(:environment).and_return("production")
allow(config).to receive(:manifests_path).and_return(manifest_file)
allow(config).to receive(:temp_dir).and_return("/tmp")
allow(config).to receive(:hiera_config_path).and_return(false)
allow(subject).to receive(:parse_environment_metadata).and_return(true)
allow(subject).to receive(:verify_binary).and_return(true)
allow(subject).to receive(:run_puppet_apply).and_return(true)
allow_message_expectations_on_nil
allow(@module_paths).to receive(:each) { module_paths }
allow(config).to receive(:facter).and_return({"coolfacts"=>"here they are"})
allow(config).to receive(:structured_facts).and_return(nil)
expect(machine.communicate).not_to receive(:upload).with(anything, "/tmp/vagrant_facts.yaml")
expect(machine.communicate).not_to receive(:sudo).with("cp /tmp/vagrant_facts.yaml /etc/puppetlabs/facter/facts.d/vagrant_facts.yaml")
subject.provision()
end
end
end end