puppet-swift/spec/classes/swift_storage_spec.rb
Richard Raseley 00d10f1c3e Removal of SSH Components
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
2015-04-24 17:23:53 +02:00

42 lines
1022 B
Ruby

require 'spec_helper'
describe 'swift::storage' do
# TODO I am not testing the upstart code b/c it should be temporary
let :facts do
{
:operatingsystem => 'Ubuntu',
:osfamily => 'Debian'
}
end
describe 'when required classes are specified' do
let :pre_condition do
"class { 'swift': swift_hash_suffix => 'changeme' }"
end
describe 'when the local net ip is specified' do
let :params do
{
:storage_local_net_ip => '127.0.0.1',
}
end
it { is_expected.to contain_class('rsync::server').with(
{:use_xinetd => true,
:address => params[:storage_local_net_ip],
:use_chroot => 'no'
}
)}
end
describe 'when local net ip is not specified' do
it_raises 'a Puppet::Error', /Must pass storage_local_net_ip/
end
end
describe 'when the dependencies are not specified' do
it 'should fail' do
expect { catalogue }.to raise_error(Puppet::Error)
end
end
end