X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Facceptance%2Fapt_spec.rb;h=60def0e1544cd6ff86bc982bd36f6e25dc8d5b3d;hb=71ebb94283618ca99faf9c3fd9d65557f2d774d6;hp=5b7379fb12d8a12f34634cc86dcd7f8d16521219;hpb=ec3ddbe3727b3b3babdd8e1c6d7d32f3eeb21e08;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/acceptance/apt_spec.rb b/spec/acceptance/apt_spec.rb index 5b7379f..60def0e 100644 --- a/spec/acceptance/apt_spec.rb +++ b/spec/acceptance/apt_spec.rb @@ -1,6 +1,6 @@ require 'spec_helper_acceptance' -describe 'apt class' do +describe 'apt class', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do context 'reset' do it 'fixes the sources.list' do @@ -68,16 +68,19 @@ describe 'apt class' do pp = <<-EOS class { 'apt': proxy_host => 'localhost', - proxy_port => '8080', + proxy_port => '7042', } EOS apply_manifest(pp, :catch_failures => true) end - describe file('/etc/apt/apt.conf.d/proxy') do + describe file('/etc/apt/apt.conf.d/01proxy') do it { should be_file } - it { should contain 'Acquire::http::Proxy "http://localhost:8080\";' } + it { should contain 'Acquire::http::Proxy "http://localhost:7042\";' } + end + describe file('/etc/apt/apt.conf.d/proxy') do + it { should_not be_file } end end @@ -110,16 +113,19 @@ describe 'apt class' do pp = <<-EOS class { 'apt': proxy_host => 'localhost', - proxy_port => '8080', + proxy_port => '7042', } EOS apply_manifest(pp, :catch_failures => true) end - describe file('/etc/apt/apt.conf.d/proxy') do + describe file('/etc/apt/apt.conf.d/01proxy') do it { should be_file } - it { should contain 'Acquire::http::Proxy "http://localhost:8080\";' } + it { should contain 'Acquire::http::Proxy "http://localhost:7042\";' } + end + describe file('/etc/apt/apt.conf.d/proxy') do + it { should_not be_file } end end @@ -175,6 +181,47 @@ describe 'apt class' do end end + context 'purge_preferences' do + context 'false' do + it 'creates a preferences file' do + shell("echo 'original' > /etc/apt/preferences") + end + + it 'should work with no errors' do + pp = <<-EOS + class { 'apt': purge_preferences => false } + EOS + + apply_manifest(pp, :catch_failures => true) + end + + describe file('/etc/apt/preferences') do + it { should be_file } + it 'is not managed by Puppet' do + shell("grep 'original' /etc/apt/preferences", {:acceptable_exit_codes => 0}) + end + end + end + + context 'true' do + it 'creates a preferences file' do + shell('touch /etc/apt/preferences') + end + + it 'should work with no errors' do + pp = <<-EOS + class { 'apt': purge_preferences => true } + EOS + + apply_manifest(pp, :catch_failures => true) + end + + describe file('/etc/apt/preferences') do + it { should_not be_file } + end + end + end + context 'purge_preferences_d' do context 'false' do it 'creates a preferences file' do @@ -224,6 +271,34 @@ describe 'apt class' do end end + context 'fancy_progress => true' do + it 'should work with no errors' do + pp = <<-EOS + class { 'apt': fancy_progress => true } + EOS + + apply_manifest(pp, :catch_failures => true) + end + + describe file('/etc/apt/apt.conf.d/99progressbar') do + it { should be_file } + it { should contain 'Dpkg::Progress-Fancy "1";' } + end + end + context 'fancy_progress => false' do + it 'should work with no errors' do + pp = <<-EOS + class { 'apt': fancy_progress => false } + EOS + + apply_manifest(pp, :catch_failures => true) + end + + describe file('/etc/apt/apt.conf.d/99progressbar') do + it { should_not be_file } + end + end + context 'reset' do it 'fixes the sources.list' do shell('cp /tmp/sources.list /etc/apt')