Skip to content

Commit

Permalink
Merge pull request redhat-openstack#238 from Spredzy/add_default_ensu…
Browse files Browse the repository at this point in the history
…re_packages

(MODULES-603) Add defaults arguments to ensure_packages()
  • Loading branch information
Ashley Penney committed Apr 24, 2014
2 parents 1bdb213 + d9b5e91 commit f42fc4b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,8 @@ Returns true if the variable is empty.
ensure_packages
---------------
Takes a list of packages and only installs them if they don't already exist.
It optionally takes a hash as a second parameter that will be passed as the
third argument to the ensure_resource() function.


- *Type*: statement
Expand Down
16 changes: 13 additions & 3 deletions lib/puppet/parser/functions/ensure_packages.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,29 @@
module Puppet::Parser::Functions
newfunction(:ensure_packages, :type => :statement, :doc => <<-EOS
Takes a list of packages and only installs them if they don't already exist.
It optionally takes a hash as a second parameter that will be passed as the
third argument to the ensure_resource() function.
EOS
) do |arguments|

if arguments.size != 1
if arguments.size > 2 or arguments.size == 0
raise(Puppet::ParseError, "ensure_packages(): Wrong number of arguments " +
"given (#{arguments.size} for 1)")
"given (#{arguments.size} for 1 or 2)")
elsif arguments.size == 2 and !arguments[1].is_a?(Hash)
raise(Puppet::ParseError, 'ensure_packages(): Requires second argument to be a Hash')
end

packages = Array(arguments[0])

if arguments[1]
defaults = { 'ensure' => 'present' }.merge(arguments[1])
else
defaults = { 'ensure' => 'present' }
end

Puppet::Parser::Functions.function(:ensure_resource)
packages.each { |package_name|
function_ensure_resource(['package', package_name, {'ensure' => 'present' } ])
function_ensure_resource(['package', package_name, defaults ])
}
end
end
Expand Down
13 changes: 12 additions & 1 deletion spec/functions/ensure_packages_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
it 'fails with no arguments' do
expect {
scope.function_ensure_packages([])
}.to raise_error(Puppet::ParseError, /0 for 1/)
}.to raise_error(Puppet::ParseError, /0 for 1 or 2/)
end

it 'accepts an array of values' do
Expand Down Expand Up @@ -67,4 +67,15 @@
expect(catalog.resource(:package, 'facter')['ensure']).to eq('present')
end
end

context 'given a clean catalog and specified defaults' do
let :catalog do
compile_to_catalog('ensure_packages(["facter"], {"provider" => "gem"})')
end

it 'declares package resources with ensure => present' do
expect(catalog.resource(:package, 'facter')['ensure']).to eq('present')
expect(catalog.resource(:package, 'facter')['provider']).to eq('gem')
end
end
end

0 comments on commit f42fc4b

Please sign in to comment.