
This change updates the test that currently do Debian/RedHat sets of tests to use on_supported_os from rspec-puppet-facts. This improves the over all coverage with the specific CentOS, Debian, RedHat and Ubuntu flavors of facts. Change-Id: Ic7b12cd8972bbde0574806acb2d680f14f1c267f
53 lines
1.6 KiB
Ruby
53 lines
1.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::volume::eqlx' do
|
|
|
|
let :params do {
|
|
:san_ip => '192.168.100.10',
|
|
:san_login => 'grpadmin',
|
|
:san_password => '12345',
|
|
:san_thin_provision => true,
|
|
:eqlx_group_name => 'group-a',
|
|
:eqlx_pool => 'apool',
|
|
:eqlx_use_chap => true,
|
|
:eqlx_chap_login => 'chapadm',
|
|
:eqlx_chap_password => '56789',
|
|
:eqlx_cli_timeout => 31,
|
|
:eqlx_cli_max_retries => 6,
|
|
}
|
|
end
|
|
|
|
let :facts do
|
|
OSDefaults.get_facts({})
|
|
end
|
|
|
|
describe 'eqlx volume driver' do
|
|
it 'configures eqlx volume driver' do
|
|
is_expected.to contain_cinder_config('DEFAULT/volume_driver').with_value('cinder.volume.drivers.eqlx.DellEQLSanISCSIDriver')
|
|
is_expected.to contain_cinder_config('DEFAULT/volume_backend_name').with_value('DEFAULT')
|
|
|
|
params.each_pair do |config,value|
|
|
is_expected.to contain_cinder_config("DEFAULT/#{config}").with_value(value)
|
|
end
|
|
end
|
|
|
|
it 'marks eqlx_chap_password as secret' do
|
|
is_expected.to contain_cinder_config('DEFAULT/eqlx_chap_password').with_secret( true )
|
|
end
|
|
|
|
end
|
|
|
|
describe 'eqlx volume driver with additional configuration' do
|
|
before :each do
|
|
params.merge!({:extra_options => {'eqlx_backend/param1' => {'value' => 'value1'}}})
|
|
end
|
|
|
|
it 'configure eqlx volume with additional configuration' do
|
|
is_expected.to contain_cinder__backend__eqlx('DEFAULT').with({
|
|
:extra_options => {'eqlx_backend/param1' => {'value' => 'value1'}}
|
|
})
|
|
end
|
|
end
|
|
|
|
end
|