Files
puppet-octavia/spec/acceptance/99_octavia_config_spec.rb
Takashi Kajinami 12a0964856 Add acceptance tests for config management resources
Change-Id: Ib4e672fa97fb39ef39cf0e2612c5f031607ecb43
2022-07-10 12:37:50 +09:00

63 lines
1.6 KiB
Ruby

require 'spec_helper_acceptance'
describe 'basic octavia_config resource' do
context 'default parameters' do
it 'should work with no errors' do
pp= <<-EOS
Exec { logoutput => 'on_failure' }
File <||> -> Octavia_config <||>
file { '/etc/octavia' :
ensure => directory,
}
file { '/etc/octavia/octavia.conf' :
ensure => file,
}
octavia_config { 'DEFAULT/thisshouldexist' :
value => 'foo',
}
octavia_config { 'DEFAULT/thisshouldnotexist' :
value => '<SERVICE DEFAULT>',
}
octavia_config { 'DEFAULT/thisshouldexist2' :
value => '<SERVICE DEFAULT>',
ensure_absent_val => 'toto',
}
octavia_config { 'DEFAULT/thisshouldnotexist2' :
value => 'toto',
ensure_absent_val => 'toto',
}
octavia_config { 'DEFAULT/thisshouldexist3' :
value => ['foo', 'bar'],
}
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
describe file('/etc/octavia/octavia.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
end
end