]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/apache/spec/classes/mod/authnz_ldap_spec.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / apache / spec / classes / mod / authnz_ldap_spec.rb
diff --git a/3rdparty/modules/apache/spec/classes/mod/authnz_ldap_spec.rb b/3rdparty/modules/apache/spec/classes/mod/authnz_ldap_spec.rb
new file mode 100644 (file)
index 0000000..f897833
--- /dev/null
@@ -0,0 +1,78 @@
+require 'spec_helper'
+
+describe 'apache::mod::authnz_ldap', :type => :class do
+  let :pre_condition do
+    'include apache'
+  end
+
+  context "on a Debian OS" do
+    let :facts do
+      {
+        :lsbdistcodename        => 'squeeze',
+        :osfamily               => 'Debian',
+        :operatingsystemrelease => '6',
+        :concat_basedir         => '/dne',
+        :id                     => 'root',
+        :kernel                 => 'Linux',
+        :operatingsystem        => 'Debian',
+        :path                   => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
+        :is_pe                  => false,
+      }
+    end
+    it { is_expected.to contain_class("apache::params") }
+    it { is_expected.to contain_class("apache::mod::ldap") }
+    it { is_expected.to contain_apache__mod('authnz_ldap') }
+
+    context 'default verifyServerCert' do
+      it { is_expected.to contain_file('authnz_ldap.conf').with_content(/^LDAPVerifyServerCert On$/) }
+    end
+
+    context 'verifyServerCert = false' do
+      let(:params) { { :verifyServerCert => false } }
+      it { is_expected.to contain_file('authnz_ldap.conf').with_content(/^LDAPVerifyServerCert Off$/) }
+    end
+
+    context 'verifyServerCert = wrong' do
+      let(:params) { { :verifyServerCert => 'wrong' } }
+      it 'should raise an error' do
+        expect { is_expected.to raise_error Puppet::Error }
+      end
+    end
+  end #Debian
+
+  context "on a RedHat OS" do
+    let :facts do
+      {
+        :osfamily               => 'RedHat',
+        :operatingsystemrelease => '6',
+        :concat_basedir         => '/dne',
+        :id                     => 'root',
+        :kernel                 => 'Linux',
+        :operatingsystem        => 'RedHat',
+        :path                   => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
+        :is_pe                  => false,
+      }
+    end
+    it { is_expected.to contain_class("apache::params") }
+    it { is_expected.to contain_class("apache::mod::ldap") }
+    it { is_expected.to contain_apache__mod('authnz_ldap') }
+
+    context 'default verifyServerCert' do
+      it { is_expected.to contain_file('authnz_ldap.conf').with_content(/^LDAPVerifyServerCert On$/) }
+    end
+
+    context 'verifyServerCert = false' do
+      let(:params) { { :verifyServerCert => false } }
+      it { is_expected.to contain_file('authnz_ldap.conf').with_content(/^LDAPVerifyServerCert Off$/) }
+    end
+
+    context 'verifyServerCert = wrong' do
+      let(:params) { { :verifyServerCert => 'wrong' } }
+      it 'should raise an error' do
+        expect { is_expected.to raise_error Puppet::Error }
+      end
+    end
+  end # Redhat
+
+end
+