
The cookiecutter underwent a lot of cleanup in docs and testing, unfortunately placement was cut before those were merged so this applies those changes. [1] [2] [3] [4] [5] [1] https://review.openstack.org/#/c/624624/ [2] https://review.openstack.org/#/c/624338/ [3] https://review.openstack.org/#/c/614803/ [4] https://review.openstack.org/#/c/610859/ [5] https://review.openstack.org/#/c/622925/ Change-Id: I35903872a9cd3dcaafed4d03fc9b57f04474b087
142 lines
4.1 KiB
Ruby
142 lines
4.1 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'placement::keystone::auth' do
|
|
shared_examples 'placement::keystone::auth' do
|
|
context 'with default class parameters' do
|
|
let :params do
|
|
{
|
|
:password => 'placement_password',
|
|
:tenant => 'foobar'
|
|
}
|
|
end
|
|
|
|
it { should contain_keystone_user('placement').with(
|
|
:ensure => 'present',
|
|
:password => 'placement_password',
|
|
)}
|
|
|
|
it { should contain_keystone_user_role('placement@foobar').with(
|
|
:ensure => 'present',
|
|
:roles => ['admin']
|
|
)}
|
|
|
|
it { should contain_keystone_service('placement::placement').with(
|
|
:ensure => 'present',
|
|
:description => 'Placement Service'
|
|
)}
|
|
|
|
it { should contain_keystone_endpoint('RegionOne/placement::placement').with(
|
|
:ensure => 'present',
|
|
:public_url => 'http://127.0.0.1/placement',
|
|
:admin_url => 'http://127.0.0.1/placement',
|
|
:internal_url => 'http://127.0.0.1/placement',
|
|
)}
|
|
end
|
|
|
|
context 'when overriding URL parameters' do
|
|
let :params do
|
|
{
|
|
:password => 'placement_password',
|
|
:public_url => 'https://10.10.10.10:80',
|
|
:internal_url => 'http://10.10.10.11:81',
|
|
:admin_url => 'http://10.10.10.12:81',
|
|
}
|
|
end
|
|
|
|
it { should contain_keystone_endpoint('RegionOne/placement::placement').with(
|
|
:ensure => 'present',
|
|
:public_url => 'https://10.10.10.10:80',
|
|
:internal_url => 'http://10.10.10.11:81',
|
|
:admin_url => 'http://10.10.10.12:81',
|
|
)}
|
|
end
|
|
|
|
context 'when overriding auth name' do
|
|
let :params do
|
|
{
|
|
:password => 'foo',
|
|
:auth_name => 'placementy'
|
|
}
|
|
end
|
|
|
|
it { should contain_keystone_user('placementy') }
|
|
it { should contain_keystone_user_role('placementy@services') }
|
|
it { should contain_keystone_service('placement::placement') }
|
|
it { should contain_keystone_endpoint('RegionOne/placement::placement') }
|
|
end
|
|
|
|
context 'when overriding service name' do
|
|
let :params do
|
|
{
|
|
:service_name => 'placement_service',
|
|
:auth_name => 'placement',
|
|
:password => 'placement_password'
|
|
}
|
|
end
|
|
|
|
it { should contain_keystone_user('placement') }
|
|
it { should contain_keystone_user_role('placement@services') }
|
|
it { should contain_keystone_service('placement_service::placement') }
|
|
it { should contain_keystone_endpoint('RegionOne/placement_service::placement') }
|
|
end
|
|
|
|
context 'when disabling user configuration' do
|
|
let :params do
|
|
{
|
|
:password => 'placement_password',
|
|
:configure_user => false
|
|
}
|
|
end
|
|
|
|
it { should_not contain_keystone_user('placement') }
|
|
it { should contain_keystone_user_role('placement@services') }
|
|
|
|
it { should contain_keystone_service('placement::placement').with(
|
|
:ensure => 'present',
|
|
:description => 'Placement Service'
|
|
)}
|
|
end
|
|
|
|
context 'when disabling user and user role configuration' do
|
|
let :params do
|
|
{
|
|
:password => 'placement_password',
|
|
:configure_user => false,
|
|
:configure_user_role => false
|
|
}
|
|
end
|
|
|
|
it { should_not contain_keystone_user('placement') }
|
|
it { should_not contain_keystone_user_role('placement@services') }
|
|
|
|
it { should contain_keystone_service('placement::placement').with(
|
|
:ensure => 'present',
|
|
:description => 'Placement Service'
|
|
)}
|
|
end
|
|
|
|
context 'when using ensure absent' do
|
|
let :params do
|
|
{
|
|
:password => 'placement_password',
|
|
:ensure => 'absent'
|
|
}
|
|
end
|
|
|
|
it { should contain_keystone__resource__service_identity('placement').with_ensure('absent') }
|
|
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 'placement::keystone::auth'
|
|
end
|
|
end
|
|
end
|