2a618ff54f
- Convert 'should' keyword to 'is_expected.to', - The old ':should' syntax in rspec 3.x is deprecated in favor of ':expect' syntax, - Expectations on attribute of subject with 'its'. Change-Id: I99d7819595a51c16b0b82122d75c0a6ebfad7907 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
59 lines
1.4 KiB
Ruby
59 lines
1.4 KiB
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic designate_config resource' do
|
|
|
|
context 'default parameters' do
|
|
|
|
it 'should work with no errors' do
|
|
pp= <<-EOS
|
|
Exec { logoutput => 'on_failure' }
|
|
|
|
File <||> -> Designate_config <||>
|
|
|
|
file { '/etc/designate' :
|
|
ensure => directory,
|
|
}
|
|
file { '/etc/designate/designate.conf' :
|
|
ensure => file,
|
|
}
|
|
|
|
designate_config { 'DEFAULT/thisshouldexist' :
|
|
value => 'foo',
|
|
}
|
|
|
|
designate_config { 'DEFAULT/thisshouldnotexist' :
|
|
value => '<SERVICE DEFAULT>',
|
|
}
|
|
|
|
designate_config { 'DEFAULT/thisshouldexist2' :
|
|
value => '<SERVICE DEFAULT>',
|
|
ensure_absent_val => 'toto',
|
|
}
|
|
|
|
designate_config { 'DEFAULT/thisshouldnotexist2' :
|
|
value => 'toto',
|
|
ensure_absent_val => 'toto',
|
|
}
|
|
EOS
|
|
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
describe file('/etc/designate/designate.conf') do
|
|
it { is_expected.to exist }
|
|
it { is_expected.to contain('thisshouldexist=foo') }
|
|
it { is_expected.to contain('thisshouldexist2=<SERVICE DEFAULT>') }
|
|
|
|
describe '#content' do
|
|
subject { super().content }
|
|
it { is_expected.to_not match /thisshouldnotexist/ }
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
end
|