
This is done in most other modules and it doesn't make much sense to setup mistral without it. Change-Id: I2f8b6ad7ae3e4defefe58ac749b2268d067167b1
62 lines
1.2 KiB
Ruby
62 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'mistral::db::mysql' do
|
|
|
|
let :pre_condition do
|
|
[
|
|
'include mysql::server',
|
|
]
|
|
end
|
|
|
|
let :facts do
|
|
OSDefaults.get_facts({ :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('mistral').with(
|
|
'user' => 'mistral',
|
|
'password_hash' => '*3DDF34A86854A312A8E2C65B506E21C91800D206',
|
|
'dbname' => 'mistral',
|
|
'host' => '127.0.0.1',
|
|
'charset' => 'utf8',
|
|
:collate => 'utf8_general_ci',
|
|
)}
|
|
end
|
|
|
|
describe "overriding allowed_hosts param to array" do
|
|
let :params do
|
|
{
|
|
:password => 'mistralpass',
|
|
:allowed_hosts => ['127.0.0.1','%']
|
|
}
|
|
end
|
|
|
|
end
|
|
describe "overriding allowed_hosts param to string" do
|
|
let :params do
|
|
{
|
|
:password => 'mistralpass2',
|
|
:allowed_hosts => '192.168.1.1'
|
|
}
|
|
end
|
|
|
|
end
|
|
|
|
describe "overriding allowed_hosts param equals to host param " do
|
|
let :params do
|
|
{
|
|
:password => 'mistralpass2',
|
|
:allowed_hosts => '127.0.0.1'
|
|
}
|
|
end
|
|
|
|
end
|
|
|
|
end
|