
The swift pipeline is commonly used to plug capabilities in. This pipeline should be implemented in a way that is easier to extend as people desire additional pipelines. This commit implements classes that can be used to configure the following pipelines: - proxy::cache - proxy::healthcheck - proxy::keystone - proxy::swauth It also reimplements swift::proxy to utilize those pipelines for configuration.
48 lines
1.3 KiB
Ruby
48 lines
1.3 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::keystone' do
|
|
|
|
let :fragment_file do
|
|
'/var/lib/puppet/concat/_etc_swift_proxy-server.conf/fragments/79_swift_keystone'
|
|
end
|
|
|
|
let :pre_condition do
|
|
'
|
|
include concat::setup
|
|
concat { "/etc/swift/proxy-server.conf": }
|
|
'
|
|
end
|
|
|
|
it { should contain_file(fragment_file).with_content(/[filter:keystone]/) }
|
|
|
|
it { should contain_file(fragment_file).with_content(/paste.filter_factory = keystone.middleware.swift_auth:filter_factory/) }
|
|
|
|
describe 'with defaults' do
|
|
|
|
it { should contain_file(fragment_file).with_content(/operator_roles = admin SwiftOperator/) }
|
|
it { should contain_file(fragment_file).with_content(/is_admin = true/) }
|
|
it { should contain_file(fragment_file).with_content(/cache = swift.cache/) }
|
|
|
|
it { should contain_keystone__client__authtoken('/etc/swift/proxy-server.conf') }
|
|
|
|
end
|
|
|
|
describe 'with parameter overrides' do
|
|
|
|
let :params do
|
|
{
|
|
:operator_roles => 'foo',
|
|
:is_admin => 'false',
|
|
:cache => 'somecache'
|
|
}
|
|
|
|
it { should contain_file(fragment_file).with_content(/operator_roles = foo/) }
|
|
it { should contain_file(fragment_file).with_content(/is_admin = false/) }
|
|
it { should contain_file(fragment_file).with_content(/cache = somecache/) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|