From 070087855a1a78718c8ab2fbeec1819eacd265dc Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sat, 9 Jul 2022 12:29:42 +0900 Subject: [PATCH] Add acceptance tests for config management resources Change-Id: I1569d32596571b4276c620d062042a864adba704 --- ...che_spec.rb => 10_basic_placement_spec.rb} | 0 spec/acceptance/99_placement_config_spec.rb | 62 +++++++++++++++++++ 2 files changed, 62 insertions(+) rename spec/acceptance/{placement_wsgi_apache_spec.rb => 10_basic_placement_spec.rb} (100%) create mode 100644 spec/acceptance/99_placement_config_spec.rb diff --git a/spec/acceptance/placement_wsgi_apache_spec.rb b/spec/acceptance/10_basic_placement_spec.rb similarity index 100% rename from spec/acceptance/placement_wsgi_apache_spec.rb rename to spec/acceptance/10_basic_placement_spec.rb diff --git a/spec/acceptance/99_placement_config_spec.rb b/spec/acceptance/99_placement_config_spec.rb new file mode 100644 index 0000000..cb8551d --- /dev/null +++ b/spec/acceptance/99_placement_config_spec.rb @@ -0,0 +1,62 @@ +require 'spec_helper_acceptance' + +describe 'basic placement_config resource' do + + context 'default parameters' do + + it 'should work with no errors' do + pp= <<-EOS + Exec { logoutput => 'on_failure' } + + File <||> -> Placement_config <||> + + file { '/etc/placement' : + ensure => directory, + } + file { '/etc/placement/placement.conf' : + ensure => file, + } + + placement_config { 'DEFAULT/thisshouldexist' : + value => 'foo', + } + + placement_config { 'DEFAULT/thisshouldnotexist' : + value => '', + } + + placement_config { 'DEFAULT/thisshouldexist2' : + value => '', + ensure_absent_val => 'toto', + } + + placement_config { 'DEFAULT/thisshouldnotexist2' : + value => 'toto', + ensure_absent_val => 'toto', + } + + placement_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/placement/placement.conf') do + it { is_expected.to exist } + it { is_expected.to contain('thisshouldexist=foo') } + it { is_expected.to contain('thisshouldexist2=') } + 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