11babea0d1
The db_backend_package name has changed in puppet-oslo[0], so fix it. [0]: https://review.openstack.org/#/c/467582/ Change-Id: I7a75ca9fcd6e9a9c2a88455567083e9c4067fa6d Closes-Bug: #1693403
103 lines
3.0 KiB
Ruby
103 lines
3.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'glance::registry::db' do
|
|
|
|
shared_examples 'glance::registry::db' do
|
|
context 'with default parameters' do
|
|
it { is_expected.to contain_oslo__db('glance_registry_config').with(
|
|
:db_max_retries => '<SERVICE DEFAULT>',
|
|
:connection => 'sqlite:///var/lib/glance/glance.sqlite',
|
|
:idle_timeout => '<SERVICE DEFAULT>',
|
|
:min_pool_size => '<SERVICE DEFAULT>',
|
|
:max_pool_size => '<SERVICE DEFAULT>',
|
|
:max_retries => '<SERVICE DEFAULT>',
|
|
:retry_interval => '<SERVICE DEFAULT>',
|
|
:max_overflow => '<SERVICE DEFAULT>',
|
|
)}
|
|
end
|
|
|
|
context 'with specific parameters' do
|
|
let :params do
|
|
{ :database_db_max_retries => '-1',
|
|
:database_connection => 'mysql+pymysql://glance_registry:glance@localhost/glance',
|
|
:database_idle_timeout => '3601',
|
|
:database_min_pool_size => '2',
|
|
:database_max_retries => '11',
|
|
:database_retry_interval => '11',
|
|
:database_max_pool_size => '11',
|
|
:database_max_overflow => '21',
|
|
}
|
|
end
|
|
|
|
it { is_expected.to contain_oslo__db('glance_registry_config').with(
|
|
:db_max_retries => '-1',
|
|
:connection => 'mysql+pymysql://glance_registry:glance@localhost/glance',
|
|
:idle_timeout => '3601',
|
|
:min_pool_size => '2',
|
|
:max_pool_size => '11',
|
|
:max_retries => '11',
|
|
:retry_interval => '11',
|
|
:max_overflow => '21',
|
|
)}
|
|
end
|
|
|
|
context 'with MySQL-python library as backend package' do
|
|
let :params do
|
|
{ :database_connection => 'mysql://glance_registry:glance@localhost/glance' }
|
|
end
|
|
|
|
it { is_expected.to contain_package('python-mysqldb').with(:ensure => 'present') }
|
|
end
|
|
|
|
context 'with incorrect pymysql database_connection string' do
|
|
let :params do
|
|
{ :database_connection => 'foo+pymysql://glance_registry:glance@localhost/glance', }
|
|
end
|
|
|
|
it_raises 'a Puppet::Error', /validate_re/
|
|
end
|
|
|
|
end
|
|
|
|
shared_examples_for 'glance::registry::db Debian' do
|
|
context 'using pymysql driver' do
|
|
let :params do
|
|
{ :database_connection => 'mysql+pymysql://glance_registry:glance@localhost/glance', }
|
|
end
|
|
|
|
it 'install the proper backend package' do
|
|
is_expected.to contain_package('python-pymysql').with(
|
|
:ensure => 'present',
|
|
:name => 'python-pymysql',
|
|
:tag => 'openstack'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
|
|
shared_examples_for 'glance::registry::db RedHat' do
|
|
context 'using pymysql driver' do
|
|
let :params do
|
|
{ :database_connection => 'mysql+pymysql://glance_registry:glance@localhost/glance', }
|
|
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 'glance::registry::db'
|
|
it_configures "glance::registry::db #{facts[:osfamily]}"
|
|
end
|
|
end
|
|
|
|
end
|
|
|