Add acceptance tests for config management resources

Change-Id: I1907685d061b3cb603c26047c708cecba98f6ca2
This commit is contained in:
Takashi Kajinami 2022-07-09 23:42:45 +09:00
parent b2ec61bbc5
commit 904bb359a6
2 changed files with 101 additions and 0 deletions

View File

@ -0,0 +1,101 @@
require 'spec_helper_acceptance'
describe 'basic tacker_config resource' do
context 'default parameters' do
it 'should work with no errors' do
pp= <<-EOS
Exec { logoutput => 'on_failure' }
File <||> -> Tacker_config <||>
File <||> -> Tacker_api_paste_ini <||>
file { '/etc/tacker' :
ensure => directory,
}
file { '/etc/tacker/tacker.conf' :
ensure => file,
}
file { '/etc/tacker/api-paste.ini' :
ensure => file,
}
tacker_config { 'DEFAULT/thisshouldexist' :
value => 'foo',
}
tacker_config { 'DEFAULT/thisshouldnotexist' :
value => '<SERVICE DEFAULT>',
}
tacker_config { 'DEFAULT/thisshouldexist2' :
value => '<SERVICE DEFAULT>',
ensure_absent_val => 'toto',
}
tacker_config { 'DEFAULT/thisshouldnotexist2' :
value => 'toto',
ensure_absent_val => 'toto',
}
tacker_config { 'DEFAULT/thisshouldexist3' :
value => ['foo', 'bar'],
}
tacker_api_paste_ini { 'DEFAULT/thisshouldexist' :
value => 'foo',
}
tacker_api_paste_ini { 'DEFAULT/thisshouldnotexist' :
value => '<SERVICE DEFAULT>',
}
tacker_api_paste_ini { 'DEFAULT/thisshouldexist2' :
value => '<SERVICE DEFAULT>',
ensure_absent_val => 'toto',
}
tacker_api_paste_ini { 'DEFAULT/thisshouldnotexist2' :
value => 'toto',
ensure_absent_val => 'toto',
}
tacker_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/tacker/tacker.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/tacker/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