58 lines
1.8 KiB
Ruby
58 lines
1.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::quota' do
|
|
let :default_params do
|
|
{
|
|
:quota_volumes => '<SERVICE DEFAULT>',
|
|
:quota_snapshots => '<SERVICE DEFAULT>',
|
|
:quota_gigabytes => '<SERVICE DEFAULT>',
|
|
:quota_driver => '<SERVICE DEFAULT>'
|
|
}
|
|
end
|
|
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
shared_examples 'cinder quota' do
|
|
|
|
let :p do
|
|
default_params.merge(params)
|
|
end
|
|
|
|
it 'contains default values' do
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_volumes').with_value(p[:quota_volumes])
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_snapshots').with_value(p[:quota_snapshots])
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_gigabytes').with_value(p[:quota_gigabytes])
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_driver').with_value(p[:quota_driver])
|
|
end
|
|
|
|
context 'configure quota with parameters' do
|
|
before :each do
|
|
params.merge!({ :quota_volumes => 1000,
|
|
:quota_snapshots => 1000,
|
|
:quota_gigabytes => 100000 })
|
|
end
|
|
|
|
it 'contains overrided values' do
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_volumes').with_value(p[:quota_volumes])
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_snapshots').with_value(p[:quota_snapshots])
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_gigabytes').with_value(p[:quota_gigabytes])
|
|
is_expected.to contain_cinder_config('DEFAULT/quota_driver').with_value(p[:quota_driver])
|
|
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({:os_workers => 8}))
|
|
end
|
|
|
|
it_behaves_like 'cinder quota'
|
|
end
|
|
end
|
|
end
|