151859634a
This patch introduces new parameters in manila::quota class so that operators can set quota parameters for share replicas. Also, this patch removes re-defining default value in quota class, and make it use the default value defined in Manila itself. Change-Id: I0b51037b19e101a3f1168e2999c26ffe871ec4d4
86 lines
3.5 KiB
Ruby
86 lines
3.5 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::quota' do
|
|
|
|
shared_examples_for 'manila::quota' do
|
|
context 'with default parameters' do
|
|
it 'contains default values' do
|
|
is_expected.to contain_manila_config('DEFAULT/quota_shares').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_snapshots').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_gigabytes').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_driver').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_snapshot_gigabytes').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_share_networks').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_share_replicas').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_replica_gigabytes').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/reservation_expire').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/until_refresh').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_manila_config('DEFAULT/max_age').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
end
|
|
end
|
|
|
|
context 'with overridden parameters' do
|
|
let :params do
|
|
{ :quota_shares => 1000,
|
|
:quota_snapshots => 1000,
|
|
:quota_gigabytes => 100000,
|
|
:quota_driver => 'manila.quota.DbQuotaDriver',
|
|
:quota_snapshot_gigabytes => 10000,
|
|
:quota_share_networks => 100,
|
|
:quota_share_replicas => 10,
|
|
:quota_replica_gigabytes => 100,
|
|
:reservation_expire => 864000,
|
|
:until_refresh => 10,
|
|
:max_age => 10,}
|
|
end
|
|
it 'contains overrided values' do
|
|
is_expected.to contain_manila_config('DEFAULT/quota_shares').with(
|
|
:value => 1000)
|
|
is_expected.to contain_manila_config('DEFAULT/quota_snapshots').with(
|
|
:value => 1000)
|
|
is_expected.to contain_manila_config('DEFAULT/quota_gigabytes').with(
|
|
:value => 100000)
|
|
is_expected.to contain_manila_config('DEFAULT/quota_driver').with(
|
|
:value => 'manila.quota.DbQuotaDriver')
|
|
is_expected.to contain_manila_config('DEFAULT/quota_snapshot_gigabytes').with(
|
|
:value => 10000)
|
|
is_expected.to contain_manila_config('DEFAULT/quota_share_networks').with(
|
|
:value => 100)
|
|
is_expected.to contain_manila_config('DEFAULT/quota_share_replicas').with(
|
|
:value => 10)
|
|
is_expected.to contain_manila_config('DEFAULT/quota_replica_gigabytes').with(
|
|
:value => 100)
|
|
is_expected.to contain_manila_config('DEFAULT/reservation_expire').with(
|
|
:value => 864000)
|
|
is_expected.to contain_manila_config('DEFAULT/until_refresh').with(
|
|
:value => 10)
|
|
is_expected.to contain_manila_config('DEFAULT/max_age').with(
|
|
:value => 10)
|
|
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({ :fqdn => 'some.host.tld'}))
|
|
end
|
|
it_behaves_like 'manila::quota'
|
|
end
|
|
end
|
|
|
|
end
|