
With neutron switching OVSDB configuration to be done via the 'native' library, OVSDB needs to be listening on a port to accept RPCs. This adds a default listener on a non-common port and sets the URI for Neutron when using OpenDaylight so that agents may add ports to OVS. Change-Id: Ic651bc9d28f45491846b6ad1048fbc975b3e2141 Signed-off-by: Tim Rozet <trozet@redhat.com>
80 lines
2.0 KiB
Ruby
80 lines
2.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::plugins::ml2::opendaylight' do
|
|
|
|
let :pre_condition do
|
|
"class { 'neutron::server': password => 'password'}
|
|
class { 'neutron':
|
|
rabbit_password => 'passw0rd',
|
|
core_plugin => 'neutron.plugins.ml2.plugin.Ml2Plugin' }"
|
|
end
|
|
|
|
let :default_params do
|
|
{
|
|
:package_ensure => 'present',
|
|
:odl_username => '<SERVICE DEFAULT>',
|
|
:odl_password => '<SERVICE DEFAULT>',
|
|
:odl_url => '<SERVICE DEFAULT>',
|
|
:ovsdb_connection => 'tcp:127.0.0.1:6639'
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{
|
|
}
|
|
end
|
|
|
|
let :test_facts do
|
|
{
|
|
:operatingsystem => 'default',
|
|
:operatingsystemrelease => 'default',
|
|
}
|
|
end
|
|
|
|
|
|
shared_examples_for 'neutron plugin opendaylight ml2' do
|
|
before do
|
|
params.merge!(default_params)
|
|
end
|
|
|
|
it 'should have' do
|
|
is_expected.to contain_package('python-networking-odl').with(
|
|
:ensure => params[:package_ensure],
|
|
:tag => 'openstack'
|
|
)
|
|
end
|
|
|
|
it 'configures ml2_odl settings' do
|
|
is_expected.to contain_neutron_plugin_ml2('ml2_odl/password').with_value(params[:odl_password])
|
|
is_expected.to contain_neutron_plugin_ml2('ml2_odl/username').with_value(params[:odl_username])
|
|
is_expected.to contain_neutron_plugin_ml2('ml2_odl/url').with_value(params[:odl_url])
|
|
end
|
|
|
|
it 'configures neutron server settings' do
|
|
is_expected.to contain_neutron_config('OVS/ovsdb_connection').with_value(params[:ovsdb_connection])
|
|
end
|
|
end
|
|
|
|
|
|
context 'on RedHat platforms' do
|
|
let :facts do
|
|
@default_facts.merge(test_facts.merge({
|
|
:osfamily => 'RedHat',
|
|
:operatingsystemrelease => '7'
|
|
}))
|
|
end
|
|
|
|
it_configures 'neutron plugin opendaylight ml2'
|
|
end
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
@default_facts.merge(test_facts.merge({
|
|
:osfamily => 'Debian',
|
|
}))
|
|
end
|
|
|
|
it_configures 'neutron plugin opendaylight ml2'
|
|
end
|
|
end
|