
Switch to $::os_service_default all params in logging and db. Changes: logging.pp, db.pp and tests. Related-bug: #1515273 Change-Id: Idf7bc36d321328391a1b361add965c53627124a4
36 lines
1.1 KiB
Ruby
36 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::ganesha' do
|
|
|
|
shared_examples_for 'manila NFS Ganesha options for share drivers' do
|
|
let :params do
|
|
{
|
|
:ganesha_config_dir => '/etc/ganesha',
|
|
:ganesha_config_path => '/etc/ganesha/ganesha.conf',
|
|
:ganesha_service_name => 'ganesha.nfsd',
|
|
:ganesha_db_path => '$state_path/manila-ganesha.db',
|
|
:ganesha_export_dir => '/etc/ganesha/export.d',
|
|
:ganesha_export_template_dir => '/etc/manila/ganesha-export-templ.d',
|
|
}
|
|
end
|
|
|
|
it 'Adds NFS Ganesha options to the share drivers' do
|
|
params.each_pair do |config,value|
|
|
is_expected.to contain_manila_config("DEFAULT/#{config}").with_value(value)
|
|
end
|
|
end
|
|
|
|
it { is_expected.to contain_package('nfs-ganesha').with(
|
|
:name => 'nfs-ganesha',
|
|
:ensure => 'present',
|
|
) }
|
|
|
|
context 'on Red Hat platforms' do
|
|
let :facts do
|
|
@default_facts.merge({:osfamily => 'RedHat'})
|
|
end
|
|
it_configures 'manila NFS Ganesha options for share drivers'
|
|
end
|
|
end
|
|
end
|