Merge "Fix wrong test case title"

This commit is contained in:
Zuul 2025-02-19 15:54:54 +00:00 committed by Gerrit Code Review
commit fbad704022
9 changed files with 9 additions and 9 deletions

View File

@ -24,7 +24,7 @@ describe 'watcher::cinder_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('cinder_client/api_version').with_value(3)
should contain_watcher_config('cinder_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('cinder_client/region_name').with_value('regionOne')

View File

@ -24,7 +24,7 @@ describe 'watcher::glance_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('glance_client/api_version').with_value(2)
should contain_watcher_config('glance_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('glance_client/region_name').with_value('regionOne')

View File

@ -24,7 +24,7 @@ describe 'watcher::gnocchi_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('gnocchi_client/api_version').with_value(1)
should contain_watcher_config('gnocchi_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('gnocchi_client/region_name').with_value('regionOne')

View File

@ -24,7 +24,7 @@ describe 'watcher::ironic_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('ironic_client/api_version').with_value(1)
should contain_watcher_config('ironic_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('ironic_client/region_name').with_value('regionOne')

View File

@ -22,7 +22,7 @@ describe 'watcher::keystone_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('keystone_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('keystone_client/region_name').with_value('regionOne')
end

View File

@ -24,7 +24,7 @@ describe 'watcher::neutron_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('neutron_client/api_version').with_value(2.0)
should contain_watcher_config('neutron_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('neutron_client/region_name').with_value('regionOne')

View File

@ -24,7 +24,7 @@ describe 'watcher::nova_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('nova_client/api_version').with_value(2)
should contain_watcher_config('nova_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('nova_client/region_name').with_value('regionOne')

View File

@ -24,7 +24,7 @@ describe 'watcher::placement_client' do
}
end
it 'should set the defaults' do
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')

View File

@ -38,7 +38,7 @@ describe 'watcher::watcher_clients_auth' do
})
end
it 'should set the parameters' do
it 'should set the overridden values' do
should contain_watcher_config('watcher_clients_auth/auth_url').with_value('http://127.0.0.1:5000/')
should contain_watcher_config('watcher_clients_auth/username').with_value('alt_watcher')
should contain_watcher_config('watcher_clients_auth/project_name').with_value('alt_services')