X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Facceptance%2Fapt_spec.rb;h=550574867b5deef5053118d77ed05ed60e5b6f50;hb=34452eb00d409290a1c19bd811416c528b6cd187;hp=d3bd76174ce8440e6907aff236983075c98af05e;hpb=74bb26d148120187e483c3b8d723cbb7ec8889d4;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/acceptance/apt_spec.rb b/spec/acceptance/apt_spec.rb index d3bd761..5505748 100644 --- a/spec/acceptance/apt_spec.rb +++ b/spec/acceptance/apt_spec.rb @@ -1,16 +1,10 @@ require 'spec_helper_acceptance' -describe 'apt class' do +MAX_TIMEOUT_RETRY = 3 +TIMEOUT_RETRY_WAIT = 5 +TIMEOUT_ERROR_MATCHER = %r{no valid OpenPGP data found} - context 'reset' do - it 'fixes the sources.list' do - shell('cp /etc/apt/sources.list /tmp') - end - end - - context 'all the things' do - it 'should work with no errors' do - pp = <<-EOS +everything_everything_pp = <<-MANIFEST if $::lsbdistcodename == 'lucid' { $sources = undef } else { @@ -20,8 +14,8 @@ describe 'apt class' do 'location' => 'http://apt.puppetlabs.com', 'repos' => 'main', 'key' => { - 'id' => '47B320EB4C7C375AA9DAE1A01054B7A24BD6EC30', - 'server' => 'pgp.mit.edu', + 'id' => '6F6B15509CF8E59E6E469F327F438280EF8D349F', + 'server' => 'hkps.pool.sks-keyservers.net', }, }, } @@ -29,8 +23,8 @@ describe 'apt class' do class { 'apt': update => { 'frequency' => 'always', - 'timeout' => '400', - 'tries' => '3', + 'timeout' => 400, + 'tries' => 3, }, purge => { 'sources.list' => true, @@ -40,21 +34,33 @@ describe 'apt class' do }, sources => $sources, } - EOS + MANIFEST + +describe 'apt class' do + context 'with reset' do + it 'fixes the sources.list' do + shell('cp /etc/apt/sources.list /tmp') + end + end + + context 'with all the things' do + it 'works with no errors' do + # Apply the manifest (Retry if timeout error is received from key pool) + retry_on_error_matching(MAX_TIMEOUT_RETRY, TIMEOUT_RETRY_WAIT, TIMEOUT_ERROR_MATCHER) do + apply_manifest(everything_everything_pp, catch_failures: true) + end - apply_manifest(pp, :catch_failures => true) - apply_manifest(pp, :catch_failures => true) + apply_manifest(everything_everything_pp, catch_failures: true) end - it 'should still work' do + it 'stills work' do shell('apt-get update') shell('apt-get -y --force-yes upgrade') end end - context 'reset' do + context 'with reset' do it 'fixes the sources.list' do shell('cp /tmp/sources.list /etc/apt') end end - end