Project

General

Profile

Download (1.97 KB) Statistics
| Branch: | Tag: | Revision:
require 'spec_helper_acceptance'

case fact('osfamily')
when 'RedHat'
servicename = 'httpd'
when 'Debian'
servicename = 'apache2'
when 'FreeBSD'
servicename = 'apache22'
end

case fact('osfamily')
when 'FreeBSD'
describe 'apache::mod::event class' do
describe 'running puppet code' do
# Using puppet_apply as a helper
it 'should work with no errors' do
pp = <<-EOS
class { 'apache':
mpm_module => 'event',
}
EOS

# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
expect(apply_manifest(pp, :catch_failures => true).exit_code).to be_zero
end
end

describe service(servicename) do
it { should be_running }
it { should be_enabled }
end
end
end

describe 'apache::mod::worker class', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
describe 'running puppet code' do
# Using puppet_apply as a helper
it 'should work with no errors' do
pp = <<-EOS
class { 'apache':
mpm_module => 'worker',
}
EOS

# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
expect(apply_manifest(pp, :catch_failures => true).exit_code).to be_zero
end
end

describe service(servicename) do
it { should be_running }
it { should be_enabled }
end
end

describe 'apache::mod::prefork class', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
describe 'running puppet code' do
# Using puppet_apply as a helper
it 'should work with no errors' do
pp = <<-EOS
class { 'apache':
mpm_module => 'prefork',
}
EOS

# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
expect(apply_manifest(pp, :catch_failures => true).exit_code).to be_zero
end
end

describe service(servicename) do
it { should be_running }
it { should be_enabled }
end
end
(9-9/13)