phpservermon/puphpet/puppet/modules/apache/spec/acceptance/mod_mime_spec.rb

35 lines
922 B
Ruby

require 'spec_helper_acceptance'
describe 'apache::mod::mime class', :unless => UNSUPPORTED_PLATFORMS.include?(fact('osfamily')) do
case fact('osfamily')
when 'Debian'
mod_dir = '/etc/apache2/mods-available'
service_name = 'apache2'
when 'RedHat'
mod_dir = '/etc/httpd/conf.d'
service_name = 'httpd'
when 'FreeBSD'
mod_dir = '/usr/local/etc/apache22/Modules'
service_name = 'apache22'
end
context "default mime config" do
it 'succeeds in puppeting mime' do
pp= <<-EOS
class { 'apache': }
include apache::mod::mime
EOS
apply_manifest(pp, :catch_failures => true)
end
describe service(service_name) do
it { is_expected.to be_enabled }
it { is_expected.to be_running }
end
describe file("#{mod_dir}/mime.conf") do
it { is_expected.to contain "AddType application/x-compress .Z" }
end
end
end