eefaf9ca54
Change-Id: I9ab9e1d72a06b2de0d63601795b0902e53f330b6
58 lines
1.4 KiB
Ruby
58 lines
1.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::s3token' do
|
|
|
|
let :facts do
|
|
{
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
}
|
|
end
|
|
|
|
let :pre_condition do
|
|
'class { "concat::setup": }
|
|
concat { "/etc/swift/proxy-server.conf": }'
|
|
end
|
|
|
|
let :fragment_file do
|
|
"/var/lib/puppet/concat/_etc_swift_proxy-server.conf/fragments/28_swift_s3token"
|
|
end
|
|
|
|
it { should contain_class('keystone::python') }
|
|
|
|
describe "when using default parameters" do
|
|
it 'should build the fragment with correct parameters' do
|
|
verify_contents(subject, fragment_file,
|
|
[
|
|
'[filter:s3token]',
|
|
'paste.filter_factory = keystone.middleware.s3_token:filter_factory',
|
|
'auth_port = 35357',
|
|
'auth_protocol = http',
|
|
'auth_host = 127.0.0.1'
|
|
]
|
|
)
|
|
end
|
|
end
|
|
|
|
describe "when overriding default parameters" do
|
|
let :params do
|
|
{
|
|
:auth_port => 4212,
|
|
:auth_protocol => 'https',
|
|
:auth_host => '1.2.3.4'
|
|
}
|
|
end
|
|
it 'should build the fragment with correct parameters' do
|
|
verify_contents(subject, fragment_file,
|
|
[
|
|
'[filter:s3token]',
|
|
'paste.filter_factory = keystone.middleware.s3_token:filter_factory',
|
|
'auth_port = 4212',
|
|
'auth_protocol = https',
|
|
'auth_host = 1.2.3.4'
|
|
]
|
|
)
|
|
end
|
|
end
|
|
|
|
end
|