
This is the initial commit for puppet-zaqar. 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: Iaca8f89dd22320ec0e08bfb8ec9b5912ad68c9fb Co-Authored-By: yguenane@redhat.com
63 lines
1.2 KiB
Ruby
63 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'zaqar::db::mysql' do
|
|
|
|
let :pre_condition do
|
|
[
|
|
'include mysql::server',
|
|
'include zaqar::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('zaqar').with(
|
|
'user' => 'zaqar',
|
|
'password_hash' => '*3DDF34A86854A312A8E2C65B506E21C91800D206',
|
|
'dbname' => 'zaqar',
|
|
'host' => '127.0.0.1',
|
|
'charset' => 'utf8',
|
|
:collate => 'utf8_general_ci',
|
|
)}
|
|
end
|
|
|
|
describe "overriding allowed_hosts param to array" do
|
|
let :params do
|
|
{
|
|
:password => 'zaqarpass',
|
|
:allowed_hosts => ['127.0.0.1','%']
|
|
}
|
|
end
|
|
|
|
end
|
|
describe "overriding allowed_hosts param to string" do
|
|
let :params do
|
|
{
|
|
:password => 'zaqarpass2',
|
|
:allowed_hosts => '192.168.1.1'
|
|
}
|
|
end
|
|
|
|
end
|
|
|
|
describe "overriding allowed_hosts param equals to host param " do
|
|
let :params do
|
|
{
|
|
:password => 'zaqarpass2',
|
|
:allowed_hosts => '127.0.0.1'
|
|
}
|
|
end
|
|
|
|
end
|
|
|
|
end
|