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
|
require 'spec_helper'
describe 'oslo::cors' do
let (:title) { 'keystone_config' }
shared_examples 'shared examples' do
context 'with default parameters' do
it 'configure cors default params' do
is_expected.to contain_keystone_config('cors/allowed_origin').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('cors/allow_credentials').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('cors/expose_headers').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('cors/max_age').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('cors/allow_methods').with_value('<SERVICE DEFAULT>')
is_expected.to contain_keystone_config('cors/allow_headers').with_value('<SERVICE DEFAULT>')
end
end
context 'with parameters' do
let (:params) do
{
:allowed_origin => 'https://horizon.example.com,https://horizon.example2.com',
:allow_credentials => true,
:expose_headers => 'HeaderOne,HeaderTwo',
:max_age => 3600,
:allow_methods => 'GET,HEAD',
:allow_headers => 'HeaderThree,HeaderFour',
}
end
it 'configure cors params' do
is_expected.to contain_keystone_config('cors/allowed_origin').with_value('https://horizon.example.com,https://horizon.example2.com')
is_expected.to contain_keystone_config('cors/allow_credentials').with_value(true)
is_expected.to contain_keystone_config('cors/expose_headers').with_value('HeaderOne,HeaderTwo')
is_expected.to contain_keystone_config('cors/max_age').with_value(3600)
is_expected.to contain_keystone_config('cors/allow_methods').with_value('GET,HEAD')
is_expected.to contain_keystone_config('cors/allow_headers').with_value('HeaderThree,HeaderFour')
end
end
context 'with parameters in array' do
let (:params) do
{
:allowed_origin => ['https://horizon.example.com', 'https://horizon.example2.com'],
:expose_headers => ['HeaderOne', 'HeaderTwo'],
:allow_methods => ['GET', 'HEAD'],
:allow_headers => ['HeaderThree', 'HeaderFour'],
}
end
it 'configure cors params' do
is_expected.to contain_keystone_config('cors/allowed_origin').with_value('https://horizon.example.com,https://horizon.example2.com')
is_expected.to contain_keystone_config('cors/expose_headers').with_value('HeaderOne,HeaderTwo')
is_expected.to contain_keystone_config('cors/allow_methods').with_value('GET,HEAD')
is_expected.to contain_keystone_config('cors/allow_headers').with_value('HeaderThree,HeaderFour')
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
include_examples 'shared examples'
end
end
end
|