puppet-magnum/spec/classes/magnum_keystone_keystone_auth_spec.rb
Jake Yip 85b20b0db4 New class to support keystone_auth config
The config section [keystone_auth] is used for service user, which is
different from [keystone_authtoken]. They used to be managed in the same
class, but after the deprecation in Change
I0cea57dd58b4ddc532ee28a045ec4b75b8312919, magnum can no longer fall
back to use the values in keystone_authtoken/admin_user [1]

We add a new class to manage [keystone_auth] of the config, to keep it
distinct from keystone_authtoken

[1]: https://github.com/openstack/magnum/blob/stable/train/magnum/common/keystone.py#L122-L123

Change-Id: Ib1fe977a151346cd2ab29ad33d7d9dbb86413fe6
2020-09-08 15:33:29 +10:00

70 lines
2.4 KiB
Ruby
Executable File

require 'spec_helper'
describe 'magnum::keystone::keystone_auth' do
let :params do
{ }
end
shared_examples_for 'magnum keystone_auth' do
context 'with default parameters' do
it 'configure keystone_auth' do
is_expected.not_to contain_magnum_config('keystone_auth/username')
end
end
context 'with password' do
before do
params.merge!({
:password => 'magnum_password',
})
end
it 'configure keystone_auth' do
is_expected.to contain_magnum_config('keystone_auth/username').with_value('magnum')
is_expected.to contain_magnum_config('keystone_auth/password').with_value('magnum_password')
is_expected.to contain_magnum_config('keystone_auth/auth_url').with_value('http://localhost:5000')
is_expected.to contain_magnum_config('keystone_auth/project_name').with_value('services')
is_expected.to contain_magnum_config('keystone_auth/user_domain_name').with_value('Default')
is_expected.to contain_magnum_config('keystone_auth/project_domain_name').with_value('Default')
end
end
context 'when overriding parameters' do
before do
params.merge!({
:username => 'myuser',
:password => 'mypasswd',
:auth_url => 'http://:127.0.0.1:5000',
:project_name => 'service_project',
:user_domain_name => 'domainX',
:project_domain_name => 'domainX',
})
end
it 'configure keystone_auth' do
is_expected.to contain_magnum_config('keystone_auth/username').with_value(params[:username])
is_expected.to contain_magnum_config('keystone_auth/password').with_value(params[:password])
is_expected.to contain_magnum_config('keystone_auth/auth_url').with_value(params[:auth_url])
is_expected.to contain_magnum_config('keystone_auth/project_name').with_value(params[:project_name])
is_expected.to contain_magnum_config('keystone_auth/user_domain_name').with_value(params[:user_domain_name])
is_expected.to contain_magnum_config('keystone_auth/project_domain_name').with_value(params[:project_domain_name])
end
end
end
on_supported_os({
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "on #{os}" do
let (:facts) do
facts.merge!(OSDefaults.get_facts())
end
it_configures 'magnum keystone_auth'
end
end
end