Merge pull request #23 from sathlan/feature/add-basic-tests

Feature/add basic tests
This commit is contained in:
R.I.Pienaar 2012-05-31 16:36:59 -07:00
commit 99f3eb83f7
3 changed files with 42 additions and 0 deletions

13
Rakefile Normal file
View file

@ -0,0 +1,13 @@
require 'rake'
require 'rspec/core/rake_task'
task :default => [:spec]
desc "Run all module spec tests (Requires rspec-puppet gem)"
RSpec::Core::RakeTask.new(:spec)
desc "Build package"
task :build do
system("puppet-module build")
end

20
spec/defines/init_spec.rb Normal file
View file

@ -0,0 +1,20 @@
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 :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 ")
}
end

9
spec/spec_helper.rb Normal file
View file

@ -0,0 +1,9 @@
require 'puppet'
require 'rspec'
require 'rspec-puppet'
RSpec.configure do |c|
c.module_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/modules/'))
# Using an empty site.pp file to avoid: https://github.com/rodjek/rspec-puppet/issues/15
c.manifest_dir = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/manifests'))
end