
Based on the HP 3par documentation here: http://docs.openstack.org/juno/config-reference/content/enable-hp-3par-fibre-channel.html Change-Id: Ia94634c6f6d279773c3e42dfaca2bd62e669bc76
33 lines
1.3 KiB
Ruby
33 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::volume::hp3par_iscsi' do
|
|
let :req_params do
|
|
{
|
|
:hp3par_api_url => 'https://172.0.0.2:8080/api/v1',
|
|
:hp3par_username => '3paradm',
|
|
:hp3par_password => 'password',
|
|
:hp3par_iscsi_ips => '172.0.0.3',
|
|
:san_ip => '172.0.0.2',
|
|
:san_login => '3paradm',
|
|
:san_password => 'password',
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
req_params
|
|
end
|
|
|
|
describe 'hp3par_iscsi volume driver' do
|
|
it 'configure hp3par_iscsi volume driver' do
|
|
should contain_cinder_config('DEFAULT/volume_driver').with_value('cinder.volume.drivers.san.hp.hp_3par_iscsi.HP3PARISCSIDriver')
|
|
should contain_cinder_config('DEFAULT/hp3par_api_url').with_value('https://172.0.0.2:8080/api/v1')
|
|
should contain_cinder_config('DEFAULT/hp3par_username').with_value('3paradm')
|
|
should contain_cinder_config('DEFAULT/hp3par_password').with_value('password')
|
|
should contain_cinder_config('DEFAULT/hp3par_iscsi_ips').with_value('172.0.0.3')
|
|
should contain_cinder_config('DEFAULT/san_ip').with_value('172.0.0.2')
|
|
should contain_cinder_config('DEFAULT/san_login').with_value('3paradm')
|
|
should contain_cinder_config('DEFAULT/san_password').with_value('password')
|
|
end
|
|
end
|
|
end
|