252969895a
master de419015bb96d83135b306d9fb34e77e033c26cb sources https://github.com/openstack/puppet-keystone Partially Implements: blueprint upgrade-openstack-puppet-modules Fuel-CI: disable Change-Id: Idedef32288e214486d05225b09147b5b1c30cdab
52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'keystone::endpoint' do
|
|
|
|
it { is_expected.to contain_keystone_service('keystone').with(
|
|
:ensure => 'present',
|
|
:type => 'identity',
|
|
:description => 'OpenStack Identity Service'
|
|
)}
|
|
|
|
describe 'with default parameters' do
|
|
it { is_expected.to contain_keystone_endpoint('RegionOne/keystone').with(
|
|
:ensure => 'present',
|
|
:public_url => 'http://127.0.0.1:5000/v2.0',
|
|
:admin_url => 'http://127.0.0.1:35357/v2.0',
|
|
:internal_url => 'http://127.0.0.1:5000/v2.0'
|
|
)}
|
|
end
|
|
|
|
describe 'with overridden parameters' do
|
|
|
|
let :params do
|
|
{ :version => 'v42.6',
|
|
:public_url => 'https://identity.some.tld/the/main/endpoint',
|
|
:admin_url => 'https://identity-int.some.tld/some/admin/endpoint',
|
|
:internal_url => 'https://identity-int.some.tld/some/internal/endpoint' }
|
|
end
|
|
|
|
it { is_expected.to contain_keystone_endpoint('RegionOne/keystone').with(
|
|
:ensure => 'present',
|
|
:public_url => 'https://identity.some.tld/the/main/endpoint/v42.6',
|
|
:admin_url => 'https://identity-int.some.tld/some/admin/endpoint/v42.6',
|
|
:internal_url => 'https://identity-int.some.tld/some/internal/endpoint/v42.6'
|
|
)}
|
|
end
|
|
|
|
describe 'without internal_url parameter' do
|
|
|
|
let :params do
|
|
{ :public_url => 'https://identity.some.tld/the/main/endpoint' }
|
|
end
|
|
|
|
it 'internal_url should default to public_url' do
|
|
is_expected.to contain_keystone_endpoint('RegionOne/keystone').with(
|
|
:ensure => 'present',
|
|
:public_url => 'https://identity.some.tld/the/main/endpoint/v2.0',
|
|
:internal_url => 'https://identity.some.tld/the/main/endpoint/v2.0'
|
|
)
|
|
end
|
|
end
|
|
end
|