puppet-manila/spec/classes/manila_data_spec.rb
Takashi Kajinami c6e82df318 Replace legacy facts and use fact hash
... because the latest lint no longer allows usage of legacy facts and
top scope fact.

Change-Id: I7de4bd06c59b921c8774accf462db1cf434d5cf6
2023-03-02 11:45:41 +09:00

100 lines
2.6 KiB
Ruby

require 'spec_helper'
describe 'manila::data' do
shared_examples_for 'manila::data' do
context 'with default parameters' do
it { is_expected.to contain_class('manila::params') }
it { is_expected.to contain_manila_config('DEFAULT/mount_tmp_location').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_manila_config('DEFAULT/check_hash').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_service('manila-data').with(
:name => platform_params[:data_service],
:enable => true,
:ensure => 'running',
:hasstatus => true,
:tag => 'manila-service',
) }
end
context 'with parameters' do
let :params do
{
:mount_tmp_location => '/tmp/',
:check_hash => false,
}
end
it { is_expected.to contain_manila_config('DEFAULT/mount_tmp_location').with_value('/tmp/') }
it { is_expected.to contain_manila_config('DEFAULT/check_hash').with_value(false) }
end
context 'with manage_service false' do
let :params do
{
:manage_service => false
}
end
it 'should not configure the service' do
is_expected.to_not contain_service('manila-data')
end
end
end
shared_examples_for 'manila::data on Debian' do
context 'with default parameters' do
it { is_expected.to contain_package('manila-data').with(
:name => 'manila-data',
:ensure => 'present',
:tag => ['openstack', 'manila-package'],
) }
end
context 'with parameters' do
let :params do
{
:package_ensure => 'installed'
}
end
it { is_expected.to contain_package('manila-data').with(
:name => 'manila-data',
:ensure => 'installed',
:tag => ['openstack', 'manila-package'],
) }
end
end
shared_examples_for 'manila::data on RedHat' do
context 'with default parameters' do
it { is_expected.to_not contain_package('manila-data') }
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
let :platform_params do
case facts[:os]['family']
when 'Debian'
{ :data_service => 'manila-data' }
when 'RedHat'
{ :data_service => 'openstack-manila-data' }
end
end
it_behaves_like 'manila::data'
it_behaves_like "manila::data on #{facts[:os]['family']}"
end
end
end