X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Fclasses%2Fapt_spec.rb;h=b8ff37ea312caee1153a9c574c73b2520c9b4723;hb=b6c70b70e72df46a5884926c0a2c42b8503bb149;hp=a858180455b74c0848fa59118b70cd0b63c0fe17;hpb=2d688f4cdc121da434db873f818dd95977385a46;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/classes/apt_spec.rb b/spec/classes/apt_spec.rb index a858180..b8ff37e 100644 --- a/spec/classes/apt_spec.rb +++ b/spec/classes/apt_spec.rb @@ -1,74 +1,195 @@ require 'spec_helper' describe 'apt', :type => :class do - let :default_params do - { - :disable_keys => false, - :always_apt_update => false - } + let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian' } } + + context 'defaults' do + it { is_expected.to contain_file('sources.list').that_notifies('Exec[apt_update]').only_with({ + 'ensure' => 'present', + 'path' => '/etc/apt/sources.list', + 'owner' => 'root', + 'group' => 'root', + 'mode' => '0644', + 'notify' => 'Exec[apt_update]', + })} + + it { is_expected.to contain_file('sources.list.d').that_notifies('Exec[apt_update]').only_with({ + 'ensure' => 'directory', + 'path' => '/etc/apt/sources.list.d', + 'owner' => 'root', + 'group' => 'root', + 'purge' => false, + 'recurse' => false, + 'notify' => 'Exec[apt_update]', + })} + + it { is_expected.to contain_file('preferences.d').only_with({ + 'ensure' => 'directory', + 'path' => '/etc/apt/preferences.d', + 'owner' => 'root', + 'group' => 'root', + 'purge' => false, + 'recurse' => false, + })} + + it 'should lay down /etc/apt/apt.conf.d/15update-stamp' do + is_expected.to contain_file('/etc/apt/apt.conf.d/15update-stamp').with({ + 'group' => 'root', + 'mode' => '0644', + 'owner' => 'root', + }).with_content(/APT::Update::Post-Invoke-Success \{"touch \/var\/lib\/apt\/periodic\/update-success-stamp 2>\/dev\/null \|\| true";\};/) + end + + it { is_expected.to contain_exec('apt_update').with({ + 'refreshonly' => 'true', + })} + end + + context 'lots of non-defaults' do + let :params do + { + :always_apt_update => true, + :purge_sources_list => true, + :purge_sources_list_d => true, + :purge_preferences => true, + :purge_preferences_d => true, + :update_timeout => '1', + :update_tries => '3', + } + end + + it { is_expected.to contain_file('sources.list').with({ + 'content' => "# Repos managed by puppet.\n" + })} + + it { is_expected.to contain_file('sources.list.d').with({ + 'purge' => 'true', + 'recurse' => 'true', + })} + + it { is_expected.to contain_file('apt-preferences').only_with({ + 'ensure' => 'absent', + 'path' => '/etc/apt/preferences', + })} + + it { is_expected.to contain_file('preferences.d').with({ + 'purge' => 'true', + 'recurse' => 'true', + })} + + it { is_expected.to contain_exec('apt_update').with({ + 'refreshonly' => 'false', + 'timeout' => '1', + 'tries' => '3', + })} + end - [{}, - { - :disable_keys => true, - :always_apt_update => true + context 'with sources defined on valid osfamily' do + let :facts do + { :osfamily => 'Debian', + :lsbdistcodename => 'precise', + :lsbdistid => 'Debian', + } + end + let(:params) { { :sources => { + 'debian_unstable' => { + 'location' => 'http://debian.mirror.iweb.ca/debian/', + 'release' => 'unstable', + 'repos' => 'main contrib non-free', + 'key' => '55BE302B', + 'key_server' => 'subkeys.pgp.net', + 'pin' => '-10', + 'include_src' => true + }, + 'puppetlabs' => { + 'location' => 'http://apt.puppetlabs.com', + 'repos' => 'main', + 'key' => '4BD6EC30', + 'key_server' => 'pgp.mit.edu', + } + } } } + + it { + is_expected.to contain_apt__setting('list-debian_unstable').with({ + 'ensure' => 'present', + }) } - ].each do |param_set| - describe "when #{param_set == {} ? "using default" : "specifying"} class parameters" do - let :param_hash do - param_set == {} ? default_params : params - end + it { is_expected.to contain_file('/etc/apt/sources.list.d/debian_unstable.list').with_content(/^deb http:\/\/debian.mirror.iweb.ca\/debian\/ unstable main contrib non-free$/) } + it { is_expected.to contain_file('/etc/apt/sources.list.d/debian_unstable.list').with_content(/^deb-src http:\/\/debian.mirror.iweb.ca\/debian\/ unstable main contrib non-free$/) } + + it { + is_expected.to contain_apt__setting('list-puppetlabs').with({ + 'ensure' => 'present', + }) + } + + it { is_expected.to contain_file('/etc/apt/sources.list.d/puppetlabs.list').with_content(/^deb http:\/\/apt.puppetlabs.com precise main$/) } + end + + describe 'failing tests' do + context 'bad purge_sources_list' do let :params do - param_set + { + 'purge_sources_list' => 'foo' + } end - - let :refresh_only_apt_update do - if param_hash[:always_apt_update] - false - else - true - end + it do + expect { + is_expected.to compile + }.to raise_error(Puppet::Error) end + end - it { should include_class("apt::params") } - - it { should contain_package("python-software-properties") } + context 'bad purge_sources_list_d' do + let :params do + { + 'purge_sources_list_d' => 'foo' + } + end + it do + expect { + is_expected.to compile + }.to raise_error(Puppet::Error) + end + end - it { - should create_file("sources.list")\ - .with_path("/etc/apt/sources.list")\ - .with_ensure("present")\ - .with_owner("root")\ - .with_group("root")\ - .with_mode(644) - } + context 'bad purge_preferences' do + let :params do + { + 'purge_preferences' => 'foo' + } + end + it do + expect { + is_expected.to compile + }.to raise_error(Puppet::Error) + end + end - it { - should create_file("sources.list.d")\ - .with_path("/etc/apt/sources.list.d")\ - .with_ensure("directory")\ - .with_owner("root")\ - .with_group("root") - } + context 'bad purge_preferences_d' do + let :params do + { + 'purge_preferences_d' => 'foo' + } + end + it do + expect { + is_expected.to compile + }.to raise_error(Puppet::Error) + end + end - it { - should create_exec("apt_update")\ - .with_command("/usr/bin/apt-get update")\ - .with_subscribe(["File[sources.list]", "File[sources.list.d]"])\ - .with_refreshonly(refresh_only_apt_update) - } + context 'with unsupported osfamily' do + let :facts do + { :osfamily => 'Darwin', } + end - it { - if param_hash[:disable_keys] - should create_exec("make-apt-insecure")\ - .with_command('/bin/echo "APT::Get::AllowUnauthenticated 1;" >> /etc/apt/apt.conf.d/99unauth')\ - .with_creates('/etc/apt/apt.conf.d/99unauth') - else - should_not create_exec("make-apt-insecure")\ - .with_command('/bin/echo "APT::Get::AllowUnauthenticated 1;" >> /etc/apt/apt.conf.d/99unauth')\ - .with_creates('/etc/apt/apt.conf.d/99unauth') - end - } + it do + expect { + is_expected.to compile + }.to raise_error(Puppet::Error, /This module only works on Debian or derivatives like Ubuntu/) + end end end end