59b2e9a4ae
Change-Id: Ibbdab404674b195b3758b71db1edce8db3a2c660
129 lines
4.0 KiB
Ruby
129 lines
4.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::agents::ml2::vpp' do
|
|
let :pre_condition do
|
|
"class { 'neutron': }"
|
|
end
|
|
|
|
let :default_params do
|
|
{ :package_ensure => 'present',
|
|
:enabled => true,
|
|
:etcd_host => '127.0.0.1',
|
|
:etcd_port => 4001,
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
shared_examples 'neutron plugin vpp agent with ml2 plugin' do
|
|
let :p do
|
|
default_params.merge(params)
|
|
end
|
|
|
|
it { should contain_class('neutron::params') }
|
|
|
|
it 'passes purge to resource' do
|
|
should contain_resources('neutron_agent_vpp').with({
|
|
:purge => false
|
|
})
|
|
end
|
|
|
|
it 'configures plugins/ml2/vpp_agent.ini' do
|
|
should contain_neutron_agent_vpp('ml2_vpp/physnets').with_value('<SERVICE DEFAULT>')
|
|
should contain_neutron_agent_vpp('ml2_vpp/etcd_user').with_value('<SERVICE DEFAULT>')
|
|
should contain_neutron_agent_vpp('ml2_vpp/etcd_pass').with_value('<SERVICE DEFAULT>')
|
|
end
|
|
|
|
it 'installs neutron vpp agent package' do
|
|
should contain_package('neutron-vpp-agent').with(
|
|
:name => platform_params[:vpp_plugin_package],
|
|
:ensure => p[:package_ensure],
|
|
:tag => ['openstack', 'neutron-package'],
|
|
)
|
|
end
|
|
|
|
it 'configures neutron vpp agent service' do
|
|
should contain_service('neutron-vpp-agent-service').with(
|
|
:name => platform_params[:vpp_agent_service],
|
|
:enable => true,
|
|
:ensure => 'running',
|
|
:tag => ['neutron-service'],
|
|
)
|
|
should contain_service('neutron-vpp-agent-service').that_subscribes_to('Anchor[neutron::service::begin]')
|
|
should contain_service('neutron-vpp-agent-service').that_notifies('Anchor[neutron::service::end]')
|
|
end
|
|
|
|
context 'with manage_service as false' do
|
|
before :each do
|
|
params.merge!(:manage_service => false)
|
|
end
|
|
it 'should not manage the service' do
|
|
should_not contain_service('neutron-vpp-agent-service')
|
|
end
|
|
end
|
|
|
|
context 'with the host parameter' do
|
|
before :each do
|
|
params.merge!(:host => 'myhost')
|
|
end
|
|
it 'should set the host parameter' do
|
|
should contain_neutron_agent_vpp('DEFAULT/host').with_value('myhost')
|
|
end
|
|
end
|
|
|
|
context 'when supplying a physnet mapping' do
|
|
before :each do
|
|
params.merge!(:physnets => 'physnet0:GigabitEthernet2/2/0,physnet1:GigabitEthernet2/2/1')
|
|
end
|
|
it 'should configure physnets' do
|
|
should contain_neutron_agent_vpp('ml2_vpp/physnets').with_value('physnet0:GigabitEthernet2/2/0,physnet1:GigabitEthernet2/2/1')
|
|
end
|
|
end
|
|
|
|
context 'when supplying a physnet mapping in array' do
|
|
before :each do
|
|
params.merge!(:physnets => ['physnet0:GigabitEthernet2/2/0', 'physnet1:GigabitEthernet2/2/1'])
|
|
end
|
|
it 'should configure physnets' do
|
|
should contain_neutron_agent_vpp('ml2_vpp/physnets').with_value('physnet0:GigabitEthernet2/2/0,physnet1:GigabitEthernet2/2/1')
|
|
end
|
|
end
|
|
|
|
context 'when enabling etcd authentication' do
|
|
before :each do
|
|
params.merge!(:etcd_user => 'admin',
|
|
:etcd_pass => 'password' )
|
|
end
|
|
it 'should configure etcd username and password' do
|
|
should contain_neutron_agent_vpp('ml2_vpp/etcd_user').with_value('admin')
|
|
should contain_neutron_agent_vpp('ml2_vpp/etcd_pass').with_value('password')
|
|
end
|
|
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())
|
|
end
|
|
|
|
let :platform_params do
|
|
case facts[:osfamily]
|
|
when 'Debian'
|
|
{ :vpp_plugin_package => 'python3-networking-vpp',
|
|
:vpp_agent_service => 'neutron-vpp-agent' }
|
|
when 'RedHat'
|
|
{ :vpp_plugin_package => 'python3-networking-vpp',
|
|
:vpp_agent_service => 'neutron-vpp-agent' }
|
|
end
|
|
end
|
|
|
|
it_behaves_like 'neutron plugin vpp agent with ml2 plugin'
|
|
end
|
|
end
|
|
end
|