summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2012-11-27 16:22:11 -0800
committerJeff McCune <jeff@puppetlabs.com>2012-11-27 16:22:11 -0800
commitaa1e743e385d7f7b1a4e948564e03231ab535e97 (patch)
tree07f35bdc5f79201f3387424e940e95b5629580e9 /spec
parent276abac257e750debe8502e67070f57bc8c79c3a (diff)
parent965245eb9755374a3f7d94f2f2b2172e024234c0 (diff)
downloadpuppet-stdlib-aa1e743e385d7f7b1a4e948564e03231ab535e97.tar.gz
puppet-stdlib-aa1e743e385d7f7b1a4e948564e03231ab535e97.tar.bz2
Merge branch '2.x' into 3.x
* 2.x: (Maint) Add spec/functions to rake test task Add example behaviors for ensure_packages() function Add an ensure_packages function. Conflicts: Rakefile
Diffstat (limited to 'spec')
-rw-r--r--spec/functions/ensure_packages_spec.rb42
1 files changed, 42 insertions, 0 deletions
diff --git a/spec/functions/ensure_packages_spec.rb b/spec/functions/ensure_packages_spec.rb
new file mode 100644
index 0000000..1c2a328
--- /dev/null
+++ b/spec/functions/ensure_packages_spec.rb
@@ -0,0 +1,42 @@
+#! /usr/bin/env ruby
+
+require 'spec_helper'
+require 'rspec-puppet'
+
+describe 'ensure_packages' do
+ let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
+
+ describe 'argument handling' do
+ it 'fails with no arguments' do
+ should run.with_params().and_raise_error(Puppet::ParseError)
+ end
+ it 'requires an array' do
+ lambda { scope.function_ensure_packages([['foo']]) }.should_not raise_error
+ end
+ it 'fails when given a string' do
+ should run.with_params('foo').and_raise_error(Puppet::ParseError)
+ end
+ end
+
+ context 'given a catalog containing Package[puppet]{ensure => absent}' do
+ let :pre_condition do
+ 'package { puppet: ensure => absent }'
+ end
+
+ # NOTE: should run.with_params has the side effect of making the compiler
+ # available to the test harness.
+ it 'has no effect on Package[puppet]' do
+ should run.with_params(['puppet'])
+ rsrc = compiler.catalog.resource('Package[puppet]')
+ rsrc.to_hash.should == {:ensure => "absent"}
+ end
+ end
+
+ context 'given a clean catalog' do
+ it 'declares package resources with ensure => present' do
+ should run.with_params(['facter'])
+ rsrc = compiler.catalog.resource('Package[facter]')
+ rsrc.to_hash.should == {:name => "facter", :ensure => "present"}
+ end
+ end
+end