75341f01d9
The previous behavior of the tests checked the behavior of the underlying functions library when called with no arguments; this commit updates the tests to conform to the functions API and test what happens when a function is called with no args.
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
#! /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
|
|
expect {
|
|
scope.function_ensure_packages([])
|
|
}.to raise_error(Puppet::ParseError, /0 for 1/)
|
|
end
|
|
|
|
it 'accepts an array of values' do
|
|
scope.function_ensure_packages([['foo']])
|
|
end
|
|
|
|
it 'accepts a single package name as a string' do
|
|
scope.function_ensure_packages(['foo'])
|
|
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[:ensure].should eq("present")
|
|
end
|
|
end
|
|
end
|