Files
puppet-nova/spec/classes/nova_rabbitmq_spec.rb
Emilien Macchi 0500f9315b rabbitmq: do not manage rabbitmq service anymore
rabbitmq_class was deprecated in the previous release, this patch drop
it.

That means:
* we are not installing rabbitmq service anymore.
* rabbitmq_class parameter is deleted
* port, cluster_disk_nodes and enabled parameters are deprecated for
  backward compatibility but port and cluster_disk_nodes have no effect
  since we don't install rabbitmq anymore.
* unit tests are updated

Change-Id: Ie6fb34aec2f9f0d1f996376911e75935f23332d0
2015-09-23 21:39:28 +00:00

70 lines
1.3 KiB
Ruby

require 'spec_helper'
describe 'nova::rabbitmq' do
let :facts do
{
:puppetversion => '2.7',
:osfamily => 'Debian'
}
end
describe 'with defaults' do
it 'should contain all of the default resources' do
is_expected.to contain_rabbitmq_vhost('/').with(
:provider => 'rabbitmqctl'
)
end
end
describe 'when a rabbitmq user is specified' do
let :params do
{
:userid => 'dan',
:password => 'pass'
}
end
it 'should contain user and permissions' do
is_expected.to contain_rabbitmq_user('dan').with(
:admin => true,
:password => 'pass',
:provider => 'rabbitmqctl'
)
is_expected.to contain_rabbitmq_user_permissions('dan@/').with(
:configure_permission => '.*',
:write_permission => '.*',
:read_permission => '.*',
:provider => 'rabbitmqctl'
)
end
end
describe 'when disabled' do
let :params do
{
:userid => 'dan',
:password => 'pass',
:enabled => false
}
end
it 'should be disabled' do
is_expected.to_not contain_rabbitmq_user('dan')
is_expected.to_not contain_rabbitmq_user_permissions('dan@/')
is_expected.to_not contain_rabbitmq_vhost('/')
end
end
end