forked from puppetlabs/puppetlabs-apache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_proxy_html_spec.rb
36 lines (33 loc) · 1.25 KB
/
mod_proxy_html_spec.rb
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
require 'spec_helper_acceptance'
require_relative './version.rb'
# Don't run proxy_html tests on RHEL7 because the yum repos are missing packages required by it.
describe 'apache::mod::proxy_html class', unless: (fact('osfamily') == 'RedHat' && fact('operatingsystemmajrelease') == '7') do
context 'default proxy_html config' do
if fact('osfamily') == 'RedHat' && fact('operatingsystemmajrelease') =~ %r{(5|6)}
it 'adds epel' do
pp = "class { 'epel': }"
apply_manifest(pp, catch_failures: true)
end
end
pp = <<-MANIFEST
class { 'apache': }
class { 'apache::mod::proxy': }
class { 'apache::mod::proxy_http': }
# mod_proxy_html doesn't exist in RHEL5
if $::osfamily == 'RedHat' and $::operatingsystemmajrelease != '5' {
class { 'apache::mod::proxy_html': }
}
MANIFEST
it 'succeeds in puppeting proxy_html' do
apply_manifest(pp, catch_failures: true)
end
describe service($service_name) do
if fact('operatingsystem') == 'Debian' && fact('operatingsystemmajrelease') == '8'
pending 'Should be enabled - Bug 760616 on Debian 8'
else
it { is_expected.to be_enabled }
end
it { is_expected.to be_running }
end
end
end