824499f377
... because they were deprecated a while ago[1].
[1] 5ae8e2882b
Change-Id: Ia64745e5043e4661d38773119673c3a908c62566
75 lines
3.9 KiB
Ruby
75 lines
3.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::network::neutron' do
|
|
shared_examples 'manila::neutron' do
|
|
context 'with default parameters' do
|
|
it 'configures manila network neutron' do
|
|
is_expected.to contain_manila_config('neutron/insecure').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('neutron/auth_url').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('neutron/auth_type').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('neutron/cafile').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('neutron/region_name').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('neutron/timeout').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('neutron/endpoint_type').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/network_plugin_ipv4_enabled').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/network_plugin_ipv6_enabled').with_value('<SERVICE DEFAULT>')
|
|
|
|
# These should be added only when auth_type is 'password'
|
|
is_expected.not_to contain_manila_config('neutron/user_domain_name')
|
|
is_expected.not_to contain_manila_config('neutron/project_domain_name')
|
|
is_expected.not_to contain_manila_config('neutron/project_name')
|
|
is_expected.not_to contain_manila_config('neutron/username')
|
|
is_expected.not_to contain_manila_config('neutron/password')
|
|
end
|
|
end
|
|
|
|
context 'with overridden parameters' do
|
|
let :params do
|
|
{
|
|
:insecure => true,
|
|
:auth_url => 'http://127.0.0.2:5000/',
|
|
:auth_type => 'password',
|
|
:cafile => '/etc/ssl/certs/ca.crt',
|
|
:region_name => 'RegionOne',
|
|
:timeout => 30,
|
|
:endpoint_type => 'publicURL',
|
|
:username => 'neutronv1',
|
|
:password => '123123',
|
|
:network_plugin_ipv4_enabled => false,
|
|
:network_plugin_ipv6_enabled => true,
|
|
}
|
|
end
|
|
|
|
it 'configures manila neutron with overridden parameters' do
|
|
is_expected.to contain_manila_config('DEFAULT/network_api_class').with_value('manila.network.neutron.neutron_network_plugin.NeutronNetworkPlugin')
|
|
is_expected.to contain_manila_config('neutron/insecure').with_value(true)
|
|
is_expected.to contain_manila_config('neutron/auth_url').with_value('http://127.0.0.2:5000/')
|
|
is_expected.to contain_manila_config('neutron/auth_type').with_value('password')
|
|
is_expected.to contain_manila_config('neutron/cafile').with_value('/etc/ssl/certs/ca.crt')
|
|
is_expected.to contain_manila_config('neutron/user_domain_name').with_value('Default')
|
|
is_expected.to contain_manila_config('neutron/project_domain_name').with_value('Default')
|
|
is_expected.to contain_manila_config('neutron/project_name').with_value('services')
|
|
is_expected.to contain_manila_config('neutron/region_name').with_value('RegionOne')
|
|
is_expected.to contain_manila_config('neutron/timeout').with_value(30)
|
|
is_expected.to contain_manila_config('neutron/endpoint_type').with_value('publicURL')
|
|
is_expected.to contain_manila_config('neutron/username').with_value('neutronv1')
|
|
is_expected.to contain_manila_config('neutron/password').with_value('123123').with_secret(true)
|
|
is_expected.to contain_manila_config('DEFAULT/network_plugin_ipv4_enabled').with_value(false)
|
|
is_expected.to contain_manila_config('DEFAULT/network_plugin_ipv6_enabled').with_value(true)
|
|
end
|
|
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({ :fqdn => 'some.host.tld'}))
|
|
end
|
|
|
|
it_behaves_like 'manila::neutron'
|
|
end
|
|
end
|
|
end
|