Files
puppet-gnocchi/spec/classes/gnocchi_db_spec.rb
Alex Schultz 9786b38533 Support of PyMySQL driver for MySQL backend
This change adds the ability to use the python-pymysql library as a
backend for MySQL connections. This change also updates the acceptance
test to leverage the pymsql driver.

Change-Id: I535c6e045d9dbb7cc953275ffe07235d68bb38e4
2016-01-04 17:09:19 -07:00

117 lines
3.3 KiB
Ruby

require 'spec_helper'
describe 'gnocchi::db' do
shared_examples 'gnocchi::db' do
context 'with default parameters' do
it { is_expected.to contain_gnocchi_config('indexer/url').with_value('sqlite:////var/lib/gnocchi/gnocchi.sqlite').with_secret(true) }
it 'installs packages' do
is_expected.to contain_package('gnocchi-indexer-sqlalchemy').with(
:name => platform_params[:gnocchi_indexer_package],
:ensure => 'present',
:tag => ['openstack', 'gnocchi-package']
)
end
end
context 'with specific parameters' do
let :params do
{ :database_connection => 'mysql+pymysql://gnocchi:gnocchi@localhost/gnocchi' }
end
it { is_expected.to contain_gnocchi_config('indexer/url').with_value('mysql+pymysql://gnocchi:gnocchi@localhost/gnocchi').with_secret(true) }
end
context 'with postgresql backend' do
let :params do
{ :database_connection => 'postgresql://gnocchi:gnocchi@localhost/gnocchi', }
end
it 'install the proper backend package' do
is_expected.to contain_package('python-psycopg2').with(:ensure => 'present')
end
end
context 'with MySQL-python library as backend package' do
let :params do
{ :database_connection => 'mysql://gnocchi:gnocchi@localhost/gnocchi', }
end
it { is_expected.to contain_package('python-mysqldb').with(:ensure => 'present') }
end
context 'with incorrect database_connection string' do
let :params do
{ :database_connection => 'redis://gnocchi:gnocchi@localhost/gnocchi', }
end
it_raises 'a Puppet::Error', /validate_re/
end
context 'with incorrect pymysql database_connection string' do
let :params do
{ :database_connection => 'foo+pymysql://gnocchi:gnocchi@localhost/gnocchi', }
end
it_raises 'a Puppet::Error', /validate_re/
end
end
context 'on Debian platforms' do
let :facts do
@default_facts.merge({
:osfamily => 'Debian',
:operatingsystem => 'Debian',
:operatingsystemrelease => 'jessie',
})
end
let :platform_params do
{ :gnocchi_indexer_package => 'gnocchi-indexer-sqlalchemy' }
end
it_configures 'gnocchi::db'
context 'using pymysql driver' do
let :params do
{ :database_connection => 'mysql+pymysql://gnocchi:gnocchi@localhost/gnocchi', }
end
it 'install the proper backend package' do
is_expected.to contain_package('gnocchi-backend-package').with(
:ensure => 'present',
:name => 'python-pymysql',
:tag => 'openstack'
)
end
end
end
context 'on Redhat platforms' do
let :facts do
@default_facts.merge({
:osfamily => 'RedHat',
:operatingsystemrelease => '7.1',
})
end
let :platform_params do
{ :gnocchi_indexer_package => 'openstack-gnocchi-indexer-sqlalchemy' }
end
it_configures 'gnocchi::db'
context 'using pymysql driver' do
let :params do
{ :database_connection => 'mysql+pymysql://gnocchi:gnocchi@localhost/gnocchi', }
end
it { is_expected.not_to contain_package('gnocchi-backend-package') }
end
end
end