X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fclasses%2Fapt_spec.rb;h=ee7cd33a24e04610aef6a894d87e2c841dfb4d27;hb=bca85cd945f8511edb0aa2dcf5e549772abea805;hp=9e0598565fe24f0b4998cfc0c5d76906f3c3e91b;hpb=396036892d81a10afb59a0cea287e620a60f7555;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/classes/apt_spec.rb b/spec/classes/apt_spec.rb index 9e05985..ee7cd33 100644 --- a/spec/classes/apt_spec.rb +++ b/spec/classes/apt_spec.rb @@ -1,6 +1,6 @@ require 'spec_helper' describe 'apt' do - let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian' } } + let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian', :lsbdistcodename => 'wheezy'} } context 'defaults' do it { is_expected.to contain_file('sources.list').that_notifies('Exec[apt_update]').only_with({ @@ -9,7 +9,6 @@ describe 'apt' do :owner => 'root', :group => 'root', :mode => '0644', - :content => "# Repos managed by puppet.\n", :notify => 'Exec[apt_update]', })} @@ -19,13 +18,13 @@ describe 'apt' do :owner => 'root', :group => 'root', :mode => '0644', - :purge => true, - :recurse => true, + :purge => false, + :recurse => false, :notify => 'Exec[apt_update]', })} it { is_expected.to contain_file('preferences').that_notifies('Exec[apt_update]').only_with({ - :ensure => 'absent', + :ensure => 'file', :path => '/etc/apt/preferences', :owner => 'root', :group => 'root', @@ -39,8 +38,8 @@ describe 'apt' do :owner => 'root', :group => 'root', :mode => '0644', - :purge => true, - :recurse => true, + :purge => false, + :recurse => false, :notify => 'Exec[apt_update]', })} @@ -96,7 +95,7 @@ describe 'apt' do context 'lots of non-defaults' do let :params do { - :update => { 'always' => true, 'timeout' => 1, 'tries' => 3 }, + :update => { 'frequency' => 'always', 'timeout' => 1, 'tries' => 3 }, :purge => { 'sources.list' => false, 'sources.list.d' => false, 'preferences' => false, 'preferences.d' => false, }, } @@ -140,14 +139,14 @@ describe 'apt' do 'location' => 'http://debian.mirror.iweb.ca/debian/', 'release' => 'unstable', 'repos' => 'main contrib non-free', - 'key' => { 'id' => '55BE302B', 'server' => 'subkeys.pgp.net' }, + 'key' => { 'id' => '150C8614919D8446E01E83AF9AA38DCD55BE302B', 'server' => 'subkeys.pgp.net' }, 'pin' => '-10', - 'include_src' => true, + 'include' => {'src' => true,}, }, 'puppetlabs' => { 'location' => 'http://apt.puppetlabs.com', 'repos' => 'main', - 'key' => { 'id' => '4BD6EC30', 'server' => 'pgp.mit.edu' }, + 'key' => { 'id' => '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30', 'server' => 'pgp.mit.edu' }, } } } }