From c9d42b14eb9a2427ce2571ca9d55d11ceb0e3e38 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sat, 9 Jul 2022 21:18:37 +0900 Subject: [PATCH] Add acceptance tests for config management resources Change-Id: Ia3bc4839fbf39845e46ce2bdf62a365ef4e04146 --- ...apache_spec.rb => 10_basic_ironic_spec.rb} | 0 spec/acceptance/99_ironic_config_spec.rb | 104 ++++++++++++++++++ 2 files changed, 104 insertions(+) rename spec/acceptance/{ironic_wsgi_apache_spec.rb => 10_basic_ironic_spec.rb} (100%) create mode 100644 spec/acceptance/99_ironic_config_spec.rb diff --git a/spec/acceptance/ironic_wsgi_apache_spec.rb b/spec/acceptance/10_basic_ironic_spec.rb similarity index 100% rename from spec/acceptance/ironic_wsgi_apache_spec.rb rename to spec/acceptance/10_basic_ironic_spec.rb diff --git a/spec/acceptance/99_ironic_config_spec.rb b/spec/acceptance/99_ironic_config_spec.rb new file mode 100644 index 00000000..7ab75561 --- /dev/null +++ b/spec/acceptance/99_ironic_config_spec.rb @@ -0,0 +1,104 @@ +require 'spec_helper_acceptance' + +describe 'basic ironic_config resource' do + + context 'default parameters' do + + it 'should work with no errors' do + pp= <<-EOS + Exec { logoutput => 'on_failure' } + + File <||> -> Ironic_config <||> + File <||> -> Ironic_inspector_config <||> + + file { '/etc/ironic' : + ensure => directory, + } + file { '/etc/ironic-inspector' : + ensure => directory, + } + file { '/etc/ironic/ironic.conf' : + ensure => file, + } + file { '/etc/ironic-inspector/inspector.conf' : + ensure => file, + } + + ironic_config { 'DEFAULT/thisshouldexist' : + value => 'foo', + } + + ironic_config { 'DEFAULT/thisshouldnotexist' : + value => '', + } + + ironic_config { 'DEFAULT/thisshouldexist2' : + value => '', + ensure_absent_val => 'toto', + } + + ironic_config { 'DEFAULT/thisshouldnotexist2' : + value => 'toto', + ensure_absent_val => 'toto', + } + + ironic_config { 'DEFAULT/thisshouldexist3' : + value => ['foo', 'bar'], + } + + ironic_inspector_config { 'DEFAULT/thisshouldexist' : + value => 'foo', + } + + ironic_inspector_config { 'DEFAULT/thisshouldnotexist' : + value => '', + } + + ironic_inspector_config { 'DEFAULT/thisshouldexist2' : + value => '', + ensure_absent_val => 'toto', + } + + ironic_inspector_config { 'DEFAULT/thisshouldnotexist2' : + value => 'toto', + ensure_absent_val => 'toto', + } + + ironic_inspector_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/ironic-inspector/inspector.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 + + describe file('/etc/ironic/ironic.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