ed52e513db
The module used to always pin backports to a priority of 200. This default is still retained but is now configurable. Additionally the default is now an Integer, not a 'quoted Integer' and the tests have been updated to reflect this. This matters for future parser as it will now kick people if they pass in a stringified integer as priority.
101 lines
2.6 KiB
Ruby
101 lines
2.6 KiB
Ruby
require 'spec_helper'
|
|
describe 'apt::backports', :type => :class do
|
|
|
|
describe 'when asigning a custom priority to backports' do
|
|
let :facts do
|
|
{
|
|
'lsbdistcodename' => 'Karmic',
|
|
'lsbdistid' => 'Ubuntu'
|
|
}
|
|
end
|
|
|
|
context 'integer priority' do
|
|
let :params do { :pin_priority => 500 } end
|
|
|
|
it { should contain_apt__source('backports').with({
|
|
'location' => 'http://old-releases.ubuntu.com/ubuntu',
|
|
'release' => 'karmic-backports',
|
|
'repos' => 'main universe multiverse restricted',
|
|
'key' => '437D05B5',
|
|
'key_server' => 'pgp.mit.edu',
|
|
'pin' => 500,
|
|
})
|
|
}
|
|
end
|
|
|
|
context 'invalid priority' do
|
|
let :params do { :pin_priority => 'banana' } end
|
|
it 'should fail' do
|
|
expect { subject }.to raise_error(/must be an integer/)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'when turning on backports for ubuntu karmic' do
|
|
|
|
let :facts do
|
|
{
|
|
'lsbdistcodename' => 'Karmic',
|
|
'lsbdistid' => 'Ubuntu'
|
|
}
|
|
end
|
|
|
|
it { should contain_apt__source('backports').with({
|
|
'location' => 'http://old-releases.ubuntu.com/ubuntu',
|
|
'release' => 'karmic-backports',
|
|
'repos' => 'main universe multiverse restricted',
|
|
'key' => '437D05B5',
|
|
'key_server' => 'pgp.mit.edu',
|
|
'pin' => 200,
|
|
})
|
|
}
|
|
end
|
|
|
|
describe "when turning on backports for debian squeeze" do
|
|
|
|
let :facts do
|
|
{
|
|
'lsbdistcodename' => 'Squeeze',
|
|
'lsbdistid' => 'Debian',
|
|
}
|
|
end
|
|
|
|
it { should contain_apt__source('backports').with({
|
|
'location' => 'http://backports.debian.org/debian-backports',
|
|
'release' => 'squeeze-backports',
|
|
'repos' => 'main contrib non-free',
|
|
'key' => '46925553',
|
|
'key_server' => 'pgp.mit.edu',
|
|
'pin' => 200,
|
|
})
|
|
}
|
|
end
|
|
|
|
describe "when turning on backports for debian squeeze but using your own mirror" do
|
|
|
|
let :facts do
|
|
{
|
|
'lsbdistcodename' => 'Squeeze',
|
|
'lsbdistid' => 'Debian'
|
|
}
|
|
end
|
|
|
|
let :location do
|
|
'http://mirrors.example.com/debian-backports'
|
|
end
|
|
|
|
let :params do
|
|
{ 'location' => location }
|
|
end
|
|
|
|
it { should contain_apt__source('backports').with({
|
|
'location' => location,
|
|
'release' => 'squeeze-backports',
|
|
'repos' => 'main contrib non-free',
|
|
'key' => '46925553',
|
|
'key_server' => 'pgp.mit.edu',
|
|
'pin' => 200,
|
|
})
|
|
}
|
|
end
|
|
end
|