c57d2dd5dd
A few of these fixes are absolutely horrendous but we have no choice as we need to stay current- and future-parser compatible for now. Once we can go Puppet 4 only we can use the `$facts` hash lookup instead which will return undef/nil for things that aren't set instead of them not being defined at all.
55 lines
1.4 KiB
Ruby
55 lines
1.4 KiB
Ruby
require 'spec_helper'
|
|
describe 'apt::conf', :type => :define do
|
|
let :pre_condition do
|
|
'class { "apt": }'
|
|
end
|
|
let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian', :lsbdistcodename => 'wheezy' } }
|
|
let :title do
|
|
'norecommends'
|
|
end
|
|
|
|
describe "when creating an apt preference" do
|
|
let :params do
|
|
{
|
|
:priority => '00',
|
|
:content => "Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;\n"
|
|
}
|
|
end
|
|
|
|
let :filename do
|
|
"/etc/apt/apt.conf.d/00norecommends"
|
|
end
|
|
|
|
it { is_expected.to contain_file(filename).with({
|
|
'ensure' => 'present',
|
|
'content' => /Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;/,
|
|
'owner' => 'root',
|
|
'group' => 'root',
|
|
'mode' => '0644',
|
|
})
|
|
}
|
|
end
|
|
|
|
describe "when removing an apt preference" do
|
|
let :params do
|
|
{
|
|
:ensure => 'absent',
|
|
:priority => '00',
|
|
:content => "Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;\n"
|
|
}
|
|
end
|
|
|
|
let :filename do
|
|
"/etc/apt/apt.conf.d/00norecommends"
|
|
end
|
|
|
|
it { is_expected.to contain_file(filename).with({
|
|
'ensure' => 'absent',
|
|
'content' => /Apt::Install-Recommends 0;\nApt::AutoRemove::InstallRecommends 1;/,
|
|
'owner' => 'root',
|
|
'group' => 'root',
|
|
'mode' => '0644',
|
|
})
|
|
}
|
|
end
|
|
end
|