f0101c709f
This simple patch is adding following stuff: 1. Adding minimize_polling parameter to ovs ml2 agent class. 2. Adding type and provider to mange rootwrap.conf file mainly to manipulate XenServer connection parameters. Change-Id: I3dad47a34af7bab7eefe46db39b3a5eedc7c3c7f
40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::rootwrap' do
|
|
|
|
let :pre_condition do
|
|
"class { 'neutron::agents::ml2::ovs': }"
|
|
end
|
|
|
|
let :params do
|
|
{ :xenapi_connection_url => 'http://127.0.0.1',
|
|
:xenapi_connection_username => 'user',
|
|
:xenapi_connection_password => 'passw0rd',
|
|
}
|
|
end
|
|
|
|
shared_examples_for 'neutron rootwrap' do
|
|
|
|
it 'configures rootwrap.conf' do
|
|
is_expected.to contain_neutron_rootwrap_config('xenapi/xenapi_connection_url').with_value(params[:xenapi_connection_url]);
|
|
is_expected.to contain_neutron_rootwrap_config('xenapi/xenapi_connection_username').with_value(params[:xenapi_connection_username]);
|
|
is_expected.to contain_neutron_rootwrap_config('xenapi/xenapi_connection_password').with_value(params[:xenapi_connection_password]);
|
|
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
|
|
|
|
it_configures 'neutron rootwrap'
|
|
end
|
|
end
|
|
end
|