puppet-swift/spec/classes/swift_storage_container_spec.rb
Derek Higgins 90f58f8f92 Start swift support services on Red Hat
Now starting these services on all distros
swift-account-auditor swift-container-auditor swift-object-auditor
swift-account-reaper swift-container-updater swift-object-updater

Change-Id: I98cfcef3b43a2bdad6f359e4e4098a6113245353
2013-04-24 06:16:59 -04:00

78 lines
2.3 KiB
Ruby

require 'spec_helper'
describe 'swift::storage::container' do
let :facts do
{
:operatingsystem => 'Ubuntu',
:osfamily => 'Debian'
}
end
let :pre_condition do
"class { 'ssh::server::install': }
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'}
end
[{},
{:package_ensure => 'latest'}
].each do |param_set|
describe "when #{param_set == {} ? "using default" : "specifying"} class parameters" do
let :param_hash do
default_params.merge(param_set)
end
let :params do
param_set
end
it { should contain_swift__storage__generic('container').with_package_ensure(param_hash[:package_ensure]) }
it 'should have some other services' do
['swift-container-updater', 'swift-container-auditor'].each do |service|
should contain_service(service).with(
:ensure => 'running',
:enable => true,
:provider => 'upstart',
:require => 'Package[swift-container]'
)
end
should contain_service('swift-container-sync').with(
:ensure => 'running',
:enable => true,
:provider => 'upstart',
:require => ['File[/etc/init/swift-container-sync.conf]', 'File[/etc/init.d/swift-container-sync]']
)
should contain_file('/etc/init/swift-container-sync.conf').with(
:source => 'puppet:///modules/swift/swift-container-sync.conf.upstart',
:require => 'Package[swift-container]'
)
should contain_file('/etc/init.d/swift-container-sync').with(
:ensure => 'link',
:target => '/lib/init/upstart-job'
)
end
end
end
describe 'on rhel' do
let :facts do
{
:operatingsystem => 'RedHat',
:osfamily => 'RedHat'
}
end
it 'should have some support services' do
['swift-container-updater', 'swift-container-auditor'].each do |service|
should contain_service(service).with(
:name => "openstack-#{service}",
:ensure => 'running',
:enable => true,
:require => 'Package[swift-container]'
)
end
end
end
end