X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fdefines%2Fppa_spec.rb;h=9d4750b737a2fdca34714a1334cb1e680c763039;hb=644ed232a0c402b1020b697a10c612db68a9ffa4;hp=653265455976037b4733aef5dd5400abd69b7afc;hpb=cf6caa1f15f279f306950ec44456c127649ca179;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/defines/ppa_spec.rb b/spec/defines/ppa_spec.rb index 6532654..9d4750b 100644 --- a/spec/defines/ppa_spec.rb +++ b/spec/defines/ppa_spec.rb @@ -1,32 +1,53 @@ require 'spec_helper' describe 'apt::ppa', :type => :define do - ['ppa:dans_ppa', 'dans_ppa'].each do |t| + ['ppa:dans_ppa', 'dans_ppa','ppa:dans-daily/ubuntu'].each do |t| describe "with title #{t}" do let :pre_condition do 'class { "apt": }' end + let :facts do + {:lsbdistcodename => 'natty'} + end let :title do t end - let :unless_statement do - if t =~ /ppa:(.*)/ - /^[^#].*ppa.*#{$1}.*$/ - else - /^[^#].*#{t}.*$/ - end + let :release do + "natty" + end + let :filename do + t.sub(/^ppa:/,'').gsub('/','-') << "-" << "#{release}.list" end + + it { should contain_exec("apt-update-#{t}").with( + 'command' => '/usr/bin/aptitude update', + 'refreshonly' => true + ) + } + it { should contain_exec("add-apt-repository-#{t}").with( 'command' => "/usr/bin/add-apt-repository #{t}", - 'notify' => "Exec[apt-update-#{t}]" + 'notify' => "Exec[apt-update-#{t}]", + 'creates' => "/etc/apt/sources.list.d/#{filename}" ) } - 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 create_file("/etc/apt/sources.list.d/#{filename}").with( + 'ensure' => 'file', + 'require' => "Exec[add-apt-repository-#{t}]" ) } - it { should contain_exec("apt-update-#{t}").without_unless } end end + + describe "without Class[apt] should raise a Puppet::Error" do + let(:release) { "natty" } + let(:title) { "ppa" } + it { expect { should contain_apt__ppa(title) }.to raise_error(Puppet::Error) } + end + + describe "without release should raise a Puppet::Error" do + let(:title) { "ppa:" } + it { expect { should contain_apt__ppa(:release) }.to raise_error(Puppet::Error) } + end + end