
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: I00cf4846bb933291469be94c9debed425eddf798
190 lines
6.9 KiB
Ruby
190 lines
6.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::storage::generic' do
|
|
|
|
let :title do
|
|
'account'
|
|
end
|
|
|
|
let :facts do
|
|
{
|
|
:operatingsystem => 'Ubuntu',
|
|
:osfamily => 'Debian'
|
|
}
|
|
end
|
|
|
|
let :pre_condition do
|
|
"class { 'swift': swift_hash_suffix => 'foo' }
|
|
class { 'swift::storage': storage_local_net_ip => '10.0.0.1' }"
|
|
end
|
|
|
|
let :params do
|
|
{ :package_ensure => 'present',
|
|
:enabled => true,
|
|
:manage_service => true }
|
|
end
|
|
|
|
describe 'with an invalid title' do
|
|
let :title do
|
|
'foo'
|
|
end
|
|
it_raises 'a Puppet::Error', /does not match/
|
|
end
|
|
|
|
shared_examples_for 'swift-storage-generic' do
|
|
%w(account object container).each do |t|
|
|
[{},
|
|
{ :package_ensure => 'latest' }
|
|
].each do |param_set|
|
|
describe "when #{param_set == {} ? 'using default' : 'specifying'} class parameters" do
|
|
before do
|
|
params.merge!(param_set)
|
|
end
|
|
|
|
let :title do
|
|
t
|
|
end
|
|
|
|
[{ :enabled => true, :manage_service => true },
|
|
{ :enabled => false, :manage_service => true }].each do |param_hash_manage|
|
|
context "when service is_expected.to be #{param_hash_manage[:enabled] ? 'enabled' : 'disabled'}" do
|
|
before do
|
|
params.merge!(param_hash_manage)
|
|
end
|
|
|
|
it do
|
|
is_expected.to contain_package("swift-#{t}").with(
|
|
:ensure => params[:package_ensure],
|
|
:tag => ['openstack', 'swift-package'],
|
|
:notify => ['Anchor[swift::install::end]']
|
|
)
|
|
end
|
|
it do
|
|
is_expected.to contain_service("swift-#{t}-server").with(
|
|
:name => platform_params["swift-#{t}-server"],
|
|
:ensure => (param_hash_manage[:manage_service] && param_hash_manage[:enabled]) ? 'running' : 'stopped',
|
|
:enable => param_hash_manage[:enabled],
|
|
:provider => platform_params['service_provider'],
|
|
:tag => 'swift-service'
|
|
)
|
|
end
|
|
it do
|
|
is_expected.to contain_service("swift-#{t}-replicator").with(
|
|
:name => platform_params["swift-#{t}-replicator"],
|
|
:ensure => (param_hash_manage[:manage_service] && param_hash_manage[:enabled]) ? 'running' : 'stopped',
|
|
:enable => param_hash_manage[:enabled],
|
|
:provider => platform_params['service_provider'],
|
|
:tag => 'swift-service'
|
|
)
|
|
end
|
|
it do
|
|
is_expected.to contain_service("swift-#{t}-auditor").with(
|
|
:name => platform_params["swift-#{t}-auditor"],
|
|
:ensure => (param_hash_manage[:manage_service] && param_hash_manage[:enabled]) ? 'running' : 'stopped',
|
|
:enable => param_hash_manage[:enabled],
|
|
:provider => platform_params['service_provider'],
|
|
:tag => 'swift-service'
|
|
)
|
|
end
|
|
it do
|
|
is_expected.to contain_file("/etc/swift/#{t}-server/").with(
|
|
:ensure => 'directory',
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
{ :operatingsystem => 'Ubuntu',
|
|
:osfamily => 'Debian' }
|
|
end
|
|
|
|
let :platform_params do
|
|
{ 'swift-account-server' => 'swift-account',
|
|
'swift-account-replicator' => 'swift-account-replicator',
|
|
'swift-account-auditor' => 'swift-account-auditor',
|
|
'swift-container-server' => 'swift-container',
|
|
'swift-container-replicator' => 'swift-container-replicator',
|
|
'swift-container-auditor' => 'swift-container-auditor',
|
|
'swift-object-server' => 'swift-object',
|
|
'swift-object-replicator' => 'swift-object-replicator',
|
|
'swift-object-auditor' => 'swift-object-auditor',
|
|
'service_provider' => nil
|
|
}
|
|
end
|
|
|
|
it_configures 'swift-storage-generic'
|
|
|
|
context 'on Debian platforms using swiftinit service provider' do
|
|
before do
|
|
params.merge!(:service_provider => 'swiftinit')
|
|
end
|
|
|
|
let :platform_params do
|
|
{ 'swift-account-server' => 'swift-account-server',
|
|
'swift-account-replicator' => 'swift-account-replicator',
|
|
'swift-account-auditor' => 'swift-account-auditor',
|
|
'swift-container-server' => 'swift-container-server',
|
|
'swift-container-replicator' => 'swift-container-replicator',
|
|
'swift-container-auditor' => 'swift-container-auditor',
|
|
'swift-object-server' => 'swift-object-server',
|
|
'swift-object-replicator' => 'swift-object-replicator',
|
|
'swift-object-auditor' => 'swift-object-auditor',
|
|
'service_provider' => 'swiftinit',
|
|
}
|
|
end
|
|
|
|
it_configures 'swift-storage-generic'
|
|
end
|
|
end
|
|
|
|
context 'on Redhat platforms' do
|
|
let :facts do
|
|
{ :operatingsystem => 'Redhat',
|
|
:osfamily => 'Redhat' }
|
|
end
|
|
|
|
let :platform_params do
|
|
{ 'swift-account-server' => 'openstack-swift-account',
|
|
'swift-account-replicator' => 'openstack-swift-account-replicator',
|
|
'swift-account-auditor' => 'openstack-swift-account-auditor',
|
|
'swift-container-server' => 'openstack-swift-container',
|
|
'swift-container-replicator' => 'openstack-swift-container-replicator',
|
|
'swift-container-auditor' => 'openstack-swift-container-auditor',
|
|
'swift-object-server' => 'openstack-swift-object',
|
|
'swift-object-replicator' => 'openstack-swift-object-replicator',
|
|
'swift-object-auditor' => 'openstack-swift-object-auditor',
|
|
}
|
|
end
|
|
|
|
it_configures 'swift-storage-generic'
|
|
|
|
context 'on Redhat platforms using swiftinit service provider' do
|
|
before do
|
|
params.merge!(:service_provider => 'swiftinit')
|
|
end
|
|
|
|
let :platform_params do
|
|
{ 'swift-account-server' => 'swift-account-server',
|
|
'swift-account-replicator' => 'swift-account-replicator',
|
|
'swift-account-auditor' => 'swift-account-auditor',
|
|
'swift-container-server' => 'swift-container-server',
|
|
'swift-container-replicator' => 'swift-container-replicator',
|
|
'swift-container-auditor' => 'swift-container-auditor',
|
|
'swift-object-server' => 'swift-object-server',
|
|
'swift-object-replicator' => 'swift-object-replicator',
|
|
'swift-object-auditor' => 'swift-object-auditor',
|
|
'service_provider' => 'swiftinit',
|
|
}
|
|
end
|
|
|
|
it_configures 'swift-storage-generic'
|
|
end
|
|
end
|
|
end
|