Added modules
This commit is contained in:
parent
c53c931217
commit
59ec520742
646 changed files with 35182 additions and 0 deletions
100
modules/apt/spec/defines/hold_spec.rb
Normal file
100
modules/apt/spec/defines/hold_spec.rb
Normal file
|
@ -0,0 +1,100 @@
|
|||
require 'spec_helper'
|
||||
describe 'apt::hold' do
|
||||
let :facts do {
|
||||
:osfamily => 'Debian',
|
||||
:lsbdistid => 'Debian',
|
||||
:lsbrelease => 'wheezy',
|
||||
} end
|
||||
|
||||
let :title do
|
||||
'vim'
|
||||
end
|
||||
|
||||
let :default_params do {
|
||||
:version => '1.1.1',
|
||||
} end
|
||||
|
||||
describe 'default params' do
|
||||
let :params do default_params end
|
||||
|
||||
it 'creates an apt preferences file' do
|
||||
should contain_apt__hold(title).with({
|
||||
:ensure => 'present',
|
||||
:package => title,
|
||||
:version => params[:version],
|
||||
:priority => 1001,
|
||||
})
|
||||
|
||||
should contain_apt__pin("hold #{title} at #{params[:version]}").with({
|
||||
:ensure => 'present',
|
||||
:packages => title,
|
||||
:version => params[:version],
|
||||
:priority => 1001,
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
describe 'ensure => absent' do
|
||||
let :params do default_params.merge({:ensure => 'absent',}) end
|
||||
|
||||
it 'creates an apt preferences file' do
|
||||
should contain_apt__hold(title).with({
|
||||
:ensure => params[:ensure],
|
||||
})
|
||||
|
||||
should contain_apt__pin("hold #{title} at #{params[:version]}").with({
|
||||
:ensure => params[:ensure],
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
describe 'priority => 990' do
|
||||
let :params do default_params.merge({:priority => 990,}) end
|
||||
|
||||
it 'creates an apt preferences file' do
|
||||
should contain_apt__hold(title).with({
|
||||
:ensure => 'present',
|
||||
:package => title,
|
||||
:version => params[:version],
|
||||
:priority => params[:priority],
|
||||
})
|
||||
|
||||
should contain_apt__pin("hold #{title} at #{params[:version]}").with({
|
||||
:ensure => 'present',
|
||||
:packages => title,
|
||||
:version => params[:version],
|
||||
:priority => params[:priority],
|
||||
})
|
||||
end
|
||||
end
|
||||
|
||||
describe 'validation' do
|
||||
context 'version => {}' do
|
||||
let :params do { :version => {}, } end
|
||||
it 'should fail' do
|
||||
expect { subject }.to raise_error(/is not a string/)
|
||||
end
|
||||
end
|
||||
|
||||
context 'ensure => bananana' do
|
||||
let :params do default_params.merge({:ensure => 'bananana',}) end
|
||||
it 'should fail' do
|
||||
expect { subject }.to raise_error(/does not match/)
|
||||
end
|
||||
end
|
||||
|
||||
context 'package => []' do
|
||||
let :params do default_params.merge({:package => [],}) end
|
||||
it 'should fail' do
|
||||
expect { subject }.to raise_error(/is not a string/)
|
||||
end
|
||||
end
|
||||
|
||||
context 'priority => bananana' do
|
||||
let :params do default_params.merge({:priority => 'bananana',}) end
|
||||
it 'should fail' do
|
||||
expect { subject }.to raise_error(/must be an integer/)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue