Merge "Add acceptance tests for config management resources"
This commit is contained in:
commit
8d919fc211
101
spec/acceptance/99_barbican_config_spec.rb
Normal file
101
spec/acceptance/99_barbican_config_spec.rb
Normal file
@ -0,0 +1,101 @@
|
|||||||
|
require 'spec_helper_acceptance'
|
||||||
|
|
||||||
|
describe 'basic barbican_config resource' do
|
||||||
|
|
||||||
|
context 'default parameters' do
|
||||||
|
|
||||||
|
it 'should work with no errors' do
|
||||||
|
pp= <<-EOS
|
||||||
|
Exec { logoutput => 'on_failure' }
|
||||||
|
|
||||||
|
File <||> -> Barbican_config <||>
|
||||||
|
File <||> -> Barbican_api_paste_ini <||>
|
||||||
|
|
||||||
|
file { '/etc/barbican' :
|
||||||
|
ensure => directory,
|
||||||
|
}
|
||||||
|
file { '/etc/barbican/barbican.conf' :
|
||||||
|
ensure => file,
|
||||||
|
}
|
||||||
|
file { '/etc/barbican/barbican-api-paste.ini' :
|
||||||
|
ensure => file,
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_config { 'DEFAULT/thisshouldexist' :
|
||||||
|
value => 'foo',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_config { 'DEFAULT/thisshouldnotexist' :
|
||||||
|
value => '<SERVICE DEFAULT>',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_config { 'DEFAULT/thisshouldexist2' :
|
||||||
|
value => '<SERVICE DEFAULT>',
|
||||||
|
ensure_absent_val => 'toto',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_config { 'DEFAULT/thisshouldnotexist2' :
|
||||||
|
value => 'toto',
|
||||||
|
ensure_absent_val => 'toto',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_config { 'DEFAULT/thisshouldexist3' :
|
||||||
|
value => ['foo', 'bar'],
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_api_paste_ini { 'DEFAULT/thisshouldexist' :
|
||||||
|
value => 'foo',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_api_paste_ini { 'DEFAULT/thisshouldnotexist' :
|
||||||
|
value => '<SERVICE DEFAULT>',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_api_paste_ini { 'DEFAULT/thisshouldexist2' :
|
||||||
|
value => '<SERVICE DEFAULT>',
|
||||||
|
ensure_absent_val => 'toto',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_api_paste_ini { 'DEFAULT/thisshouldnotexist2' :
|
||||||
|
value => 'toto',
|
||||||
|
ensure_absent_val => 'toto',
|
||||||
|
}
|
||||||
|
|
||||||
|
barbican_api_paste_ini { 'DEFAULT/thisshouldexist3' :
|
||||||
|
value => 'foo',
|
||||||
|
key_val_separator => ':'
|
||||||
|
}
|
||||||
|
EOS
|
||||||
|
|
||||||
|
|
||||||
|
# Run it twice and test for idempotency
|
||||||
|
apply_manifest(pp, :catch_failures => true)
|
||||||
|
apply_manifest(pp, :catch_changes => true)
|
||||||
|
end
|
||||||
|
|
||||||
|
describe file('/etc/barbican/barbican.conf') do
|
||||||
|
it { is_expected.to exist }
|
||||||
|
it { is_expected.to contain('thisshouldexist=foo') }
|
||||||
|
it { is_expected.to contain('thisshouldexist2=<SERVICE DEFAULT>') }
|
||||||
|
it { is_expected.to contain('thisshouldexist3=foo') }
|
||||||
|
it { is_expected.to contain('thisshouldexist3=bar') }
|
||||||
|
|
||||||
|
describe '#content' do
|
||||||
|
subject { super().content }
|
||||||
|
it { is_expected.to_not match /thisshouldnotexist/ }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe file('/etc/barbican/barbican-api-paste.ini') do
|
||||||
|
it { is_expected.to exist }
|
||||||
|
it { is_expected.to contain('thisshouldexist=foo') }
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user