summaryrefslogtreecommitdiff
path: root/spec/classes/init_spec.rb
blob: baf264703a4e4505311328d25c22be60985e09c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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