Merge "Add test coverage for keystone::db::mysql"

This commit is contained in:
Jenkins 2015-11-19 17:11:42 +00:00 committed by Gerrit Code Review
commit 4c6bd18b6a
1 changed files with 37 additions and 7 deletions

View File

@ -15,18 +15,18 @@ describe 'keystone::db::mysql' do
let :params do
{
'password' => 'keystone_default_password',
:password => 'keystone_default_password',
}
end
describe 'with only required params' do
it { is_expected.to contain_openstacklib__db__mysql('keystone').with(
'user' => 'keystone',
'password_hash' => '*B552157B14BCEDDCEAA06767A012F31BDAA9CE3D',
'dbname' => 'keystone',
'host' => '127.0.0.1',
'charset' => 'utf8',
:collate => 'utf8_general_ci',
:user => 'keystone',
:password_hash => '*B552157B14BCEDDCEAA06767A012F31BDAA9CE3D',
:dbname => 'keystone',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
)}
end
@ -38,6 +38,16 @@ describe 'keystone::db::mysql' do
}
end
it { is_expected.to contain_openstacklib__db__mysql('keystone').with(
:user => 'keystone',
:password_hash => '*706BFA85E15D0C1D8467D0D81D784F6A04CE4ABB',
:dbname => 'keystone',
: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
let :params do
@ -47,6 +57,16 @@ describe 'keystone::db::mysql' do
}
end
it { is_expected.to contain_openstacklib__db__mysql('keystone').with(
:user => 'keystone',
:password_hash => '*47651CDAAB340A79CC838378072877FFFBF0B239',
:dbname => 'keystone',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
:allowed_hosts => '192.168.1.1',
)}
end
describe "overriding allowed_hosts param equals to host param " do
@ -57,6 +77,16 @@ describe 'keystone::db::mysql' do
}
end
it { is_expected.to contain_openstacklib__db__mysql('keystone').with(
:user => 'keystone',
:password_hash => '*47651CDAAB340A79CC838378072877FFFBF0B239',
:dbname => 'keystone',
:host => '127.0.0.1',
:charset => 'utf8',
:collate => 'utf8_general_ci',
:allowed_hosts => '127.0.0.1',
)}
end
end