1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
require 'spec_helper'
describe 'octavia::audit' do
shared_examples_for 'octavia::audit' do
context 'with default parameters' do
let :params do
{}
end
it 'configures default values' do
is_expected.to contain_octavia_config('audit/enabled').with_value('<SERVICE DEFAULT>')
is_expected.to contain_octavia_config('audit/audit_map_file').with_value('<SERVICE DEFAULT>')
is_expected.to contain_octavia_config('audit/ignore_req_list').with_value('<SERVICE DEFAULT>')
end
end
context 'with specific parameters' do
let :params do
{
:enabled => true,
:audit_map_file => '/etc/octavia/api_audit_map.conf',
:ignore_req_list => 'GET,POST',
}
end
it 'configures specified values' do
is_expected.to contain_octavia_config('audit/enabled').with_value(true)
is_expected.to contain_octavia_config('audit/audit_map_file').with_value('/etc/octavia/api_audit_map.conf')
is_expected.to contain_octavia_config('audit/ignore_req_list').with_value('GET,POST')
end
end
context 'with ignore_req_list in array' do
let :params do
{
:ignore_req_list => ['GET', 'POST'],
}
end
it 'configures ignore_req_list with a comma separated list' do
is_expected.to contain_octavia_config('audit/ignore_req_list').with_value('GET,POST')
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
it_configures 'octavia::audit'
end
end
end
|