puppet-magnum/spec/classes/magnum_db_mysql_spec.rb
ZhongShengping 4da558324a Include deps class in unit test for mysql
Change-Id: I752ef6cf457a5c8093439c5d4d8ba2ea7ccc365b
2020-10-09 09:59:55 +08:00

105 lines
2.6 KiB
Ruby

require 'spec_helper'
describe 'magnum::db::mysql' do
shared_examples_for 'magnum::db::mysql' do
let :pre_condition do
[
'include mysql::server',
'include magnum::db::sync'
]
end
let :params do
{
'password' => 'magnumpass',
}
end
it { is_expected.to contain_class('magnum::deps') }
context 'with only required params' do
it { is_expected.to contain_openstacklib__db__mysql('magnum').with(
:user => 'magnum',
:password => 'magnumpass',
:dbname => 'magnum',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
)}
end
context "overriding allowed_hosts param to array" do
let :params do
{
:password => 'magnumpass',
:allowed_hosts => ['127.0.0.1','%'],
}
end
it { is_expected.to contain_openstacklib__db__mysql('magnum').with(
:user => 'magnum',
:password => 'magnumpass',
:dbname => 'magnum',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
:allowed_hosts => ['127.0.0.1', '%'],
)}
end
context "overriding allowed_hosts param to string" do
let :params do
{
:password => 'magnumpass',
:allowed_hosts => '192.168.1.1',
}
end
it { is_expected.to contain_openstacklib__db__mysql('magnum').with(
:user => 'magnum',
:password => 'magnumpass',
:dbname => 'magnum',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
:allowed_hosts => '192.168.1.1',
)}
end
context "overriding allowed_hosts equal to host param" do
let :params do
{
:password => 'magnumpass',
:allowed_hosts => '127.0.0.1',
}
end
it { is_expected.to contain_openstacklib__db__mysql('magnum').with(
:user => 'magnum',
:password => 'magnumpass',
:dbname => 'magnum',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
:allowed_hosts => '127.0.0.1',
)}
end
end
on_supported_os({
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "os #{os}" do
let (:facts) do
facts.merge!(OSDefaults.get_facts())
end
it_configures 'magnum::db::mysql'
end
end
end