
This conversion is done by Transpec 3.4.0 This patch complements c09a93456eb806f0cdb6e858470334413ac61ea6 adding all files inside defines/ dir. Partial-Bug: #1816857 Change-Id: Ic00f8b38c5b84ff19fc945512f4f13aa11221c8b
104 lines
2.9 KiB
Ruby
104 lines
2.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::backend::eqlx' do
|
|
let (:config_group_name) { 'eqlx-1' }
|
|
|
|
let (:title) { config_group_name }
|
|
|
|
let :params do
|
|
{
|
|
:backend_availability_zone => 'my_zone',
|
|
:san_ip => '192.168.100.10',
|
|
:san_login => 'grpadmin',
|
|
:san_password => '12345',
|
|
:san_private_key => '',
|
|
:volume_backend_name => 'Dell_EQLX',
|
|
:san_thin_provision => '<SERVICE DEFAULT>',
|
|
:eqlx_group_name => '<SERVICE DEFAULT>',
|
|
:eqlx_pool => 'apool',
|
|
:use_chap_auth => true,
|
|
:chap_username => 'chapadm',
|
|
:chap_password => '56789',
|
|
:ssh_conn_timeout => 31,
|
|
:eqlx_cli_max_retries => 6,
|
|
}
|
|
end
|
|
|
|
shared_examples 'eqlx volume driver' do
|
|
it { is_expected.to contain_cinder__backend__eqlx(config_group_name) }
|
|
|
|
it { is_expected.to contain_cinder_config("#{config_group_name}/volume_driver").with(
|
|
:value => 'cinder.volume.drivers.dell_emc.ps.PSSeriesISCSIDriver'
|
|
)}
|
|
|
|
it {
|
|
params.each_pair do |config,value|
|
|
is_expected.to contain_cinder_config("#{config_group_name}/#{config}").with_value(value)
|
|
end
|
|
}
|
|
end
|
|
|
|
shared_examples 'cinder::backend::eqlx' do
|
|
context 'eqlx backend with additional configuration' do
|
|
before :each do
|
|
params.merge!( :extra_options => {'eqlx-1/param1' => {'value' => 'value1'}} )
|
|
end
|
|
|
|
it { is_expected.to contain_cinder_config('eqlx-1/param1').with_value('value1') }
|
|
end
|
|
|
|
context 'eqlx backend with cinder type' do
|
|
before :each do
|
|
params.merge!({:manage_volume_type => true})
|
|
end
|
|
|
|
it { is_expected.to contain_cinder_type('eqlx-1').with(
|
|
:ensure => 'present',
|
|
:properties => ['volume_backend_name=eqlx-1']
|
|
)}
|
|
end
|
|
|
|
context 'eqlx backend with chap' do
|
|
before :each do
|
|
params.merge!({
|
|
:use_chap_auth => true,
|
|
:chap_username => 'myuser',
|
|
:chap_password => 'mypass'
|
|
})
|
|
end
|
|
|
|
it_behaves_like 'eqlx volume driver'
|
|
end
|
|
|
|
context 'eqlx with invalid values' do
|
|
context 'with invalid chap_username' do
|
|
before do
|
|
params.merge!( :chap_username => '<SERVICE DEFAULT>' )
|
|
end
|
|
|
|
it { is_expected.to raise_error(Puppet::Error, /chap_username need to be set./) }
|
|
end
|
|
|
|
context 'with invalid chap_password' do
|
|
before do
|
|
params.merge!( :chap_password => '<SERVICE DEFAULT>' )
|
|
end
|
|
|
|
it { is_expected.to raise_error(Puppet::Error, /chap_password need to be set./) }
|
|
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())
|
|
end
|
|
|
|
it_behaves_like 'cinder::backend::eqlx'
|
|
end
|
|
end
|
|
end
|