
Swift has now merged the swift3 middleware into its own source tree and renamed it to s3api. Use of auth_host, auth_port and auth_protocol configuration options was deprecated in the Newton release in favor of auth_uri Related-Change-Id: I9c61d48e673d513cb4c5cf0c9f8b7d1b894729eb Change-Id: I7f085b0c05f2b8c50e7f94ca1c7f4670660da688 Signed-off-by: Thiago da Silva <thiago@redhat.com>
16 lines
400 B
Ruby
16 lines
400 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::s3api' do
|
|
|
|
let :facts do
|
|
OSDefaults.get_facts({
|
|
:osfamily => 'Debian',
|
|
:operatingsystem => 'Ubuntu',
|
|
})
|
|
end
|
|
|
|
it { is_expected.to contain_swift_proxy_config('filter:s3api/use').with_value('egg:swift#s3api') }
|
|
it { is_expected.to contain_swift_proxy_config('filter:s3api/auth_pipeline_check').with_value('false') }
|
|
|
|
end
|