summaryrefslogtreecommitdiff
path: root/spec/defines/munin_plugin_spec.rb
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2013-11-03 18:21:57 +0100
committermh <mh@immerda.ch>2013-11-03 18:21:57 +0100
commit3064a5d5a6251f84cf4d115be1711266faf7ed13 (patch)
treebb2d0e2bdfb12c4062ccf69077f88a63569bd85e /spec/defines/munin_plugin_spec.rb
parentad37140f6123c0e85cfbeb23dee5b3ea3c324701 (diff)
fix #26 - do not manage files of a plugin if it should be absent
The directories are recursively managed and will purge these files anyway and trigger a proper restart. Like that we can safe a few resources in our catalog.
Diffstat (limited to 'spec/defines/munin_plugin_spec.rb')
-rw-r--r--spec/defines/munin_plugin_spec.rb40
1 files changed, 40 insertions, 0 deletions
diff --git a/spec/defines/munin_plugin_spec.rb b/spec/defines/munin_plugin_spec.rb
new file mode 100644
index 0000000..3d7e9e3
--- /dev/null
+++ b/spec/defines/munin_plugin_spec.rb
@@ -0,0 +1,40 @@
+require 'spec_helper'
+
+describe 'munin::plugin' do
+ let(:title) { 'users' }
+ let(:facts) do
+ { :operatingsystem => 'CentOS' }
+ end
+ context 'present' do
+ it { should contain_file('/etc/munin/plugins/users').with(
+ :ensure => 'link',
+ :target => '/usr/share/munin/plugins/users'
+ ) }
+ it { should_not contain_file('/etc/munin/plugin-conf.d/users.conf') }
+ end
+
+ context 'present and config' do
+ let(:params) do
+ { :config => 'env.user root' }
+ end
+ it { should contain_file('/etc/munin/plugins/users').with(
+ :ensure => 'link',
+ :target => '/usr/share/munin/plugins/users',
+ :notify => 'Service[munin-node]'
+ ) }
+ it { should contain_file('/etc/munin/plugin-conf.d/users.conf').with(
+ :content => "[users]\nenv.user root\n",
+ :owner => 'root',
+ :group => 0,
+ :mode => '0640'
+ ) }
+ end
+
+ context 'absent' do
+ let(:params) do
+ { :ensure => 'absent' }
+ end
+ it { should_not contain_file('/etc/munin/plugins/users') }
+ it { should_not contain_file('/etc/munin/plugin-conf.d/users.conf') }
+ end
+end