2012-06-04 13:18:12 -07:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'swift::proxy::s3token' do
|
|
|
|
|
|
|
|
let :facts do
|
|
|
|
{
|
|
|
|
:concat_basedir => '/var/lib/puppet/concat'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
let :pre_condition do
|
2013-10-29 22:56:31 -04:00
|
|
|
'class { "concat::setup": }
|
|
|
|
concat { "/etc/swift/proxy-server.conf": }'
|
2012-06-04 13:18:12 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
let :fragment_file do
|
|
|
|
"/var/lib/puppet/concat/_etc_swift_proxy-server.conf/fragments/28_swift_s3token"
|
|
|
|
end
|
|
|
|
|
2014-02-05 22:28:54 -05:00
|
|
|
it { should contain_class('keystone::python') }
|
2012-06-04 13:18:12 -07:00
|
|
|
|
|
|
|
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',
|
2012-11-15 11:46:05 +00:00
|
|
|
'auth_port = 35357',
|
2012-06-04 13:18:12 -07:00
|
|
|
'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
|