summaryrefslogtreecommitdiff
path: root/spec/defines/init_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/defines/init_spec.rb')
-rw-r--r--spec/defines/init_spec.rb57
1 files changed, 47 insertions, 10 deletions
diff --git a/spec/defines/init_spec.rb b/spec/defines/init_spec.rb
index d968a26..34fb24b 100644
--- a/spec/defines/init_spec.rb
+++ b/spec/defines/init_spec.rb
@@ -3,18 +3,55 @@ require 'spec_helper'
describe 'concat' do
basedir = '/var/lib/puppet/concat'
let(:title) { '/etc/foo.bar' }
- let(:facts) { { :concat_basedir => '/var/lib/puppet/concat' } }
+ let(:facts) { {
+ :concat_basedir => '/var/lib/puppet/concat',
+ :id => 'root',
+ } }
let :pre_condition do
'include concat::setup'
end
- it { should contain_file("#{basedir}/_etc_foo.bar").with('ensure' => 'directory') }
- it { should contain_file("#{basedir}/_etc_foo.bar/fragments").with('ensure' => 'directory') }
- it { should contain_file("#{basedir}/_etc_foo.bar/fragments.concat").with('ensure' => 'present') }
- it { should contain_file("/etc/foo.bar").with('ensure' => 'present') }
- it { should contain_exec("concat_/etc/foo.bar").with_command(
- "#{basedir}/bin/concatfragments.sh "+
- "-o #{basedir}/_etc_foo.bar/fragments.concat.out "+
- "-d #{basedir}/_etc_foo.bar ")
- }
+ directories = [
+ "#{basedir}/_etc_foo.bar",
+ "#{basedir}/_etc_foo.bar/fragments",
+ ]
+
+ directories.each do |dirs|
+ it do
+ should contain_file(dirs).with({
+ 'ensure' => 'directory',
+ 'backup' => 'puppet',
+ 'group' => 0,
+ 'mode' => '0644',
+ 'owner' => 'root',
+ })
+ end
+ end
+
+ files = [
+ "/etc/foo.bar",
+ "#{basedir}/_etc_foo.bar/fragments.concat",
+ ]
+
+ files.each do |file|
+ it do
+ should contain_file(file).with({
+ 'ensure' => 'present',
+ 'backup' => 'puppet',
+ 'group' => 0,
+ 'mode' => '0644',
+ 'owner' => 'root',
+ })
+ end
+ end
+
+ it do
+ should contain_exec("concat_/etc/foo.bar").with_command(
+ "#{basedir}/bin/concatfragments.sh " +
+ "-o #{basedir}/_etc_foo.bar/fragments.concat.out " +
+ "-d #{basedir}/_etc_foo.bar "
+ )
+ end
end
+
+# vim:sw=2:ts=2:expandtab:textwidth=79