7359b5129e
This change updates the heat tests to use rspec-puppet-facts to test multiple operating systems. Change-Id: Ic6e1542d5befba529f753b346ff842ed88d1292e
139 lines
4.2 KiB
Ruby
139 lines
4.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'heat::keystone::auth_cfn' do
|
|
|
|
let :params do
|
|
{:password => 'heat-passw0rd'}
|
|
end
|
|
|
|
shared_examples_for 'heat keystone auth' do
|
|
|
|
context 'without the required password parameter' do
|
|
before { params.delete(:password) }
|
|
it { expect { is_expected.to raise_error(Puppet::Error) } }
|
|
end
|
|
|
|
context 'when overriding parameters' do
|
|
before do
|
|
params.merge!({
|
|
:email => 'heat-cfn@localhost',
|
|
:auth_name => 'heat-cfn',
|
|
:configure_endpoint => true,
|
|
:configure_service => true,
|
|
:service_type => 'cloudformation',
|
|
:region => 'RegionOne',
|
|
:tenant => 'services',
|
|
:public_url => 'http://10.0.0.10:8000/v1',
|
|
:admin_url => 'http://10.0.0.11:8000/v1',
|
|
:internal_url => 'http://10.0.0.12:8000/v1',
|
|
})
|
|
end
|
|
|
|
it 'configures heat user' do
|
|
is_expected.to contain_keystone_user( params[:auth_name] ).with(
|
|
:ensure => 'present',
|
|
:password => params[:password],
|
|
:email => params[:email],
|
|
)
|
|
end
|
|
|
|
it 'configures heat user roles' do
|
|
is_expected.to contain_keystone_user_role("#{params[:auth_name]}@#{params[:tenant]}").with(
|
|
:ensure => 'present',
|
|
:roles => ['admin']
|
|
)
|
|
end
|
|
|
|
it 'configures heat service' do
|
|
is_expected.to contain_keystone_service("#{params[:auth_name]}::#{params[:service_type]}").with(
|
|
:ensure => 'present',
|
|
:description => 'Openstack Cloudformation Service'
|
|
)
|
|
end
|
|
|
|
it 'configure heat endpoints' do
|
|
is_expected.to contain_keystone_endpoint("#{params[:region]}/#{params[:auth_name]}::#{params[:service_type]}").with(
|
|
:ensure => 'present',
|
|
:public_url => params[:public_url],
|
|
:admin_url => params[:admin_url],
|
|
:internal_url => params[:internal_url]
|
|
)
|
|
end
|
|
|
|
context 'with service disabled' do
|
|
before do
|
|
params.merge!({
|
|
:configure_service => false
|
|
})
|
|
end
|
|
it { is_expected.to_not contain_keystone_service("#{params[:auth_name]}::#{params[:service_type]}") }
|
|
end
|
|
end
|
|
|
|
context 'when overriding auth and service name' do
|
|
before do
|
|
params.merge!({
|
|
:auth_name => 'heat-cfny',
|
|
:service_name => 'heat-cfny'
|
|
})
|
|
end
|
|
it 'configures correct user name' do
|
|
is_expected.to contain_keystone_user('heat-cfny')
|
|
end
|
|
it 'configures correct user role' do
|
|
is_expected.to contain_keystone_user_role('heat-cfny@services')
|
|
end
|
|
it 'configures correct service name' do
|
|
is_expected.to contain_keystone_service('heat-cfny::cloudformation')
|
|
end
|
|
it 'configures correct endpoint name' do
|
|
is_expected.to contain_keystone_endpoint('RegionOne/heat-cfny::cloudformation')
|
|
end
|
|
end
|
|
|
|
context 'when disabling user configuration' do
|
|
before do
|
|
params.merge!( :configure_user => false )
|
|
end
|
|
|
|
it { is_expected.to_not contain_keystone_user('heat_cfn') }
|
|
it { is_expected.to contain_keystone_user_role('heat-cfn@services') }
|
|
|
|
it { is_expected.to contain_keystone_service('heat-cfn::cloudformation').with(
|
|
:ensure => 'present',
|
|
:description => 'Openstack Cloudformation Service'
|
|
)}
|
|
end
|
|
|
|
context 'when disabling user and role configuration' do
|
|
before do
|
|
params.merge!(
|
|
:configure_user => false,
|
|
:configure_user_role => false
|
|
)
|
|
end
|
|
|
|
it { is_expected.to_not contain_keystone_user('heat_cfn') }
|
|
it { is_expected.to_not contain_keystone_user_role('heat-cfn@services') }
|
|
|
|
it { is_expected.to contain_keystone_service('heat-cfn::cloudformation').with(
|
|
:ensure => 'present',
|
|
:description => 'Openstack Cloudformation Service'
|
|
)}
|
|
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_behaves_like 'heat keystone auth'
|
|
end
|
|
end
|
|
|
|
end
|