
This code moves all deps to an external class so that Cinder can be installed with mechanisms besides packages (like venv or docker). This also cleans-up the dependency tree by removing false or confusing dependencies. Co-Author: Craig Delatte <craig.delatte@twcable.com> Change-Id: I55a62f6173fe463fb8fb65df6729c9f509a0fb04
76 lines
2.5 KiB
Ruby
76 lines
2.5 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::backend::glusterfs' do
|
|
|
|
shared_examples_for 'glusterfs volume driver' do
|
|
let(:title) {'mygluster'}
|
|
|
|
let :facts do
|
|
OSDefaults.get_facts({})
|
|
end
|
|
|
|
let :params do
|
|
{
|
|
:glusterfs_shares => ['10.10.10.10:/volumes', '10.10.10.11:/volumes'],
|
|
:glusterfs_shares_config => '/etc/cinder/other_shares.conf',
|
|
:glusterfs_sparsed_volumes => true,
|
|
:glusterfs_mount_point_base => '/cinder_mount_point',
|
|
}
|
|
end
|
|
|
|
it 'configures glusterfs volume driver' do
|
|
is_expected.to contain_cinder_config('mygluster/volume_driver').with_value(
|
|
'cinder.volume.drivers.glusterfs.GlusterfsDriver')
|
|
is_expected.to contain_cinder_config('mygluster/glusterfs_backup_mount_point').with_value(
|
|
'<SERVICE DEFAULT>')
|
|
is_expected.to contain_cinder_config('mygluster/glusterfs_backup_share').with_value(
|
|
'<SERVICE DEFAULT>')
|
|
is_expected.to contain_cinder_config('mygluster/glusterfs_shares_config').with_value(
|
|
'/etc/cinder/other_shares.conf')
|
|
is_expected.to contain_cinder_config('mygluster/glusterfs_sparsed_volumes').with_value(
|
|
true)
|
|
is_expected.to contain_cinder_config('mygluster/glusterfs_mount_point_base').with_value(
|
|
'/cinder_mount_point')
|
|
is_expected.to contain_file('/etc/cinder/other_shares.conf').with(
|
|
:content => "10.10.10.10:/volumes\n10.10.10.11:/volumes\n",
|
|
:require => 'Anchor[cinder::install::end]',
|
|
:notify => 'Anchor[cinder::service::begin]'
|
|
)
|
|
end
|
|
|
|
context 'glusterfs backend with additional configuration' do
|
|
before do
|
|
params.merge!({:extra_options => {'mygluster/param1' => { 'value' => 'value1' }}})
|
|
end
|
|
|
|
it 'configure glusterfs backend with additional configuration' do
|
|
is_expected.to contain_cinder_config('mygluster/param1').with({
|
|
:value => 'value1'
|
|
})
|
|
end
|
|
|
|
end
|
|
|
|
context 'glusterfs backend with cinder type' do
|
|
before do
|
|
params.merge!({:manage_volume_type => true})
|
|
end
|
|
it 'should create type with properties' do
|
|
should contain_cinder_type('mygluster').with(:ensure => :present, :properties => ['volume_backend_name=mygluster'])
|
|
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({:processorcount => 8}))
|
|
end
|
|
|
|
it_configures 'glusterfs volume driver'
|
|
end
|
|
end
|
|
end
|