
This patch aim to update our specs test in order to work with the new rspec-puppet release 2.0.0, in the mean time, we update rspec syntax in order to be prepared for rspec 3.x move. In details: * Convert 'should' keyword to 'is_expected.to' (prepare rspec 3.x) * Upgrade and pin rspec-puppet from 1.0.1 to 2.0.0 * Clean Gemfile (remove over-specificication of runtime deps of puppetlabs_spec_helper) Change-Id: I062afe69fea8acb4785c537df7400d9c5d7034b4 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
82 lines
1.7 KiB
Ruby
82 lines
1.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::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_class('rabbitmq::server').with(
|
|
:service_ensure => 'running',
|
|
:port => '5672',
|
|
:delete_guest_user => false
|
|
)
|
|
|
|
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 contain_class('rabbitmq::server').with(
|
|
:service_ensure => 'stopped',
|
|
:port => '5672',
|
|
:delete_guest_user => false
|
|
)
|
|
|
|
is_expected.to_not contain_rabbitmq_vhost('/')
|
|
|
|
end
|
|
end
|
|
|
|
|
|
end
|