1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
require 'spec_helper_acceptance'
describe 'basic libvirtd_config resource' do
context 'default parameters' do
it 'should work with no errors' do
pp= <<-EOS
Exec { logoutput => 'on_failure' }
File <||> -> Libvirtd_config <||>
File <||> -> Virtlogd_config <||>
File <||> -> Virtlockd_config <||>
File <||> -> Virtnodedevd_config <||>
File <||> -> Virtproxyd_config <||>
File <||> -> Virtqemud_config <||>
File <||> -> Virtsecretd_config <||>
File <||> -> Virtstoraged_config <||>
file { '/etc/libvirt' :
ensure => directory,
}
[
'libvirtd', 'virtlogd', 'virtlockd', 'virtnodedevd', 'virtproxyd',
'virtqemud', 'virtsecretd', 'virtstoraged'
].each | String $daemon | {
file { "/etc/libvirt/${daemon}.conf" :
ensure => file,
}
create_resources("${daemon}_config", {
'thisshouldexist' => {
'value' => 1,
},
'thisshouldnotexist' => {
'value' => '<SERVICE DEFAULT>'
},
'thisshouldexist2' => {
'value' => '<SERVICE DEFAULT>',
'ensure_absent_val' => 'toto',
'quote' => true
},
'thisshouldnotexist2' => {
'value' => 'toto',
'ensure_absent_val' => 'toto'
},
'thisshouldexist3' => {
'value' => 'foo',
'quote' => true
},
'thisshouldnotexist3' => {
'value' => '<SERVICE DEFAULT>',
'quote' => true
},
})
}
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
[
'libvirtd', 'virtlogd', 'virtlockd', 'virtnodedevd', 'virtproxyd',
'virtqemud', 'virtsecretd', 'virtstoraged'
].each do | daemon |
describe file("/etc/libvirt/#{daemon}.conf") do
it { is_expected.to exist }
it { is_expected.to contain('thisshouldexist=1') }
it { is_expected.to contain('thisshouldexist2="<SERVICE DEFAULT>"') }
it { is_expected.to contain('thisshouldexist3="foo"') }
describe '#content' do
subject { super().content }
it { is_expected.to_not match /thisshouldnotexist/ }
end
end
end
end
end
|