From 31526655733be489083962b9dfb552013807ba99 Mon Sep 17 00:00:00 2001 From: Gordon Bleux <33967640+UiP9AV6Y@users.noreply.github.com> Date: Mon, 14 Oct 2024 10:39:22 +0200 Subject: [PATCH] add support for plugin `ensure` stage *purged* the package resource type supports the following values for the `ensure` parameter: * present * absent * purged * disabled * installed * latest * /./ this change adds support for *purged* as it has the same effect in the context of this module. --- manifests/plugin.pp | 4 +++- manifests/plugin/remote_execution/cockpit.pp | 10 ++++++---- .../plugin/remote_execution_cockpit_spec.rb | 16 ++++++++++++++++ spec/defines/foreman_plugin_spec.rb | 14 ++++++++++++++ 4 files changed, 39 insertions(+), 5 deletions(-) diff --git a/manifests/plugin.pp b/manifests/plugin.pp index 795bca32b..bd1b2501f 100644 --- a/manifests/plugin.pp +++ b/manifests/plugin.pp @@ -43,8 +43,10 @@ } if $config { + $config_file_absent = $version in ['absent', 'purged'] + file { $config_file: - ensure => bool2str($version == 'absent', 'absent', 'file'), + ensure => bool2str($config_file_absent, 'absent', 'file'), owner => $config_file_owner, group => $config_file_group, mode => $config_file_mode, diff --git a/manifests/plugin/remote_execution/cockpit.pp b/manifests/plugin/remote_execution/cockpit.pp index d5ba34e21..6b253172d 100644 --- a/manifests/plugin/remote_execution/cockpit.pp +++ b/manifests/plugin/remote_execution/cockpit.pp @@ -15,7 +15,9 @@ Optional[String[1]] $ensure = undef, Array[Stdlib::HTTPUrl] $origins = [], ) { - if $ensure != 'absent' { + $ensure_absent = $ensure in ['absent', 'purged'] + + unless $ensure_absent { require foreman::plugin::remote_execution } @@ -36,7 +38,7 @@ version => $ensure, } - if $ensure != 'absent' { + unless $ensure_absent { service { 'foreman-cockpit': ensure => running, enable => true, @@ -45,7 +47,7 @@ } } - $file_ensure = bool2str($ensure == 'absent', 'absent', 'file') + $file_ensure = bool2str($ensure_absent, 'absent', 'file') file { "${config_directory}/cockpit.conf": ensure => $file_ensure, @@ -65,7 +67,7 @@ require => Foreman::Plugin['remote_execution-cockpit'], } - if $ensure == 'absent' { + if $ensure_absent { foreman_config_entry { 'remote_execution_cockpit_url': value => '', ignore_missing => true, diff --git a/spec/classes/plugin/remote_execution_cockpit_spec.rb b/spec/classes/plugin/remote_execution_cockpit_spec.rb index b26895eb7..ebb92af89 100644 --- a/spec/classes/plugin/remote_execution_cockpit_spec.rb +++ b/spec/classes/plugin/remote_execution_cockpit_spec.rb @@ -139,6 +139,22 @@ class {'foreman': it { is_expected.to contain_file('/etc/foreman/cockpit/foreman-cockpit-session.yml').with_ensure('absent') } it { is_expected.to contain_foreman_config_entry('remote_execution_cockpit_url').with_value('') } end + + describe 'ensure purged' do + let(:params) do + { + ensure: 'purged', + } + end + + it { is_expected.to compile.with_all_deps } + it { is_expected.not_to contain_class('foreman::plugin::remote_execution') } + it { is_expected.to contain_foreman__plugin('remote_execution-cockpit').with_version('purged') } + it { is_expected.not_to contain_service('foreman-cockpit') } + it { is_expected.to contain_file('/etc/foreman/cockpit/cockpit.conf').with_ensure('absent') } + it { is_expected.to contain_file('/etc/foreman/cockpit/foreman-cockpit-session.yml').with_ensure('absent') } + it { is_expected.to contain_foreman_config_entry('remote_execution_cockpit_url').with_value('') } + end end end end diff --git a/spec/defines/foreman_plugin_spec.rb b/spec/defines/foreman_plugin_spec.rb index 01399c497..07e378ad5 100644 --- a/spec/defines/foreman_plugin_spec.rb +++ b/spec/defines/foreman_plugin_spec.rb @@ -91,6 +91,20 @@ it { is_expected.to contain_package('myplugin').with_ensure('absent') } it { is_expected.to contain_file('/etc/foreman/plugins/foreman_myplugin.yaml').with_ensure('absent') } end + + context 'ensure purged' do + let(:params) do + { + package: 'myplugin', # fixed to make testing easier + version: 'purged', + config: 'the config content', + } + end + + it { is_expected.to compile.with_all_deps } + it { is_expected.to contain_package('myplugin').with_ensure('purged') } + it { is_expected.to contain_file('/etc/foreman/plugins/foreman_myplugin.yaml').with_ensure('absent') } + end end end end