560b795d9a
Change-Id: I6fa69c69b7bcd165852fa993c3915b3d082747a5
34 lines
755 B
Ruby
34 lines
755 B
Ruby
#
|
|
# Unit tests for gnocchi::storage::file
|
|
#
|
|
require 'spec_helper'
|
|
|
|
describe 'gnocchi::storage::file' do
|
|
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
shared_examples 'gnocchi storage file' do
|
|
|
|
context 'with default parameters' do
|
|
it 'configures gnocchi-api with default parameters' do
|
|
is_expected.to contain_gnocchi_config('storage/driver').with_value('file')
|
|
is_expected.to contain_gnocchi_config('storage/file_basepath').with_value('/var/lib/gnocchi')
|
|
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_behaves_like 'gnocchi storage file'
|
|
end
|
|
end
|
|
end
|