c1465f8fa6
Add parameter to apache_wsgi to allow overwrite and/or add additional wsgi process options. This possibility was added to openstacklib with Change-Id: I41914ce3361988d5db1695f09d21209772fdf548 lease enter the commit message for your changes. Lines starting Change-Id: I8b816cbe861ba315018505973dfbb72088bc9b2a
105 lines
4.0 KiB
Ruby
105 lines
4.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::wsgi::apache' do
|
|
|
|
shared_examples_for 'apache serving neutron with mod_wsgi' do
|
|
context 'with default parameters' do
|
|
it { is_expected.to contain_class('neutron::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('neutron_wsgi').with(
|
|
:bind_port => 9696,
|
|
:group => 'neutron',
|
|
:path => '/',
|
|
:servername => facts[:fqdn],
|
|
:ssl => true,
|
|
:threads => 1,
|
|
:user => 'neutron',
|
|
:workers => facts[:os_workers],
|
|
:wsgi_daemon_process => 'neutron',
|
|
:wsgi_process_group => 'neutron',
|
|
:wsgi_script_dir => platform_params[:wsgi_script_path],
|
|
:wsgi_script_file => 'app',
|
|
:wsgi_script_source => platform_params[:wsgi_script_source],
|
|
:custom_wsgi_process_options => {},
|
|
)}
|
|
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,
|
|
:wsgi_process_display_name => 'neutron',
|
|
:workers => 37,
|
|
:custom_wsgi_process_options => {
|
|
'python_path' => '/my/python/path',
|
|
},
|
|
}
|
|
end
|
|
it { is_expected.to contain_class('neutron::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('neutron_wsgi').with(
|
|
:bind_host => '10.42.51.1',
|
|
:bind_port => 12345,
|
|
:group => 'neutron',
|
|
:path => '/',
|
|
:servername => 'dummy.host',
|
|
:ssl => false,
|
|
:threads => 1,
|
|
:user => 'neutron',
|
|
:workers => 37,
|
|
:wsgi_daemon_process => 'neutron',
|
|
:wsgi_process_display_name => 'neutron',
|
|
:wsgi_process_group => 'neutron',
|
|
:wsgi_script_dir => platform_params[:wsgi_script_path],
|
|
:wsgi_script_file => 'app',
|
|
:wsgi_script_source => platform_params[:wsgi_script_source],
|
|
:custom_wsgi_process_options => {
|
|
'python_path' => '/my/python/path',
|
|
},
|
|
)}
|
|
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 => 8,
|
|
: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/neutron',
|
|
:wsgi_script_source => '/usr/bin/neutron-api'
|
|
}
|
|
when 'RedHat'
|
|
{
|
|
:httpd_service_name => 'httpd',
|
|
:httpd_ports_file => '/etc/httpd/conf/ports.conf',
|
|
:wsgi_script_path => '/var/www/cgi-bin/neutron',
|
|
:wsgi_script_source => '/usr/bin/neutron-api'
|
|
}
|
|
|
|
end
|
|
end
|
|
it_configures 'apache serving neutron with mod_wsgi'
|
|
end
|
|
end
|
|
end
|