
This patch aims to add defines related to oslo.middleware. oslo.middleware has three sections by now: - oslo_middleware - cors Co-Authored-By: Alex Schultz <aschultz@mirantis.com> Change-Id: Ib9e2936c589ed6d35fe93f962c6e154b56fa2122
40 lines
952 B
Ruby
40 lines
952 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'oslo::middleware' do
|
|
|
|
let (:title) { 'keystone_config' }
|
|
|
|
shared_examples 'shared examples' do
|
|
|
|
context 'with default parameters' do
|
|
it 'configure oslo_middleware default params' do
|
|
is_expected.to contain_keystone_config('oslo_middleware/max_request_body_size').with_value('<SERVICE DEFAULT>')
|
|
end
|
|
|
|
end
|
|
|
|
context 'with overridden parameters' do
|
|
let :params do
|
|
{ :max_request_body_size => 114600,
|
|
}
|
|
end
|
|
it 'configure oslo_middleware with overriden values' do
|
|
is_expected.to contain_keystone_config('oslo_middleware/max_request_body_size').with_value(114600)
|
|
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
|