1fa7a69e9b
It is provided by the Puppet class 'openstacklib::wsgi::apache'. This change exposes it for the Cinder service. Change-Id: If3f3f230aae7e04a774c967e1786561d70e43e50 Signed-off-by: Luke Short <ekultails@gmail.com>
177 lines
6.0 KiB
Ruby
177 lines
6.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::wsgi::apache' do
|
|
shared_examples 'apache serving cinder with mod_wsgi' do
|
|
context 'with default parameters' do
|
|
it { is_expected.to contain_class('cinder::params') }
|
|
it { is_expected.to contain_class('apache') }
|
|
it { is_expected.to contain_class('apache::mod::wsgi') }
|
|
it { is_expected.to contain_class('apache::mod::ssl') }
|
|
it { is_expected.to contain_openstacklib__wsgi__apache('cinder_wsgi').with(
|
|
:bind_port => 8776,
|
|
:group => 'cinder',
|
|
:path => '/',
|
|
:servername => facts[:fqdn],
|
|
:ssl => true,
|
|
:threads => 1,
|
|
:user => 'cinder',
|
|
:workers => facts[:os_workers],
|
|
:wsgi_daemon_process => 'cinder-api',
|
|
:wsgi_process_group => 'cinder-api',
|
|
:wsgi_script_dir => platform_params[:wsgi_script_path],
|
|
:wsgi_script_file => 'cinder-api',
|
|
:wsgi_script_source => platform_params[:wsgi_script_source],
|
|
:custom_wsgi_process_options => {},
|
|
:access_log_file => false,
|
|
:access_log_pipe => false,
|
|
:access_log_syslog => false,
|
|
:access_log_format => false,
|
|
:error_log_file => nil,
|
|
:error_log_pipe => nil,
|
|
:error_log_syslog => nil,
|
|
)}
|
|
end
|
|
|
|
context'when overriding parameters using different ports' do
|
|
let :params do
|
|
{
|
|
:servername => 'dummy.host',
|
|
:bind_host => '10.42.51.1',
|
|
:port => 12345,
|
|
:ssl => false,
|
|
:vhost_custom_fragment => 'Timeout 99',
|
|
:wsgi_process_display_name => 'cinder-api',
|
|
:workers => 37,
|
|
:custom_wsgi_process_options => {
|
|
'python_path' => '/my/python/admin/path',
|
|
},
|
|
}
|
|
end
|
|
it { is_expected.to contain_class('cinder::params') }
|
|
it { is_expected.to contain_class('apache') }
|
|
it { is_expected.to contain_class('apache::mod::wsgi') }
|
|
it { is_expected.to_not contain_class('apache::mod::ssl') }
|
|
it { is_expected.to contain_openstacklib__wsgi__apache('cinder_wsgi').with(
|
|
:bind_host => '10.42.51.1',
|
|
:bind_port => 12345,
|
|
:group => 'cinder',
|
|
:path => '/',
|
|
:servername => 'dummy.host',
|
|
:ssl => false,
|
|
:threads => 1,
|
|
:user => 'cinder',
|
|
:vhost_custom_fragment => 'Timeout 99',
|
|
:workers => 37,
|
|
:wsgi_daemon_process => 'cinder-api',
|
|
:wsgi_process_display_name => 'cinder-api',
|
|
:wsgi_process_group => 'cinder-api',
|
|
:wsgi_script_dir => platform_params[:wsgi_script_path],
|
|
:wsgi_script_file => 'cinder-api',
|
|
:wsgi_script_source => platform_params[:wsgi_script_source],
|
|
:custom_wsgi_process_options => {
|
|
'python_path' => '/my/python/admin/path',
|
|
},
|
|
)}
|
|
end
|
|
|
|
context 'with custom access logging' do
|
|
let :params do
|
|
{
|
|
:access_log_format => 'foo',
|
|
:access_log_syslog => 'syslog:local0',
|
|
:error_log_syslog => 'syslog:local1',
|
|
}
|
|
end
|
|
|
|
it { should contain_openstacklib__wsgi__apache('cinder_wsgi').with(
|
|
:access_log_format => params[:access_log_format],
|
|
:access_log_syslog => params[:access_log_syslog],
|
|
:error_log_syslog => params[:error_log_syslog],
|
|
)}
|
|
end
|
|
|
|
context 'with access_log_file' do
|
|
let :params do
|
|
{
|
|
:access_log_file => '/path/to/file',
|
|
}
|
|
end
|
|
|
|
it { should contain_openstacklib__wsgi__apache('cinder_wsgi').with(
|
|
:access_log_file => params[:access_log_file],
|
|
)}
|
|
end
|
|
|
|
context 'with access_log_pipe' do
|
|
let :params do
|
|
{
|
|
:access_log_pipe => 'pipe',
|
|
}
|
|
end
|
|
|
|
it { should contain_openstacklib__wsgi__apache('cinder_wsgi').with(
|
|
:access_log_pipe => params[:access_log_pipe],
|
|
)}
|
|
end
|
|
|
|
context 'with error_log_file' do
|
|
let :params do
|
|
{
|
|
:error_log_file => '/path/to/file',
|
|
}
|
|
end
|
|
|
|
it { should contain_openstacklib__wsgi__apache('cinder_wsgi').with(
|
|
:error_log_file => params[:error_log_file],
|
|
)}
|
|
end
|
|
|
|
context 'with error_log_pipe' do
|
|
let :params do
|
|
{
|
|
:error_log_pipe => 'pipe',
|
|
}
|
|
end
|
|
|
|
it { should contain_openstacklib__wsgi__apache('cinder_wsgi').with(
|
|
:error_log_pipe => params[:error_log_pipe],
|
|
)}
|
|
end
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge!(OSDefaults.get_facts({
|
|
:os_workers => 42,
|
|
:concat_basedir => '/var/lib/puppet/concat',
|
|
:fqdn => 'some.host.tld',
|
|
}))
|
|
end
|
|
|
|
let(:platform_params) do
|
|
case facts[:osfamily]
|
|
when 'Debian'
|
|
{
|
|
:httpd_service_name => 'apache2',
|
|
:httpd_ports_file => '/etc/apache2/ports.conf',
|
|
:wsgi_script_path => '/usr/lib/cgi-bin/cinder',
|
|
:wsgi_script_source => '/usr/bin/cinder-wsgi'
|
|
}
|
|
when 'RedHat'
|
|
{
|
|
:httpd_service_name => 'httpd',
|
|
:httpd_ports_file => '/etc/httpd/conf/ports.conf',
|
|
:wsgi_script_path => '/var/www/cgi-bin/cinder',
|
|
:wsgi_script_source => '/usr/bin/cinder-wsgi'
|
|
}
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'apache serving cinder with mod_wsgi'
|
|
end
|
|
end
|
|
end
|