puppet-manila/spec/defines/manila_network_standalone_spec.rb
Ryan Hefner 728a0e586d Support network plugin model
Supports configuration parameters for the following new network
plugins:
 - Neutron (formerly the only option)
 - Neutron single network
 - Nova networking
 - Standalone network

Documentation for these plugins is in review here:
https://review.openstack.org/#/c/171166/

Change-Id: Ida57ae5551c962791eaddacb695996cf4e8dec23
2015-04-14 01:18:40 +00:00

51 lines
1.2 KiB
Ruby

require 'spec_helper'
describe 'manila::network::standalone' do
let("title") {'standalone'}
let :params do
{
:standalone_network_plugin_gateway => '192.168.1.1',
:standalone_network_plugin_mask => '255.255.255.0',
:standalone_network_plugin_segmentation_id => '1001',
:standalone_network_plugin_allowed_ip_ranges => '10.0.0.10-10.0.0.20',
}
end
let :default_params do
{
:standalone_network_plugin_ip_version => '4',
}
end
shared_examples_for 'standalone network plugin' do
let :params_hash do
default_params.merge(params)
end
it 'configures standalone network plugin' do
is_expected.to contain_manila_config("standalone/network_api_class").with_value(
'manila.network.standalone_network_plugin.StandaloneNetworkPlugin')
params_hash.each_pair do |config,value|
is_expected.to contain_manila_config("standalone/#{config}").with_value( value )
end
end
end
context 'with default parameters' do
before do
params = {}
end
it_configures 'standalone network plugin'
end
context 'with provided parameters' do
it_configures 'standalone network plugin'
end
end