module-puppetlabs-apt/spec/defines/conf_spec.rb
Morgan Haskel fff702270e Update tests to work with rspec-puppet 2.x
Also enable future parser testing. Need to allow failures with future
parser for now since none of the published gems have the fix for
PUP-4379
2015-04-22 16:40:48 -07:00

65 lines
1.5 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 creating a preference without content" do
let :params do
{
:priority => '00',
}
end
it 'fails' do
expect { subject.call } .to raise_error(/pass in content/)
end
end
describe "when removing an apt preference" do
let :params do
{
:ensure => 'absent',
:priority => '00',
}
end
let :filename do
"/etc/apt/apt.conf.d/00norecommends"
end
it { is_expected.to contain_file(filename).with({
'ensure' => 'absent',
'owner' => 'root',
'group' => 'root',
'mode' => '0644',
})
}
end
end