7c396acd66
This commit removes the password defaults. Users should not rely on password defaults.
36 lines
1.2 KiB
Ruby
36 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
describe 'glance::notify::qpid' do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'Debian'
|
|
}
|
|
end
|
|
let :params do
|
|
{:qpid_password => 'pass'}
|
|
end
|
|
|
|
let :pre_condition do
|
|
'class { "glance::api": keystone_password => "pass" }'
|
|
end
|
|
|
|
it { should contain_glance_api_config('DEFAULT/notifier_strategy').with_value('qpid') }
|
|
it { should contain_glance_api_config('DEFAULT/qpid_username').with_value('guest') }
|
|
it { should contain_glance_api_config('DEFAULT/qpid_password').with_value('pass') }
|
|
it { should contain_glance_api_config('DEFAULT/qpid_host').with_value('localhost') }
|
|
it { should contain_glance_api_config('DEFAULT/qpid_port').with_value('5672') }
|
|
|
|
describe 'when passing params' do
|
|
let :params do
|
|
{
|
|
:qpid_password => 'pass',
|
|
:qpid_usernane => 'guest2',
|
|
:qpid_host => 'localhost2',
|
|
:qpid_port => '5673'
|
|
}
|
|
it { should contain_glance_api_config('DEFAULT/qpid_username').with_value('guest2') }
|
|
it { should contain_glance_api_config('DEFAULT/qpid_host').with_value('localhost2') }
|
|
it { should contain_glance_api_config('DEFAULT/qpid_port').with_value('5673') }
|
|
end
|
|
end
|
|
end
|