1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
require 'spec_helper'
describe 'murano::keystone::cfapi_auth' do
shared_examples_for 'murano keystone cfapi auth' do
describe 'with default class parameters' do
let :params do
{ :password => 'murano_password',
:tenant => 'foobar' }
end
it { is_expected.to contain_keystone_service('murano-cfapi::service-broker').with(
:ensure => 'present',
:description => 'Murano Service Broker API'
) }
it { is_expected.to contain_keystone_endpoint('RegionOne/murano-cfapi::service-broker').with(
:ensure => 'present',
:public_url => "http://127.0.0.1:8083",
:admin_url => "http://127.0.0.1:8083",
:internal_url => "http://127.0.0.1:8083"
) }
end
describe 'with endpoint parameters' do
let :params do
{ :password => 'murano_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 { is_expected.to contain_keystone_endpoint('RegionOne/murano-cfapi::service-broker').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
describe 'when overriding service name' do
let :params do
{ :password => 'foo',
:service_name => 'murano-cfapiy' }
end
it { is_expected.to contain_keystone_service('murano-cfapiy::service-broker') }
it { is_expected.to contain_keystone_endpoint('RegionOne/murano-cfapiy::service-broker') }
end
describe 'when configuring user and role' do
let :params do
{ :password => 'foo',
:configure_user => true,
:configure_user_role => true }
end
it { is_expected.to contain_keystone_user('murano-cfapi') }
it { is_expected.to contain_keystone_user_role('murano-cfapi@services') }
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 'murano keystone cfapi auth'
end
end
end
|