
This change removes all SSH-related components, their configuration options, and tests. SSH is such a low-level service (from the perspective of any operator deploying a cloud), that it is reasonable to assume that (or provide direction that) SSH must be installed and configured prior to usage of the puppet-swift module. Without this change, there is a significant liklihood of confusion occurring in the likely case of SSH being managed elsewhere. Change-Id: I0f695788b2784669a3fb285e4bedf0159c4cb89a Closes-Bug: 1447259
75 lines
1.9 KiB
Ruby
75 lines
1.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 :default_params do
|
|
{:package_ensure => 'present',
|
|
:service_provider => 'upstart'}
|
|
end
|
|
|
|
describe 'with an invalid title' do
|
|
let :title do
|
|
'foo'
|
|
end
|
|
it_raises 'a Puppet::Error', /does not match/
|
|
end
|
|
|
|
['account', 'object', 'container'].each do |t|
|
|
[{},
|
|
{:package_ensure => 'latest',
|
|
:service_provider => 'init'}
|
|
].each do |param_set|
|
|
describe "when #{param_set == {} ? "using default" : "specifying"} class parameters" do
|
|
let :title do
|
|
t
|
|
end
|
|
let :param_hash do
|
|
default_params.merge(param_set)
|
|
end
|
|
let :params do
|
|
param_set
|
|
end
|
|
it { is_expected.to contain_package("swift-#{t}").with(
|
|
:ensure => param_hash[:package_ensure],
|
|
:tag => 'openstack'
|
|
)}
|
|
it { is_expected.to contain_service("swift-#{t}").with(
|
|
:ensure => 'running',
|
|
:enable => true,
|
|
:hasstatus => true,
|
|
:provider => param_hash[:service_provider]
|
|
)}
|
|
it { is_expected.to contain_service("swift-#{t}-replicator").with(
|
|
:ensure => 'running',
|
|
:enable => true,
|
|
:hasstatus => true,
|
|
:provider => param_hash[:service_provider]
|
|
)}
|
|
it { is_expected.to contain_file("/etc/swift/#{t}-server/").with(
|
|
:ensure => 'directory',
|
|
:owner => 'swift',
|
|
:group => 'swift'
|
|
)}
|
|
end
|
|
# TODO - I do not want to add tests for the upstart stuff
|
|
# I need to check the tickets and see if this stuff is fixed
|
|
end
|
|
end
|
|
end
|