2012-02-26 20:51:17 -08:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'swift::proxy' do
|
|
|
|
|
|
|
|
describe 'without memcached being included' do
|
|
|
|
it 'should raise an error' do
|
2015-03-23 18:23:07 +01:00
|
|
|
expect { catalogue }.to raise_error(Puppet::Error)
|
2012-02-26 20:51:17 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# set os so memcache will not fail
|
|
|
|
let :facts do
|
|
|
|
{:operatingsystem => 'Ubuntu',
|
2012-03-20 09:30:58 -07:00
|
|
|
:osfamily => 'Debian',
|
2014-08-12 16:59:04 +02:00
|
|
|
:processorcount => 1
|
2012-02-26 20:51:17 -08:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-04-22 12:11:27 -07:00
|
|
|
let :fragment_path do
|
|
|
|
"/var/lib/puppet/concat/_etc_swift_proxy-server.conf/fragments/00_swift_proxy"
|
2012-02-26 20:51:17 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with proper dependencies' do
|
|
|
|
|
|
|
|
let :pre_condition do
|
|
|
|
"class { memcached: max_memory => 1}
|
2013-05-27 15:56:11 +08:00
|
|
|
class { swift: swift_hash_suffix => string }"
|
2012-02-26 20:51:17 -08:00
|
|
|
end
|
|
|
|
|
2012-03-02 20:07:56 -08:00
|
|
|
describe 'without the proxy local network ip address being specified' do
|
2015-03-23 18:23:07 +01:00
|
|
|
it_raises 'a Puppet::Error', /Must pass proxy_local_net_ip/
|
2012-03-02 20:07:56 -08:00
|
|
|
end
|
2012-02-26 20:51:17 -08:00
|
|
|
|
2012-03-02 20:07:56 -08:00
|
|
|
describe 'when proxy_local_net_ip is set' do
|
|
|
|
|
|
|
|
let :params do
|
|
|
|
{:proxy_local_net_ip => '127.0.0.1'}
|
2012-02-26 20:51:17 -08:00
|
|
|
end
|
|
|
|
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_service('swift-proxy').with(
|
2012-02-26 20:51:17 -08:00
|
|
|
{:ensure => 'running',
|
|
|
|
:provider => 'upstart',
|
|
|
|
:enable => true,
|
2013-04-19 10:03:01 -04:00
|
|
|
:hasstatus => true,
|
2012-04-22 12:11:27 -07:00
|
|
|
:subscribe => 'Concat[/etc/swift/proxy-server.conf]'
|
2012-02-26 20:51:17 -08:00
|
|
|
}
|
|
|
|
)}
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_file('/etc/swift/proxy-server.conf').with(
|
2012-02-26 20:51:17 -08:00
|
|
|
{:ensure => 'present',
|
|
|
|
:owner => 'swift',
|
|
|
|
:group => 'swift',
|
|
|
|
:mode => '0660',
|
|
|
|
}
|
|
|
|
)}
|
2012-03-02 20:07:56 -08:00
|
|
|
|
2012-04-22 12:11:27 -07:00
|
|
|
it 'should build the header file with all of the default contents' do
|
2015-03-23 18:23:07 +01:00
|
|
|
verify_contents(catalogue, fragment_path,
|
2012-04-22 12:11:27 -07:00
|
|
|
[
|
|
|
|
'[DEFAULT]',
|
|
|
|
'bind_port = 8080',
|
|
|
|
"workers = #{facts[:processorcount]}",
|
|
|
|
'user = swift',
|
2013-06-13 18:57:27 +08:00
|
|
|
'log_name = swift',
|
2013-01-11 14:12:04 -08:00
|
|
|
'log_level = INFO',
|
2013-06-13 18:57:27 +08:00
|
|
|
'log_headers = False',
|
|
|
|
'log_address = /dev/log',
|
2012-04-22 12:11:27 -07:00
|
|
|
'[pipeline:main]',
|
|
|
|
'pipeline = healthcheck cache tempauth proxy-server',
|
|
|
|
'[app:proxy-server]',
|
|
|
|
'use = egg:swift#proxy',
|
2013-06-13 18:57:27 +08:00
|
|
|
'set log_name = proxy-server',
|
|
|
|
'set log_facility = LOG_LOCAL1',
|
|
|
|
'set log_level = INFO',
|
|
|
|
'set log_address = /dev/log',
|
|
|
|
'log_handoffs = true',
|
2012-04-22 12:11:27 -07:00
|
|
|
'allow_account_management = true',
|
|
|
|
'account_autocreate = true'
|
|
|
|
]
|
2012-03-02 20:07:56 -08:00
|
|
|
)
|
2012-04-22 12:11:27 -07:00
|
|
|
end
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_concat__fragment('swift_proxy').with_before(
|
2012-03-02 20:07:56 -08:00
|
|
|
[
|
2012-04-22 12:11:27 -07:00
|
|
|
'Class[Swift::Proxy::Healthcheck]',
|
|
|
|
'Class[Swift::Proxy::Cache]',
|
|
|
|
'Class[Swift::Proxy::Tempauth]'
|
2012-03-02 20:07:56 -08:00
|
|
|
]
|
2012-04-22 12:11:27 -07:00
|
|
|
)}
|
2012-03-02 20:07:56 -08:00
|
|
|
|
|
|
|
describe 'when more parameters are set' do
|
|
|
|
let :params do
|
|
|
|
{
|
2014-04-08 12:54:57 -04:00
|
|
|
:proxy_local_net_ip => '10.0.0.2',
|
|
|
|
:port => '80',
|
|
|
|
:workers => 3,
|
|
|
|
:pipeline => ['swauth', 'proxy-server'],
|
|
|
|
:allow_account_management => false,
|
|
|
|
:account_autocreate => false,
|
|
|
|
:log_level => 'DEBUG',
|
2014-10-14 17:00:32 +03:00
|
|
|
:log_name => 'swift-proxy-server',
|
2014-04-08 12:54:57 -04:00
|
|
|
:read_affinity => 'r1z1=100, r1=200',
|
|
|
|
:write_affinity => 'r1',
|
|
|
|
:write_affinity_node_count => '2 * replicas',
|
2015-03-25 13:53:50 -04:00
|
|
|
:node_timeout => '20',
|
2012-03-02 20:07:56 -08:00
|
|
|
}
|
|
|
|
end
|
2012-04-22 12:11:27 -07:00
|
|
|
it 'should build the header file with provided values' do
|
2015-03-23 18:23:07 +01:00
|
|
|
verify_contents(catalogue, fragment_path,
|
2012-03-02 20:07:56 -08:00
|
|
|
[
|
2012-04-22 12:11:27 -07:00
|
|
|
'[DEFAULT]',
|
2012-03-02 20:07:56 -08:00
|
|
|
'bind_port = 80',
|
|
|
|
"workers = 3",
|
2012-04-22 12:11:27 -07:00
|
|
|
'user = swift',
|
2013-01-11 14:12:04 -08:00
|
|
|
'log_level = DEBUG',
|
2012-04-22 12:11:27 -07:00
|
|
|
'[pipeline:main]',
|
|
|
|
'pipeline = swauth proxy-server',
|
|
|
|
'[app:proxy-server]',
|
|
|
|
'use = egg:swift#proxy',
|
2014-10-14 17:00:32 +03:00
|
|
|
'set log_name = swift-proxy-server',
|
2012-04-22 12:11:27 -07:00
|
|
|
'allow_account_management = false',
|
2014-04-08 12:54:57 -04:00
|
|
|
'account_autocreate = false',
|
|
|
|
'read_affinity = r1z1=100, r1=200',
|
|
|
|
'write_affinity = r1',
|
2015-03-25 13:53:50 -04:00
|
|
|
'write_affinity_node_count = 2 * replicas',
|
|
|
|
'node_timeout = 20'
|
2012-03-02 20:07:56 -08:00
|
|
|
]
|
|
|
|
)
|
|
|
|
end
|
2015-03-23 18:23:07 +01:00
|
|
|
it { is_expected.to contain_concat__fragment('swift_proxy').with_before(
|
2012-04-22 12:11:27 -07:00
|
|
|
'Class[Swift::Proxy::Swauth]'
|
|
|
|
)}
|
2012-03-02 20:07:56 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when supplying bad values for parameters' do
|
|
|
|
[:account_autocreate, :allow_account_management].each do |param|
|
|
|
|
it "should fail when #{param} is not passed a boolean" do
|
|
|
|
params[param] = 'false'
|
2015-03-23 18:23:07 +01:00
|
|
|
expect { catalogue }.to raise_error(Puppet::Error, /is not a boolean/)
|
2012-03-02 20:07:56 -08:00
|
|
|
end
|
|
|
|
end
|
2014-04-08 12:54:57 -04:00
|
|
|
|
|
|
|
let :params do
|
|
|
|
{
|
|
|
|
:proxy_local_net_ip => '127.0.0.1',
|
|
|
|
:write_affinity_node_count => '2 * replicas'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should fail if write_affinity_node_count is used without write_affinity" do
|
2015-03-23 18:23:07 +01:00
|
|
|
expect { catalogue }.to raise_error(Puppet::Error, /write_affinity_node_count requires write_affinity/)
|
2014-04-08 12:54:57 -04:00
|
|
|
end
|
2012-03-02 20:07:56 -08:00
|
|
|
end
|
2012-02-26 20:51:17 -08:00
|
|
|
end
|
2014-09-22 15:50:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'swift-proxy' do
|
|
|
|
let :params do
|
|
|
|
{ :proxy_local_net_ip => '127.0.0.1' }
|
|
|
|
end
|
|
|
|
|
|
|
|
[{ :enabled => true, :manage_service => true },
|
|
|
|
{ :enabled => false, :manage_service => true }].each do |param_hash|
|
2015-03-23 18:23:07 +01:00
|
|
|
context "when service is_expected.to be #{param_hash[:enabled] ? 'enabled' : 'disabled'}" do
|
2014-09-22 15:50:38 +02:00
|
|
|
before do
|
|
|
|
params.merge!(param_hash)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'configures swift-proxy service' do
|
2015-03-23 18:23:07 +01:00
|
|
|
is_expected.to contain_service('swift-proxy').with(
|
2014-09-22 15:50:38 +02:00
|
|
|
:ensure => (param_hash[:manage_service] && param_hash[:enabled]) ? 'running' : 'stopped',
|
|
|
|
:name => platform_params[:service_name],
|
|
|
|
:provider => platform_params[:service_provider],
|
|
|
|
:enable => param_hash[:enabled],
|
|
|
|
:hasstatus => true,
|
|
|
|
:subscribe => 'Concat[/etc/swift/proxy-server.conf]'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with disabled service managing' do
|
|
|
|
before do
|
|
|
|
params.merge!({
|
|
|
|
:manage_service => false,
|
|
|
|
:enabled => false })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'configures swift-proxy service' do
|
2015-03-23 18:23:07 +01:00
|
|
|
is_expected.to contain_service('swift-proxy').with(
|
2014-09-22 15:50:38 +02:00
|
|
|
:ensure => nil,
|
|
|
|
:name => platform_params[:service_name],
|
|
|
|
:provider => platform_params[:service_provider],
|
|
|
|
:enable => false,
|
|
|
|
:hasstatus => true,
|
|
|
|
:subscribe => 'Concat[/etc/swift/proxy-server.conf]'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on Debian platforms' do
|
|
|
|
let :facts do
|
|
|
|
{ :operatingsystem => 'Ubuntu',
|
|
|
|
:osfamily => 'Debian',
|
|
|
|
:concat_basedir => '/var/lib/puppet/concat' }
|
|
|
|
end
|
|
|
|
|
|
|
|
let :platform_params do
|
|
|
|
{ :service_name => 'swift-proxy',
|
|
|
|
:service_provider => 'upstart' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it_configures 'swift-proxy'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'on RedHat platforms' do
|
|
|
|
let :facts do
|
|
|
|
{ :osfamily => 'RedHat',
|
|
|
|
:operatingsystem => 'RedHat',
|
|
|
|
:concat_basedir => '/var/lib/puppet/concat' }
|
|
|
|
end
|
|
|
|
|
|
|
|
let :platform_params do
|
|
|
|
{ :service_name => 'openstack-swift-proxy',
|
|
|
|
:service_provider => nil }
|
|
|
|
end
|
2012-02-26 20:51:17 -08:00
|
|
|
|
2014-09-22 15:50:38 +02:00
|
|
|
it_configures 'swift-proxy'
|
2012-02-26 20:51:17 -08:00
|
|
|
end
|
|
|
|
end
|