
the url_base option was recently added upstream to resolve issue with SSL termination by haproxy. Closes-Bug: 1638632 Change-Id: Icf45cf2aece398b836c87ddffde5d3056e96dc4d Signed-off-by: Thiago da Silva <thiago@redhat.com>
21 lines
475 B
Ruby
21 lines
475 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::staticweb' do
|
|
|
|
let :facts do
|
|
{}
|
|
end
|
|
|
|
it { is_expected.to contain_swift_proxy_config('filter:staticweb/use').with_value('egg:swift#staticweb') }
|
|
|
|
describe "when overriding default parameters" do
|
|
let :params do
|
|
{
|
|
:url_base => 'https://www.example.com',
|
|
}
|
|
end
|
|
it { is_expected.to contain_swift_proxy_config('filter:staticweb/url_base').with_value('https://www.example.com') }
|
|
end
|
|
|
|
end
|