puppet-octavia/spec/classes/octavia_db_mysql_spec.rb
Emilien Macchi 481dde1725 puppet-octavia: Initial commit
This is the initial commit for puppet-octavia.
It has been automatically generated using cookiecutter[1] and msync[2]

[1] https://github.com/openstack/puppet-openstack-cookiecutter
[2] https://github.com/openstack/puppet-modulesync-configs

Change-Id: Ieeb5f5c94f093c163fd15ff80672b1f0e4a66ba0
2016-03-09 18:09:58 -05:00

61 lines
1.7 KiB
Ruby

require 'spec_helper'
describe 'octavia::db::mysql' do
let :pre_condition do
[
'include mysql::server',
'include octavia::db::sync'
]
end
let :facts do
{ :osfamily => 'Debian' }
end
let :params do
{
'password' => 'fooboozoo_default_password',
}
end
describe 'with only required params' do
it { is_expected.to contain_openstacklib__db__mysql('octavia').with(
:user => 'octavia',
:password_hash => '*3DDF34A86854A312A8E2C65B506E21C91800D206',
:dbname => 'octavia',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
)}
end
describe "overriding allowed_hosts param to array" do
before { params.merge!( :allowed_hosts => ['127.0.0.1','%'] ) }
it { is_expected.to contain_openstacklib__db__mysql('octavia').with(
:user => 'octavia',
:password_hash => '*3DDF34A86854A312A8E2C65B506E21C91800D206',
:dbname => 'octavia',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
:allowed_hosts => ['127.0.0.1','%']
)}
end
describe "overriding allowed_hosts param to string" do
before { params.merge!( :allowed_hosts => '192.168.1.1' ) }
it { is_expected.to contain_openstacklib__db__mysql('octavia').with(
:user => 'octavia',
:password_hash => '*3DDF34A86854A312A8E2C65B506E21C91800D206',
:dbname => 'octavia',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
:allowed_hosts => '192.168.1.1'
)}
end
end