ae0c571a52
This conversion is done by Transpec 3.4.0
This patch complements c09a93456e
adding all files inside defines/ dir.
Partial-Bug: #1816857
Change-Id: Ic00f8b38c5b84ff19fc945512f4f13aa11221c8b
54 lines
1.6 KiB
Ruby
54 lines
1.6 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::backend::quobyte' do
|
|
shared_examples 'cinder::backend::quobyte' do
|
|
let(:title) {'myquobyte'}
|
|
|
|
let :params do
|
|
{
|
|
:quobyte_volume_url => 'quobyte://quobyte.cluster.example.com/volume-name',
|
|
:quobyte_qcow2_volumes => false,
|
|
:quobyte_sparsed_volumes => true,
|
|
:backend_availability_zone => 'my_zone',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_cinder_config('myquobyte/volume_driver').with(
|
|
:value => 'cinder.volume.drivers.quobyte.QuobyteDriver'
|
|
)}
|
|
|
|
it { is_expected.to contain_cinder_config('myquobyte/quobyte_volume_url').with(
|
|
:value => 'quobyte://quobyte.cluster.example.com/volume-name'
|
|
)}
|
|
|
|
it {
|
|
is_expected.to contain_cinder_config('myquobyte/quobyte_qcow2_volumes').with_value(false)
|
|
is_expected.to contain_cinder_config('myquobyte/quobyte_sparsed_volumes').with_value(true)
|
|
is_expected.to contain_cinder_config('myquobyte/backend_availability_zone').with_value('my_zone')
|
|
}
|
|
|
|
context 'quobyte backend with cinder type' do
|
|
before do
|
|
params.merge!( :manage_volume_type => true )
|
|
end
|
|
|
|
it { is_expected.to contain_cinder_type('myquobyte').with(
|
|
:ensure => 'present',
|
|
:properties => ['volume_backend_name=myquobyte']
|
|
)}
|
|
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( :os_workers => 8 ))
|
|
end
|
|
|
|
it_behaves_like 'cinder::backend::quobyte'
|
|
end
|
|
end
|
|
end
|