
The os_database_connection function is an helper used to build database connection URI from various parameters. Example: os_database_connection({ dialect => 'mysql', host => '127.0.0.1', port => '3306', username => 'guest', password => 's3cr3t', database => 'test', charset => 'utf-8' }) Result: mysql://guest:s3cr3t@127.0.0.1:3306/test?charset=utf-8 Change-Id: Id0bde33891112e36f13d3f8fdf0ff89820c09c01
135 lines
4.0 KiB
Ruby
135 lines
4.0 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'os_database_connection' do
|
|
|
|
it 'refuses String' do
|
|
should run.with_params('foo').\
|
|
and_raise_error(Puppet::ParseError, /Requires an hash/)
|
|
end
|
|
|
|
it 'refuses Array' do
|
|
should run.with_params(['foo']).\
|
|
and_raise_error(Puppet::ParseError, /Requires an hash/)
|
|
end
|
|
|
|
it 'refuses without at least one argument' do
|
|
should run.with_params().\
|
|
and_raise_error(Puppet::ParseError, /Wrong number of arguments/)
|
|
end
|
|
|
|
it 'refuses too many arguments' do
|
|
should run.with_params('foo', 'bar').\
|
|
and_raise_error(Puppet::ParseError, /Wrong number of arguments/)
|
|
end
|
|
|
|
it 'fails if port is provided with missing host' do
|
|
should run.with_params({
|
|
'dialect' => 'sqlite',
|
|
'database' => '/var/lib/keystone/keystone.db',
|
|
'port' => '3306',
|
|
'charset' => 'utf-8'
|
|
}).and_raise_error(Puppet::ParseError, /host is required with port/)
|
|
end
|
|
|
|
context 'creates the correct connection URI' do
|
|
|
|
it 'with all parameters' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'port' => '3306',
|
|
'database' => 'test',
|
|
'username' => 'guest',
|
|
'password' => 's3cr3t',
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://guest:s3cr3t@127.0.0.1:3306/test?charset=utf-8')
|
|
end
|
|
|
|
it 'without port' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'database' => 'test',
|
|
'username' => 'guest',
|
|
'password' => 's3cr3t',
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://guest:s3cr3t@127.0.0.1/test?charset=utf-8')
|
|
end
|
|
|
|
it 'without host and port' do
|
|
should run.with_params({
|
|
'dialect' => 'sqlite',
|
|
'database' => '/var/lib/keystone/keystone.db',
|
|
'charset' => 'utf-8'
|
|
}).and_return('sqlite:////var/lib/keystone/keystone.db?charset=utf-8')
|
|
end
|
|
|
|
it 'without username and password' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'port' => '3306',
|
|
'database' => 'test',
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://127.0.0.1:3306/test?charset=utf-8')
|
|
end
|
|
|
|
it 'with username set to undef' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'port' => '3306',
|
|
'database' => 'test',
|
|
'username' => :undef,
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://127.0.0.1:3306/test?charset=utf-8')
|
|
end
|
|
|
|
it 'with username set to an empty string' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'port' => '3306',
|
|
'database' => 'test',
|
|
'username' => '',
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://127.0.0.1:3306/test?charset=utf-8')
|
|
end
|
|
|
|
it 'without password' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'port' => '3306',
|
|
'database' => 'test',
|
|
'username' => 'guest',
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://guest@127.0.0.1:3306/test?charset=utf-8')
|
|
end
|
|
|
|
it 'with password set to undef' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'port' => '3306',
|
|
'database' => 'test',
|
|
'username' => 'guest',
|
|
'password' => :undef,
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://guest@127.0.0.1:3306/test?charset=utf-8')
|
|
end
|
|
|
|
it 'with password set to an empty string' do
|
|
should run.with_params({
|
|
'dialect' => 'mysql',
|
|
'host' => '127.0.0.1',
|
|
'port' => '3306',
|
|
'database' => 'test',
|
|
'username' => 'guest',
|
|
'password' => '',
|
|
'charset' => 'utf-8'
|
|
}).and_return('mysql://guest@127.0.0.1:3306/test?charset=utf-8')
|
|
end
|
|
end
|
|
end
|