puppet-neutron/spec/classes/neutron_plugins_ml2_mellanox_spec.rb
Takashi Kajinami 6419777096 networking-mlnx: Support Debian and Ubuntu
The networking-mlnx plugin is already packaged for Debian and Ubuntu.
This change adds support for these two distros in addition to RedHat
family(RHEL and CentOS) which is already supported.

Change-Id: I3e93e480b1f6a8bbb61c18a1c24256b6d810662e
2022-04-11 10:49:12 +09:00

54 lines
1.2 KiB
Ruby

require 'spec_helper'
describe 'neutron::plugins::ml2::mellanox' do
let :pre_condition do
"class { 'neutron::keystone::authtoken':
password => 'passw0rd',
}
class { 'neutron::server': }
class { 'neutron':
core_plugin => 'neutron.plugins.ml2.plugin.Ml2Plugin'
}"
end
let :params do
{}
end
shared_examples 'neutron plugin mellanox ml2' do
it { should contain_class('neutron::params') }
it 'should have' do
should contain_package(platform_params[:mlnx_plugin_package]).with(
:ensure => 'installed',
:tag => ['openstack', 'neutron-plugin-ml2-package']
)
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'
{
:mlnx_plugin_package => 'python3-networking-mlnx',
}
when 'RedHat'
{
:mlnx_plugin_package => 'python3-networking-mlnx',
}
end
end
it_behaves_like 'neutron plugin mellanox ml2'
end
end
end