puppet-watcher/spec/classes/watcher_placement_client_spec.rb
Takashi Kajinami 71b77bf0f7 Fix wrong test case title
Change-Id: Ifdffc432f56162d0b31c335e8ee3421ace6b48d2
2025-02-16 19:23:18 +09:00

47 lines
1.3 KiB
Ruby

require 'spec_helper'
describe 'watcher::placement_client' do
shared_examples 'watcher::placement_client' do
context 'with defaults' do
let :params do
{}
end
it 'should set the defaults' do
should contain_watcher_config('placement_client/api_version').with_value('<SERVICE DEFAULT>')
should contain_watcher_config('placement_client/interface').with_value('<SERVICE DEFAULT>')
should contain_watcher_config('placement_client/region_name').with_value('<SERVICE DEFAULT>')
end
end
context 'with parameters overridden' do
let :params do
{
:api_version => 1,
:interface => 'publicURL',
:region_name => 'regionOne'
}
end
it 'should set the overridden values' do
should contain_watcher_config('placement_client/api_version').with_value(1)
should contain_watcher_config('placement_client/interface').with_value('publicURL')
should contain_watcher_config('placement_client/region_name').with_value('regionOne')
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_behaves_like 'watcher::placement_client'
end
end
end