
This patch aim to update our specs test in order to work with the rspec-puppet release 2.0.0, in the mean time, we update rspec syntax order to be prepared for rspec 3.x move. In details: * Upgrade and pin rspec-puppet from 1.0.1 to 2.0.0 * Use shared_examples "a Puppet::Error" for puppet::error tests * * Convert 'should' keyword to 'is_expected.to' (prepare rspec 3.x) * * Fix spec tests for rspec-puppet 2.0.0 * Clean Gemfile (remove over-specificication of runtime deps of puppetlabs_spec_helper) Change-Id: Ida94605916fe26dd4c5fb328f79c4e787d29dcf5 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
91 lines
2.8 KiB
Ruby
91 lines
2.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::agents::ml2::sriov' do
|
|
|
|
let :pre_condition do
|
|
"class { 'neutron': rabbit_password => 'passw0rd' }"
|
|
end
|
|
|
|
let :default_params do
|
|
{ :package_ensure => 'present',
|
|
:enabled => true,
|
|
:physical_device_mappings => [],
|
|
:exclude_devices => [],
|
|
:polling_interval => 2,
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
shared_examples_for 'neutron sriov-nic agent with ml2 plugin' do
|
|
let :p do
|
|
default_params.merge(params)
|
|
end
|
|
|
|
it { is_expected.to contain_class('neutron::params') }
|
|
|
|
it 'configures ovs_neutron_plugin.ini' do
|
|
is_expected.to contain_neutron_plugin_ml2('sriov_nic/polling_interval').with_value(p[:polling_interval])
|
|
is_expected.to contain_neutron_plugin_ml2('sriov_nic/exclude_devices').with_value(p[:exclude_devices].join(','))
|
|
is_expected.to contain_neutron_plugin_ml2('sriov_nic/physical_device_mappings').with_value(p[:physical_device_mappings].join(','))
|
|
end
|
|
|
|
it 'installs neutron sriov-nic agent package' do
|
|
is_expected.to contain_package('neutron-sriov-nic-agent').with(
|
|
:name => platform_params[:sriov_nic_agent_package],
|
|
:ensure => p[:package_ensure]
|
|
)
|
|
is_expected.to contain_package('neutron-sriov-nic-agent').with_before(/Neutron_plugin_ml2\[.+\]/)
|
|
end
|
|
|
|
it 'configures neutron ovs agent service' do
|
|
is_expected.to contain_service('neutron-sriov-nic-agent-service').with(
|
|
:name => platform_params[:sriov_nic_agent_service],
|
|
:enable => true,
|
|
:ensure => 'running',
|
|
:require => 'Class[Neutron]'
|
|
)
|
|
end
|
|
|
|
context 'when supplying device mapping' do
|
|
before :each do
|
|
params.merge!(:physical_device_mappings => ['physnet1:eth1'],
|
|
:exclude_devices => ['physnet1:eth2'])
|
|
end
|
|
|
|
it 'configures physical device mappings with exclusion' do
|
|
is_expected.to contain_neutron_plugin_ml2('sriov_nic/exclude_devices').with_value(['physnet1:eth2'])
|
|
is_expected.to contain_neutron_plugin_ml2('sriov_nic/physical_device_mappings').with_value(['physnet1:eth1'])
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian' }
|
|
end
|
|
|
|
let :platform_params do
|
|
{ :sriov_nic_agent_package => 'neutron-plugin-sriov-agent',
|
|
:sriov_nic_agent_service => 'neutron-plugin-sriov-agent' }
|
|
end
|
|
|
|
it_configures 'neutron sriov-nic agent with ml2 plugin'
|
|
end
|
|
|
|
context 'on RedHat platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'RedHat' }
|
|
end
|
|
|
|
let :platform_params do
|
|
{ :sriov_nic_agent_package => 'openstack-neutron-sriov-nic-agent',
|
|
:sriov_nic_agent_service => 'neutron-sriov-nic-agent' }
|
|
end
|
|
|
|
it_configures 'neutron sriov-nic agent with ml2 plugin'
|
|
end
|
|
end
|