
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
30 lines
931 B
Ruby
30 lines
931 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::ceilometer' do
|
|
|
|
let :facts do
|
|
{
|
|
:osfamily => 'Debian'
|
|
}
|
|
end
|
|
|
|
let :pre_condition do
|
|
'class { "concat::setup": }
|
|
concat { "/etc/swift/proxy-server.conf": }
|
|
class { "swift":
|
|
swift_hash_suffix => "dummy"
|
|
}'
|
|
end
|
|
|
|
let :fragment_file do
|
|
"/var/lib/puppet/concat/_etc_swift_proxy-server.conf/fragments/33_swift_ceilometer"
|
|
end
|
|
|
|
it { is_expected.to contain_file(fragment_file).with_content(/[filter:ceilometer]/) }
|
|
it { is_expected.to contain_file(fragment_file).with_content(/use = egg:ceilometer#swift/) }
|
|
it { is_expected.to contain_concat__fragment('swift_ceilometer').with_require('Class[::Ceilometer]') }
|
|
it { is_expected.to contain_user('swift').with_groups('ceilometer') }
|
|
it { is_expected.to contain_file('/var/log/ceilometer/swift-proxy-server.log').with(:owner => 'swift', :group => 'swift', :mode => '0664') }
|
|
|
|
end
|