1123f79809
Glare service is now totally dropped from Glance [1] and now should be configured only with puppet-glare module. [1] https://review.openstack.org/#/c/427535/ Change-Id: I695ad518285a92a80dd7a9d5bebd11e804359224
43 lines
1.3 KiB
Ruby
43 lines
1.3 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_store_datadir').with_value('/var/lib/glance/images/')
|
|
end
|
|
|
|
it 'configures glance-cache.conf' do
|
|
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/'}
|
|
end
|
|
|
|
it 'configures glance-api.conf' do
|
|
is_expected.to contain_glance_api_config('glance_store/filesystem_store_datadir').with_value('/tmp/')
|
|
end
|
|
|
|
it 'configures glance-cache.conf' do
|
|
is_expected.to contain_glance_cache_config('glance_store/filesystem_store_datadir').with_value('/tmp/')
|
|
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
|