X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Facceptance%2Fapt_spec.rb;h=550574867b5deef5053118d77ed05ed60e5b6f50;hb=508c55427fc37cc0dd8e8d2cecd6ca94aaed1221;hp=e8950d1fbda992144e63ac653eb817148ad649f6;hpb=2b536b6a200e8f4f7f7ae37ec091abd06ca4cb70;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/acceptance/apt_spec.rb b/spec/acceptance/apt_spec.rb index e8950d1..5505748 100644 --- a/spec/acceptance/apt_spec.rb +++ b/spec/acceptance/apt_spec.rb @@ -4,16 +4,7 @@ MAX_TIMEOUT_RETRY = 3 TIMEOUT_RETRY_WAIT = 5 TIMEOUT_ERROR_MATCHER = %r{no valid OpenPGP data found} -describe 'apt class' do - context 'reset' do - it 'fixes the sources.list' do - shell('cp /etc/apt/sources.list /tmp') - end - end - - context 'all the things' do - it 'works with no errors' do - pp = <<-EOS +everything_everything_pp = <<-MANIFEST if $::lsbdistcodename == 'lucid' { $sources = undef } else { @@ -43,14 +34,23 @@ 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(pp, catch_failures: true) + apply_manifest(everything_everything_pp, catch_failures: true) end - apply_manifest(pp, catch_failures: true) + apply_manifest(everything_everything_pp, catch_failures: true) end it 'stills work' do shell('apt-get update') @@ -58,7 +58,7 @@ describe 'apt class' do end end - context 'reset' do + context 'with reset' do it 'fixes the sources.list' do shell('cp /tmp/sources.list /etc/apt') end