
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.
18 lines
470 B
Ruby
18 lines
470 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::healthcheck' do
|
|
|
|
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/25_swift_healthcheck"
|
|
end
|
|
|
|
it { should contain_file(fragment_file).with_content(/[filter:healthcheck]/) }
|
|
it { should contain_file(fragment_file).with_content(/use = egg:swift#healthcheck/) }
|
|
|
|
end
|