7b6b4515bf
Add state_path and lock_path parameters to the base neutron class, and deprecate those same parameters from neutron::server. This is because all Neutron services need those configured in neutron.conf, not only neutron-server. I am not sure if it makes sense to override the neutron_config values from the neutron base class in the way I did (in order to preserve the current behavior.) It may be better to just depreciate those parameters outright, instead. Change-Id: I19819051e4d7bf8ed9caf81adc07a817646e3d21 Closes-bug: 1404017
294 lines
11 KiB
Ruby
294 lines
11 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::server' do
|
|
|
|
let :pre_condition do
|
|
"class { 'neutron': rabbit_password => 'passw0rd' }"
|
|
end
|
|
|
|
let :params do
|
|
{ :auth_password => 'passw0rd',
|
|
:auth_user => 'neutron' }
|
|
end
|
|
|
|
let :default_params do
|
|
{ :package_ensure => 'present',
|
|
:enabled => true,
|
|
:auth_type => 'keystone',
|
|
:auth_host => 'localhost',
|
|
:auth_port => '35357',
|
|
:auth_tenant => 'services',
|
|
:auth_user => 'neutron',
|
|
:database_connection => 'sqlite:////var/lib/neutron/ovs.sqlite',
|
|
:database_max_retries => '10',
|
|
:database_idle_timeout => '3600',
|
|
:database_retry_interval => '10',
|
|
:database_min_pool_size => '1',
|
|
:database_max_pool_size => '10',
|
|
:database_max_overflow => '20',
|
|
:sync_db => false,
|
|
:agent_down_time => '75',
|
|
:router_scheduler_driver => 'neutron.scheduler.l3_agent_scheduler.ChanceScheduler',
|
|
:router_distributed => false,
|
|
:l3_ha => false,
|
|
:max_l3_agents_per_router => '3',
|
|
:min_l3_agents_per_router => '2',
|
|
:l3_ha_net_cidr => '169.254.192.0/18'
|
|
}
|
|
end
|
|
|
|
shared_examples_for 'a neutron server' do
|
|
let :p do
|
|
default_params.merge(params)
|
|
end
|
|
|
|
it 'should perform default database configuration of' do
|
|
should contain_neutron_config('database/connection').with_value(p[:database_connection])
|
|
should contain_neutron_config('database/connection').with_secret( true )
|
|
should contain_neutron_config('database/max_retries').with_value(p[:database_max_retries])
|
|
should contain_neutron_config('database/idle_timeout').with_value(p[:database_idle_timeout])
|
|
should contain_neutron_config('database/retry_interval').with_value(p[:database_retry_interval])
|
|
should contain_neutron_config('database/min_pool_size').with_value(p[:database_min_pool_size])
|
|
should contain_neutron_config('database/max_pool_size').with_value(p[:database_max_pool_size])
|
|
should contain_neutron_config('database/max_overflow').with_value(p[:database_max_overflow])
|
|
end
|
|
|
|
it { should contain_class('neutron::params') }
|
|
it { should contain_class('neutron::policy') }
|
|
|
|
it 'configures authentication middleware' do
|
|
should contain_neutron_api_config('filter:authtoken/auth_host').with_value(p[:auth_host]);
|
|
should contain_neutron_api_config('filter:authtoken/auth_port').with_value(p[:auth_port]);
|
|
should contain_neutron_api_config('filter:authtoken/admin_tenant_name').with_value(p[:auth_tenant]);
|
|
should contain_neutron_api_config('filter:authtoken/admin_user').with_value(p[:auth_user]);
|
|
should contain_neutron_api_config('filter:authtoken/admin_password').with_value(p[:auth_password]);
|
|
should contain_neutron_api_config('filter:authtoken/admin_password').with_secret( true )
|
|
should contain_neutron_api_config('filter:authtoken/auth_admin_prefix').with(:ensure => 'absent')
|
|
should contain_neutron_api_config('filter:authtoken/auth_uri').with_value("http://localhost:5000/");
|
|
end
|
|
|
|
it 'installs neutron server package' do
|
|
if platform_params.has_key?(:server_package)
|
|
should contain_package('neutron-server').with(
|
|
:name => platform_params[:server_package],
|
|
:ensure => p[:package_ensure]
|
|
)
|
|
should contain_package('neutron-server').with_before(/Neutron_api_config\[.+\]/)
|
|
should contain_package('neutron-server').with_before(/Neutron_config\[.+\]/)
|
|
should contain_package('neutron-server').with_before(/Service\[neutron-server\]/)
|
|
else
|
|
should contain_package('neutron').with_before(/Neutron_api_config\[.+\]/)
|
|
end
|
|
end
|
|
|
|
it 'configures neutron server service' do
|
|
should contain_service('neutron-server').with(
|
|
:name => platform_params[:server_service],
|
|
:enable => true,
|
|
:ensure => 'running',
|
|
:require => 'Class[Neutron]'
|
|
)
|
|
should_not contain_exec('neutron-db-sync')
|
|
should contain_neutron_api_config('filter:authtoken/auth_admin_prefix').with(
|
|
:ensure => 'absent'
|
|
)
|
|
should contain_service('neutron-server').with_name('neutron-server')
|
|
should contain_neutron_config('DEFAULT/api_workers').with_value(facts[:processorcount])
|
|
should contain_neutron_config('DEFAULT/rpc_workers').with_value(facts[:processorcount])
|
|
should contain_neutron_config('DEFAULT/agent_down_time').with_value(p[:agent_down_time])
|
|
should contain_neutron_config('DEFAULT/router_scheduler_driver').with_value(p[:router_scheduler_driver])
|
|
end
|
|
|
|
context 'with manage_service as false' do
|
|
before :each do
|
|
params.merge!(:manage_service => false)
|
|
end
|
|
it 'should not start/stop service' do
|
|
should contain_service('neutron-server').without_ensure
|
|
end
|
|
end
|
|
|
|
context 'with DVR enabled' do
|
|
before :each do
|
|
params.merge!(:router_distributed => true)
|
|
end
|
|
it 'should enable DVR' do
|
|
should contain_neutron_config('DEFAULT/router_distributed').with_value(true)
|
|
end
|
|
end
|
|
|
|
context 'with HA routers enabled' do
|
|
before :each do
|
|
params.merge!(:l3_ha => true)
|
|
end
|
|
it 'should enable HA routers' do
|
|
should contain_neutron_config('DEFAULT/l3_ha').with_value(true)
|
|
should contain_neutron_config('DEFAULT/max_l3_agents_per_router').with_value('3')
|
|
should contain_neutron_config('DEFAULT/min_l3_agents_per_router').with_value('2')
|
|
should contain_neutron_config('DEFAULT/l3_ha_net_cidr').with_value('169.254.192.0/18')
|
|
end
|
|
end
|
|
|
|
context 'with HA routers enabled with unlimited l3 agents per router' do
|
|
before :each do
|
|
params.merge!(:l3_ha => true,
|
|
:max_l3_agents_per_router => '0' )
|
|
end
|
|
it 'should enable HA routers' do
|
|
should contain_neutron_config('DEFAULT/max_l3_agents_per_router').with_value('0')
|
|
end
|
|
end
|
|
|
|
context 'with HA routers enabled and wrong parameters' do
|
|
before :each do
|
|
params.merge!(:l3_ha => true,
|
|
:max_l3_agents_per_router => '2',
|
|
:min_l3_agents_per_router => '3' )
|
|
end
|
|
it 'should fail to configure HA routerd' do
|
|
expect { subject }.to raise_error(Puppet::Error, /min_l3_agents_per_router should be less than or equal to max_l3_agents_per_router./)
|
|
end
|
|
end
|
|
|
|
context 'with custom service name' do
|
|
before :each do
|
|
params.merge!(:service_name => 'custom-service-name')
|
|
end
|
|
it 'should configure proper service name' do
|
|
should contain_service('neutron-server').with_name('custom-service-name')
|
|
end
|
|
end
|
|
|
|
context 'with state_path and lock_path parameters' do
|
|
before :each do
|
|
params.merge!(:state_path => 'state_path',
|
|
:lock_path => 'lock_path' )
|
|
end
|
|
it 'should override state_path and lock_path from base class' do
|
|
should contain_neutron_config('DEFAULT/state_path').with_value(p[:state_path])
|
|
should contain_neutron_config('DEFAULT/lock_path').with_value(p[:lock_path])
|
|
end
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'a neutron server with auth_admin_prefix set' do
|
|
[ '/keystone', '/keystone/admin', '' ].each do |auth_admin_prefix|
|
|
describe "with keystone_auth_admin_prefix containing incorrect value #{auth_admin_prefix}" do
|
|
before do
|
|
params.merge!({
|
|
:auth_admin_prefix => auth_admin_prefix,
|
|
})
|
|
end
|
|
it do
|
|
should contain_neutron_api_config('filter:authtoken/auth_admin_prefix').with(
|
|
:value => params[:auth_admin_prefix]
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'a neutron server with some incorrect auth_admin_prefix set' do
|
|
[ '/keystone/', 'keystone/', 'keystone' ].each do |auth_admin_prefix|
|
|
describe "with keystone_auth_admin_prefix containing incorrect value #{auth_admin_prefix}" do
|
|
before do
|
|
params.merge!({
|
|
:auth_admin_prefix => auth_admin_prefix,
|
|
})
|
|
end
|
|
it do
|
|
expect {
|
|
should contain_neutron_api_config('filter:authtoken/auth_admin_prefix')
|
|
}.to raise_error(Puppet::Error, /validate_re\(\): "#{auth_admin_prefix}" does not match/)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'a neutron server with broken authentication' do
|
|
before do
|
|
params.delete(:auth_password)
|
|
end
|
|
it_raises 'a Puppet::Error', /auth_password must be set/
|
|
end
|
|
|
|
shared_examples_for 'a neutron server without database synchronization' do
|
|
before do
|
|
params.merge!(
|
|
:sync_db => true
|
|
)
|
|
end
|
|
it 'should exec neutron-db-sync' do
|
|
should contain_exec('neutron-db-sync').with(
|
|
:command => 'neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugin.ini upgrade head',
|
|
:path => '/usr/bin',
|
|
:before => 'Service[neutron-server]',
|
|
:require => 'Neutron_config[database/connection]',
|
|
:refreshonly => true
|
|
)
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'a neutron server with database_connection specified' do
|
|
before do
|
|
params.merge!(
|
|
:database_connection => 'sqlite:////var/lib/neutron/ovs-TEST_parameter.sqlite'
|
|
)
|
|
end
|
|
it 'configures database connection' do
|
|
should contain_neutron_config('database/connection').with_value(params[:database_connection])
|
|
end
|
|
end
|
|
|
|
describe "with custom keystone auth_uri" do
|
|
let :facts do
|
|
{ :osfamily => 'RedHat' }
|
|
end
|
|
before do
|
|
params.merge!({
|
|
:auth_uri => 'https://foo.bar:1234/',
|
|
})
|
|
end
|
|
it 'configures auth_uri' do
|
|
should contain_neutron_api_config('filter:authtoken/auth_uri').with_value("https://foo.bar:1234/");
|
|
end
|
|
end
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian',
|
|
:processorcount => '2' }
|
|
end
|
|
|
|
let :platform_params do
|
|
{ :server_package => 'neutron-server',
|
|
:server_service => 'neutron-server' }
|
|
end
|
|
|
|
it_configures 'a neutron server'
|
|
it_configures 'a neutron server with broken authentication'
|
|
it_configures 'a neutron server with auth_admin_prefix set'
|
|
it_configures 'a neutron server with some incorrect auth_admin_prefix set'
|
|
it_configures 'a neutron server with database_connection specified'
|
|
it_configures 'a neutron server without database synchronization'
|
|
end
|
|
|
|
context 'on RedHat platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'RedHat',
|
|
:processorcount => '2' }
|
|
end
|
|
|
|
let :platform_params do
|
|
{ :server_service => 'neutron-server' }
|
|
end
|
|
|
|
it_configures 'a neutron server'
|
|
it_configures 'a neutron server with broken authentication'
|
|
it_configures 'a neutron server with auth_admin_prefix set'
|
|
it_configures 'a neutron server with some incorrect auth_admin_prefix set'
|
|
it_configures 'a neutron server with database_connection specified'
|
|
it_configures 'a neutron server without database synchronization'
|
|
end
|
|
end
|