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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
require 'spec_helper'
describe 'oslo::service::ssl' do
let (:title) { 'keystone_config' }
shared_examples 'oslo::service::ssl' do
context 'with default parameters' do
it 'configures ssl parameters' do
is_expected.to contain_keystone_config('ssl/ca_file').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('ssl/cert_file').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('ssl/ciphers').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('ssl/key_file').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('ssl/version').with_value('<SERVICE DEFAULT>')
end
end
context 'with overridden parameters' do
let :params do
{
:ca_file => '/path/to/ca/file',
:cert_file => '/path/to/cert/file',
:ciphers => 'HIGH:!RC4:!MD5:!aNULL:!eNULL:!EXP:!LOW:!MEDIUM',
:key_file => '/path/to/key/file',
:version => 'TLSv1',
}
end
it 'configures ssl parameters' do
is_expected.to contain_keystone_config('ssl/ca_file').with_value('/path/to/ca/file')
is_expected.to contain_keystone_config('ssl/cert_file').with_value('/path/to/cert/file')
is_expected.to contain_keystone_config('ssl/ciphers').with_value('HIGH:!RC4:!MD5:!aNULL:!eNULL:!EXP:!LOW:!MEDIUM')
is_expected.to contain_keystone_config('ssl/key_file').with_value('/path/to/key/file')
is_expected.to contain_keystone_config('ssl/version').with_value('TLSv1')
end
end
context 'with only cert_file' do
let :params do
{
:cert_file => '/path/to/cert/file',
}
end
it 'fails because of incomplete input' do
should raise_error(Puppet::Error)
end
end
context 'with only key_file' do
let :params do
{
:key_file => '/path/to/key/file',
}
end
it 'fails because of incomplete input' do
should raise_error(Puppet::Error)
end
end
context 'with list values' do
let :params do
{
:ciphers => ['HIGH', '!RC4', '!MD5', '!aNULL', '!eNULL', '!EXP', '!LOW', '!MEDIUM'],
}
end
it 'configures ssl parameters' do
is_expected.to contain_keystone_config('ssl/ciphers').with_value('HIGH:!RC4:!MD5:!aNULL:!eNULL:!EXP:!LOW:!MEDIUM')
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_behaves_like 'oslo::service::ssl'
end
end
end
|