puppet-glare/spec/classes/glare_backend_file_spec.rb
Denis Egorenko 74fcd918aa Manage backend section for Glare
Since Glare can be configured only through puppet-glare module
it should has ability to configure backend sections in config files.

Change-Id: If4638f4f087ba42e60f47f58a50edb837da2ffe9
2017-04-12 16:44:47 +03:00

34 lines
908 B
Ruby

require 'spec_helper'
describe 'glare::backend::file' do
shared_examples_for 'glare::backend::file' do
it 'configures glare.conf' do
is_expected.to contain_glare_config('glance_store/default_store').with_value('file')
is_expected.to contain_glare_config('glance_store/filesystem_store_datadir').with_value('/var/lib/glare/images/')
end
describe 'when overriding datadir' do
let :params do
{:filesystem_store_datadir => '/tmp/'}
end
it 'configures glare.conf' do
is_expected.to contain_glare_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 'glare::backend::file'
end
end
end