summaryrefslogtreecommitdiff
path: root/spec/classes
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2014-10-12 12:18:05 +0200
committermh <mh@immerda.ch>2014-10-12 12:18:05 +0200
commit9a5b4d4b56ce78d918ef6a978047bdc4d9bfb72a (patch)
tree01f57acdcfe233872eb496b2bafa1f7c3979f890 /spec/classes
parent5b8288629495c1b84a61880c9bcfef21e84b4b12 (diff)
a first shot of tests
Diffstat (limited to 'spec/classes')
-rw-r--r--spec/classes/init_spec.rb43
1 files changed, 43 insertions, 0 deletions
diff --git a/spec/classes/init_spec.rb b/spec/classes/init_spec.rb
new file mode 100644
index 0000000..baf2647
--- /dev/null
+++ b/spec/classes/init_spec.rb
@@ -0,0 +1,43 @@
+require File.expand_path(File.join(File.dirname(__FILE__),'../spec_helper'))
+
+describe 'apache', :type => 'class' do
+ describe 'with standard' do
+ #puppet-rspec bug
+ #it { should compile.with_all_deps }
+
+ it { should contain_class('apache::base') }
+ it { should_not contain_class('apache::status') }
+ it { should_not contain_class('shorewall::rules::http') }
+ it { should_not contain_class('apache::ssl') }
+ context 'on centos' do
+ let(:facts) {
+ {
+ :operatingsystem => 'CentOS',
+ }
+ }
+ it { should contain_class('apache::centos') }
+ end
+ end
+ describe 'with params' do
+ let(:facts) {
+ {
+ :concat_basedir => '/var/lib/puppet/concat'
+ }
+ }
+ let(:params){
+ {
+ :manage_shorewall => true,
+ # there is puppet-librarian bug in using that module
+ #:manage_munin => true,
+ :ssl => true,
+ }
+ }
+ #puppet-rspec bug
+ #it { should compile.with_all_deps }
+
+ it { should contain_class('apache::base') }
+ it { should_not contain_class('apache::status') }
+ it { should contain_class('shorewall::rules::http') }
+ it { should contain_class('apache::ssl') }
+ end
+end