ddfd2150b9
Since we are in ocata lets remove all old parameters in api to configure the keystone_authtoken section Change-Id: I4dc0bd544f91fd52ad437b4c3ebbd16a43895726
174 lines
4.7 KiB
Ruby
174 lines
4.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'glance::keystone::auth' do
|
|
|
|
shared_examples_for 'glance::keystone::auth' do
|
|
describe 'with defaults' do
|
|
|
|
let :params do
|
|
{:password => 'pass'}
|
|
end
|
|
|
|
it { is_expected.to contain_keystone_user('glance').with(
|
|
:ensure => 'present',
|
|
:password => 'pass'
|
|
)}
|
|
|
|
it { is_expected.to contain_keystone_user_role('glance@services').with(
|
|
:ensure => 'present',
|
|
:roles => ['admin']
|
|
) }
|
|
|
|
it { is_expected.to contain_keystone_service('glance::image').with(
|
|
:ensure => 'present',
|
|
:description => 'OpenStack Image Service'
|
|
) }
|
|
|
|
it { is_expected.to contain_keystone_endpoint('RegionOne/glance::image').with(
|
|
:ensure => 'present',
|
|
:public_url => 'http://127.0.0.1:9292',
|
|
:admin_url => 'http://127.0.0.1:9292',
|
|
:internal_url => 'http://127.0.0.1:9292'
|
|
)}
|
|
|
|
end
|
|
|
|
describe 'when auth_type, password, and service_type are overridden' do
|
|
|
|
let :params do
|
|
{
|
|
:auth_name => 'glancey',
|
|
:password => 'password',
|
|
:service_type => 'imagey'
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_keystone_user('glancey').with(
|
|
:ensure => 'present',
|
|
:password => 'password'
|
|
)}
|
|
|
|
it { is_expected.to contain_keystone_user_role('glancey@services').with(
|
|
:ensure => 'present',
|
|
:roles => ['admin']
|
|
) }
|
|
|
|
it { is_expected.to contain_keystone_service('glance::imagey').with(
|
|
:ensure => 'present',
|
|
:description => 'OpenStack Image Service'
|
|
) }
|
|
|
|
end
|
|
|
|
describe 'when overriding endpoint URLs' do
|
|
let :params do
|
|
{ :password => 'passw0rd',
|
|
:region => 'RegionTwo',
|
|
:public_url => 'https://10.10.10.10:81/v2',
|
|
:internal_url => 'https://10.10.10.11:81/v2',
|
|
:admin_url => 'https://10.10.10.12:81/v2' }
|
|
end
|
|
|
|
it { is_expected.to contain_keystone_endpoint('RegionTwo/glance::image').with(
|
|
:ensure => 'present',
|
|
:public_url => 'https://10.10.10.10:81/v2',
|
|
:internal_url => 'https://10.10.10.11:81/v2',
|
|
:admin_url => 'https://10.10.10.12:81/v2'
|
|
) }
|
|
end
|
|
|
|
describe 'when endpoint is not set' do
|
|
|
|
let :params do
|
|
{
|
|
:configure_endpoint => false,
|
|
:password => 'pass',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to_not contain_keystone_endpoint('RegionOne/glance::image') }
|
|
end
|
|
|
|
describe 'when disabling user configuration' do
|
|
let :params do
|
|
{
|
|
:configure_user => false,
|
|
:password => 'pass',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to_not contain_keystone_user('glance') }
|
|
|
|
it { is_expected.to contain_keystone_user_role('glance@services') }
|
|
|
|
it { is_expected.to contain_keystone_service('glance::image').with(
|
|
:ensure => 'present',
|
|
:description => 'OpenStack Image Service'
|
|
) }
|
|
end
|
|
|
|
describe 'when disabling user and user role configuration' do
|
|
let :params do
|
|
{
|
|
:configure_user => false,
|
|
:configure_user_role => false,
|
|
:password => 'pass',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to_not contain_keystone_user('glance') }
|
|
|
|
it { is_expected.to_not contain_keystone_user_role('glance@services') }
|
|
|
|
it { is_expected.to contain_keystone_service('glance::image').with(
|
|
:ensure => 'present',
|
|
:description => 'OpenStack Image Service'
|
|
) }
|
|
end
|
|
|
|
describe 'when configuring glance-api and the keystone endpoint' do
|
|
let :pre_condition do
|
|
"class { 'glance::api::authtoken': password => 'test' }
|
|
include ::glance::api"
|
|
end
|
|
|
|
let :params do
|
|
{
|
|
:password => 'test',
|
|
:configure_endpoint => true
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_keystone_endpoint('RegionOne/glance::image').that_notifies(["Anchor[glance::service::begin]"]) }
|
|
end
|
|
|
|
describe 'when overriding service name' do
|
|
|
|
let :params do
|
|
{
|
|
:service_name => 'glance_service',
|
|
:password => 'pass'
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_keystone_user('glance') }
|
|
it { is_expected.to contain_keystone_user_role('glance@services') }
|
|
it { is_expected.to contain_keystone_service('glance_service::image') }
|
|
it { is_expected.to contain_keystone_endpoint('RegionOne/glance_service::image') }
|
|
|
|
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 'glance::keystone::auth'
|
|
end
|
|
end
|
|
end
|