module-puppetlabs-apt/spec/defines/ppa_spec.rb
Matthaus Litteken 2d688f4cdc (#12094) Add rspec-puppet tests for apt
This commit adds full coverage for the apt module as it currently exists. It
adds rspec-puppet tests for the defines (apt::builddep, apt::force, apt::pin,
apt::ppa, apt::source) and classes (apt, debian::testing, debian::unstable,
apt::params, apt::release).
2012-01-23 13:37:42 -08:00

37 lines
1.1 KiB
Ruby

require 'spec_helper'
describe 'apt::ppa', :type => :define do
['ppa:dans_ppa', 'dans_ppa'].each do |t|
describe "with title #{t}" do
let :pre_condition do
'class { "apt": }'
end
let :title do
t
end
let :unless_statement do
if t =~ /ppa:(.*)/
/^[^#].*ppa.*#{$1}.*$/
else
/^[^#].*#{t}.*$/
end
end
it { should contain_exec("add-apt-repository-#{t}").with(
'command' => "/usr/bin/add-apt-repository #{t}",
'notify' => "Exec[apt-update-#{t}]"
)
}
it { should contain_exec("add-apt-repository-#{t}").with_unless(unless_statement) }
it { should contain_exec("apt-update-#{t}").with(
'command' => '/usr/bin/aptitude update',
'refreshonly' => true
)
}
it { should contain_exec("apt-update-#{t}").without_unless }
end
end
describe "without Class[apt] should raise a Puppet::Error" do
let(:title) { "ppa" }
it { expect { should create_resource("apt::ppa", title) }.to raise_error(Puppet::Error) }
end
end