f68f5e9217
Some drivers:transport:websocket options had dashes instead of underscore which caused zaqar to ignore them. Change-Id: I0a0d0ddf5704415745868d39d763df0e43a21a61 Co-Authored-By: Thomas Hervé <therve@redhat.com> Related-Bug: #1727406 Closes-Bug: #1730179
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'zaqar::transport::websocket' do
|
|
|
|
shared_examples_for 'zaqar::transport::websocket' do
|
|
describe 'with custom values' do
|
|
let :params do
|
|
{
|
|
:bind => '1',
|
|
:port => '2',
|
|
:external_port => '3',
|
|
:notification_bind => '4',
|
|
:notification_port => '5',
|
|
}
|
|
end
|
|
|
|
it 'configures custom values' do
|
|
is_expected.to contain_zaqar_config('drivers:transport:websocket/bind').with_value('1')
|
|
is_expected.to contain_zaqar_config('drivers:transport:websocket/port').with_value('2')
|
|
is_expected.to contain_zaqar_config('drivers:transport:websocket/external_port').with_value('3')
|
|
is_expected.to contain_zaqar_config('drivers:transport:websocket/notification_bind').with_value('4')
|
|
is_expected.to contain_zaqar_config('drivers:transport:websocket/notification_port').with_value('5')
|
|
end
|
|
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 'zaqar::transport::websocket'
|
|
end
|
|
end
|
|
end
|