
This is follow-up of 64543a028f
.
These options are defined as ListOpt, so array values should be
rendered as a comma-seprated strings.
Change-Id: Id763f60274d965cf697873b1649b7de27094d842
43 lines
1.1 KiB
Ruby
43 lines
1.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'mistral::action_providers' do
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
shared_examples 'mistral::action_providers' do
|
|
context 'with defaults' do
|
|
it {
|
|
is_expected.to contain_mistral_config('action_providers/allowlist').with_value('<SERVICE DEFAULT>')
|
|
is_expected.to contain_mistral_config('action_providers/denylist').with_value('<SERVICE DEFAULT>')
|
|
}
|
|
end
|
|
|
|
context 'with parameters' do
|
|
before do
|
|
params.merge!({
|
|
:allowlist => ['allow0', 'allow1'],
|
|
:denylist => ['deny0', 'deny1'],
|
|
})
|
|
end
|
|
|
|
it {
|
|
is_expected.to contain_mistral_config('action_providers/allowlist').with_value('allow0,allow1')
|
|
is_expected.to contain_mistral_config('action_providers/denylist').with_value('deny0,deny1')
|
|
}
|
|
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
|
|
|
|
it_behaves_like 'mistral::action_providers'
|
|
end
|
|
end
|
|
end
|