
The glance-cache.conf is used by the glance-cache-prefetcher command which requires access to backend store. Thus all store options should be added to the glance-cache.conf file so that backend store can be loaded properly. Closes-Bug: #2034893 Change-Id: I8f0b2be8b138d267364f20ff81876902b225d29e
51 lines
1.9 KiB
Ruby
51 lines
1.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'glance::backend::file' do
|
|
|
|
shared_examples_for 'glance::backend::file' do
|
|
it 'configures glance-api.conf' do
|
|
is_expected.to contain_glance_api_config('glance_store/default_store').with_value('file')
|
|
is_expected.to contain_glance_api_config('glance_store/filesystem_thin_provisioning').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_glance_api_config('glance_store/filesystem_store_datadir').with_value('/var/lib/glance/images/')
|
|
end
|
|
|
|
it 'configures glance-cache.conf' do
|
|
is_expected.to contain_glance_cache_config('glance_store/default_store').with_value('file')
|
|
is_expected.to contain_glance_cache_config('glance_store/filesystem_thin_provisioning').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_glance_cache_config('glance_store/filesystem_store_datadir').with_value('/var/lib/glance/images/')
|
|
end
|
|
|
|
describe 'when overriding datadir' do
|
|
let :params do
|
|
{
|
|
:filesystem_store_datadir => '/tmp/',
|
|
:filesystem_thin_provisioning => 'true',
|
|
}
|
|
end
|
|
|
|
it 'configures glance-api.conf' do
|
|
is_expected.to contain_glance_api_config('glance_store/filesystem_store_datadir').with_value('/tmp/')
|
|
is_expected.to contain_glance_api_config('glance_store/filesystem_thin_provisioning').with_value('true')
|
|
end
|
|
|
|
it 'configures glance-cache.conf' do
|
|
is_expected.to contain_glance_cache_config('glance_store/filesystem_store_datadir').with_value('/tmp/')
|
|
is_expected.to contain_glance_cache_config('glance_store/filesystem_thin_provisioning').with_value('true')
|
|
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_configures 'glance::backend::file'
|
|
end
|
|
end
|
|
end
|