67 lines
1.5 KiB
Ruby
67 lines
1.5 KiB
Ruby
require 'serverspec'
|
|
|
|
set :backend, :exec
|
|
|
|
puts
|
|
puts '================================'
|
|
puts %x(ansible --version)
|
|
puts '================================'
|
|
|
|
%w[
|
|
php7.0-fpm
|
|
php7.0-readline
|
|
php7.0-curl
|
|
php7.0-mcrypt
|
|
php7.0-gd
|
|
].each do |package|
|
|
describe package(package) do
|
|
it { should be_installed }
|
|
end
|
|
end
|
|
|
|
describe file('/etc/logrotate.d/php7.0-fpm') do
|
|
it { should be_file }
|
|
it { should be_mode 644 }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'root' }
|
|
it { should contain 'rotate 14' }
|
|
end
|
|
|
|
describe file('/etc/php/7.0/fpm/php-fpm.conf') do
|
|
it { should be_file }
|
|
it { should be_mode 644 }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'root' }
|
|
end
|
|
|
|
describe file('/etc/php/7.0/fpm/pools.conf') do
|
|
it { should be_file }
|
|
it { should be_mode 644 }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'root' }
|
|
its(:content) { should match(/pm\s+= ondemand/) }
|
|
its(:content) { should match(/pm\s+= static/) }
|
|
end
|
|
|
|
%w[slow.log access.log log].each do |ext|
|
|
describe file("/var/log/phpfpm/website1.#{ext}") do
|
|
it { should be_file }
|
|
it { should be_mode 640 }
|
|
it { should be_owned_by 'root' }
|
|
it { should be_grouped_into 'www-data' }
|
|
end
|
|
end
|
|
|
|
describe service('php7.0-fpm') do
|
|
it { should be_enabled }
|
|
it { should be_running.under('systemd') }
|
|
end
|
|
|
|
|
|
describe process('php-fpm: pool website1') do
|
|
its(:count) { should eq 0 }
|
|
end
|
|
|
|
describe process('php-fpm: pool website2') do
|
|
its(:count) { should eq 4 }
|
|
end
|