Files
puppet-glance/spec/classes/glance_os_brick_spec.rb
Takashi Kajinami cf14507e93 Support new os-brick options
Add support for the new options added in os-brick 6.9.0 .

Note:
Release note is omitted because the os_brick class was added during
this cycle.

Depends-on: https://review.opendev.org/930364
Change-Id: Ifac1c6479fd43c33452a35cbeeba8ee8b72a884d
2024-09-25 02:24:55 +09:00

58 lines
1.7 KiB
Ruby

require 'spec_helper'
describe 'glance::os_brick' do
shared_examples 'glance::os_brick' do
context 'with defaults' do
it 'configures the default values' do
is_expected.to contain_oslo__os_brick('glance_api_config').with(
:lock_path => '<SERVICE DEFAULT>',
:wait_mpath_device_attempts => '<SERVICE DEFAULT>',
:wait_mpath_device_interval => '<SERVICE DEFAULT>',
)
is_expected.to contain_oslo__os_brick('glance_cache_config').with(
:lock_path => '<SERVICE DEFAULT>',
:wait_mpath_device_attempts => '<SERVICE DEFAULT>',
:wait_mpath_device_interval => '<SERVICE DEFAULT>',
)
end
end
context 'with parameters overridden' do
let :params do
{
:lock_path => '/var/lib/openstack/lock',
:wait_mpath_device_attempts => 4,
:wait_mpath_device_interval => 1,
}
end
it 'configures the overridden values' do
is_expected.to contain_oslo__os_brick('glance_api_config').with(
:lock_path => '/var/lib/openstack/lock',
:wait_mpath_device_attempts => 4,
:wait_mpath_device_interval => 1,
)
is_expected.to contain_oslo__os_brick('glance_cache_config').with(
:lock_path => '/var/lib/openstack/lock',
:wait_mpath_device_attempts => 4,
:wait_mpath_device_interval => 1,
)
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
include_examples 'glance::os_brick'
end
end
end