f25c60a03b
This is follow-up of 7eeb46e04d
and fixes
the following two points.
- tenant_name is deprecated but a proper warning message is missing
- password is deprecated and now is optional, but it is still
validated
Closes-Bug: #1973315
Change-Id: I169d42dee4896843e55d4989dc440ad7e7c7ec94
67 lines
2.3 KiB
Ruby
67 lines
2.3 KiB
Ruby
#
|
|
# Unit tests for zaqar::keystone::auth_websocket
|
|
#
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'zaqar::keystone::auth_websocket' do
|
|
shared_examples_for 'zaqar::keystone::auth_websocket' do
|
|
context 'with default class parameters' do
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
it { is_expected.to contain_keystone__resource__service_identity('zaqar-websocket').with(
|
|
:configure_user => false,
|
|
:configure_user_role => false,
|
|
:configure_endpoint => true,
|
|
:service_name => 'zaqar-websocket',
|
|
:service_type => 'messaging-websocket',
|
|
:service_description => 'OpenStack Messaging Websocket Service',
|
|
:region => 'RegionOne',
|
|
:public_url => 'ws://127.0.0.1:9000',
|
|
:internal_url => 'ws://127.0.0.1:9000',
|
|
:admin_url => 'ws://127.0.0.1:9000',
|
|
) }
|
|
end
|
|
|
|
context 'when overriding parameters' do
|
|
let :params do
|
|
{ :configure_endpoint => false,
|
|
:service_description => 'Alternative OpenStack Messaging Websocket Service',
|
|
:service_name => 'alt_service',
|
|
:service_type => 'alt_messaging-websocket',
|
|
:region => 'RegionTwo',
|
|
:public_url => 'wss://10.10.10.10:80',
|
|
:internal_url => 'ws://10.10.10.11:81',
|
|
:admin_url => 'ws://10.10.10.12:81' }
|
|
end
|
|
|
|
it { is_expected.to contain_keystone__resource__service_identity('zaqar-websocket').with(
|
|
:configure_user => false,
|
|
:configure_user_role => false,
|
|
:configure_endpoint => false,
|
|
:service_name => 'alt_service',
|
|
:service_type => 'alt_messaging-websocket',
|
|
:service_description => 'Alternative OpenStack Messaging Websocket Service',
|
|
:region => 'RegionTwo',
|
|
:public_url => 'wss://10.10.10.10:80',
|
|
:internal_url => 'ws://10.10.10.11:81',
|
|
:admin_url => 'ws://10.10.10.12:81',
|
|
) }
|
|
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 'zaqar::keystone::auth_websocket'
|
|
end
|
|
end
|
|
end
|