52 lines
1.3 KiB
Ruby
52 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
control 'Php configuration' do
|
|
title 'should match desired lines'
|
|
|
|
# rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
|
def test_debian
|
|
describe file('/etc/php/5.6/fpm/pool.d/radius-admin.conf') do
|
|
its('content') { should include '[radius-admin]' }
|
|
its('content') { should include 'php_admin_value[date.timezone] = Europe/Paris' }
|
|
end
|
|
|
|
describe file('/etc/php/7.3/fpm/pool.d/ldap-admin.conf') do
|
|
its('content') { should include '[ldap-admin]' }
|
|
its('content') { should include 'php_admin_value[date.timezone] = Europe/Paris' }
|
|
end
|
|
|
|
describe file('/etc/php/5.6/fpm/php.ini') do
|
|
its('content') { should include 'date.timezone = Europe/Paris' }
|
|
end
|
|
|
|
describe file('/etc/php/7.3/fpm/php.ini') do
|
|
its('content') { should include 'date.timezone = Europe/Paris' }
|
|
end
|
|
end
|
|
# rubocop:enable Metrics/MethodLength, Metrics/AbcSize
|
|
|
|
def test_redhat; end
|
|
|
|
def test_suse; end
|
|
|
|
def test_bsd
|
|
describe file('/usr/local/bin/composer') do
|
|
it { should be_file }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'wheel' }
|
|
its('mode') { should cmp '0755' }
|
|
end
|
|
end
|
|
|
|
case os[:family]
|
|
when 'debian'
|
|
test_debian
|
|
when 'redhat', 'fedora'
|
|
test_redhat
|
|
when 'suse'
|
|
test_suse
|
|
when 'bsd'
|
|
test_bsd
|
|
end
|
|
end
|