2020-12-22 15:42:11 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-04 01:33:06 +02:00
|
|
|
control 'Php configuration' do
|
|
|
|
title 'should match desired lines'
|
|
|
|
|
2020-12-22 15:42:11 +01:00
|
|
|
# rubocop:disable Metrics/MethodLength, Metrics/AbcSize
|
2019-09-04 01:33:06 +02:00
|
|
|
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
|
2020-12-22 15:42:11 +01:00
|
|
|
# rubocop:enable Metrics/MethodLength, Metrics/AbcSize
|
2019-09-04 01:33:06 +02:00
|
|
|
|
2020-12-22 15:42:11 +01:00
|
|
|
def test_redhat; end
|
2019-09-04 01:33:06 +02:00
|
|
|
|
2020-12-22 15:42:11 +01:00
|
|
|
def test_suse; end
|
2019-09-04 01:33:06 +02:00
|
|
|
|
2021-03-31 10:15:11 +02:00
|
|
|
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
|
|
|
|
|
2019-09-04 01:33:06 +02:00
|
|
|
case os[:family]
|
|
|
|
when 'debian'
|
2019-09-04 02:58:06 +02:00
|
|
|
test_debian
|
2019-09-04 01:33:06 +02:00
|
|
|
when 'redhat', 'fedora'
|
|
|
|
test_redhat
|
|
|
|
when 'suse'
|
|
|
|
test_suse
|
2021-03-31 10:15:11 +02:00
|
|
|
when 'bsd'
|
|
|
|
test_bsd
|
2019-09-04 01:33:06 +02:00
|
|
|
end
|
|
|
|
end
|