puppet-sahara/spec/classes/sahara_wsgi_apache_spec.rb
Takashi Kajinami bced4f3e03 Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: I8dc98b5988ae84df176c3baff520ad3e8d8bd390
2023-03-02 13:30:31 +09:00

187 lines
5.8 KiB
Ruby

require 'spec_helper'
describe 'sahara::wsgi::apache' do
shared_examples 'sahara::wsgi::apache' do
context 'with default params' do
it {
should contain_class('sahara::deps')
should contain_class('sahara::params')
}
it { should contain_openstacklib__wsgi__apache('sahara_wsgi').with(
:bind_port => 8386,
:group => 'sahara',
:path => '/',
:priority => 10,
:servername => 'foo.example.com',
:ssl => false,
:threads => 1,
:user => 'sahara',
:workers => facts[:os_workers],
:wsgi_daemon_process => 'sahara',
:wsgi_process_group => 'sahara',
:wsgi_script_dir => platform_params[:wsgi_script_path],
:wsgi_script_file => 'app',
:wsgi_script_source => platform_params[:wsgi_script_source],
:headers => nil,
:request_headers => nil,
:custom_wsgi_process_options => {},
:access_log_file => nil,
:access_log_pipe => nil,
:access_log_syslog => nil,
:access_log_format => nil,
:error_log_file => nil,
:error_log_pipe => nil,
:error_log_syslog => nil,
)}
end
context 'when overriding paramters' do
let :params do
{
:servername => 'dummy.host',
:bind_host => '10.42.51.1',
:port => 12345,
:ssl => false,
:workers => 8,
:wsgi_process_display_name => 'sahara',
:threads => 2,
:custom_wsgi_process_options => {
'python_path' => '/my/python/path',
},
:headers => ['set X-XSS-Protection "1; mode=block"'],
:request_headers => ['set Content-Type "application/json"'],
}
end
it { is_expected.to contain_openstacklib__wsgi__apache('sahara_wsgi').with(
:bind_host => '10.42.51.1',
:bind_port => 12345,
:group => 'sahara',
:path => '/',
:servername => 'dummy.host',
:ssl => false,
:threads => 2,
:user => 'sahara',
:workers => 8,
:wsgi_daemon_process => 'sahara',
:wsgi_process_display_name => 'sahara',
:wsgi_process_group => 'sahara',
:wsgi_script_dir => platform_params[:wsgi_script_path],
:wsgi_script_file => 'app',
:wsgi_script_source => platform_params[:wsgi_script_source],
:headers => ['set X-XSS-Protection "1; mode=block"'],
:request_headers => ['set Content-Type "application/json"'],
:custom_wsgi_process_options => {
'python_path' => '/my/python/path',
},
)}
end
context 'with ssl' do
let :params do
{
:ssl => true,
}
end
it { should contain_openstacklib__wsgi__apache('sahara_wsgi').with_ssl(true) }
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('sahara_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('sahara_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('sahara_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('sahara_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('sahara_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 => 4,
}))
end
let(:platform_params) do
case facts[:os]['family']
when 'Debian'
{
:wsgi_script_path => '/usr/lib/cgi-bin/sahara',
:wsgi_script_source => '/usr/bin/sahara-wsgi-api'
}
when 'RedHat'
{
:wsgi_script_path => '/var/www/cgi-bin/sahara',
:wsgi_script_source => '/usr/bin/sahara-wsgi-api'
}
end
end
it_behaves_like 'sahara::wsgi::apache'
end
end
end