2016-01-29 17:39:33 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'nova::db::mysql_api' do
|
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
shared_examples_for 'nova::db::mysql_api' do
|
2016-01-29 17:39:33 -05:00
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
let :pre_condition do
|
|
|
|
'include mysql::server'
|
|
|
|
end
|
2016-01-29 17:39:33 -05:00
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
let :required_params do
|
2020-05-17 09:21:48 +09:00
|
|
|
{ :password => "novapass" }
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
context 'with only required params' do
|
2016-01-29 17:39:33 -05:00
|
|
|
let :params do
|
|
|
|
required_params
|
|
|
|
end
|
|
|
|
it { is_expected.to contain_openstacklib__db__mysql('nova_api').with(
|
2020-05-17 09:21:48 +09:00
|
|
|
:user => 'nova_api',
|
|
|
|
:password => 'novapass',
|
|
|
|
:charset => 'utf8',
|
|
|
|
:collate => 'utf8_general_ci',
|
2016-01-29 17:39:33 -05:00
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
context 'overriding allowed_hosts param to array' do
|
2016-01-29 17:39:33 -05:00
|
|
|
let :params do
|
2020-05-17 09:21:48 +09:00
|
|
|
{ :allowed_hosts => ['127.0.0.1','%'] }.merge(required_params)
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
it { is_expected.to contain_openstacklib__db__mysql('nova_api').with(
|
|
|
|
:user => 'nova_api',
|
2020-05-17 09:21:48 +09:00
|
|
|
:password => 'novapass',
|
2016-06-07 00:59:36 -03:00
|
|
|
:charset => 'utf8',
|
|
|
|
:collate => 'utf8_general_ci',
|
|
|
|
:allowed_hosts => ['127.0.0.1','%'],
|
|
|
|
)}
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
context 'overriding allowed_hosts param to string' do
|
2016-01-29 17:39:33 -05:00
|
|
|
let :params do
|
2020-05-17 09:21:48 +09:00
|
|
|
{ :allowed_hosts => '192.168.1.1' }.merge(required_params)
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to contain_openstacklib__db__mysql('nova_api').with(
|
|
|
|
:user => 'nova_api',
|
2020-05-17 09:21:48 +09:00
|
|
|
:password => 'novapass',
|
2016-01-29 17:39:33 -05:00
|
|
|
:charset => 'utf8',
|
|
|
|
:collate => 'utf8_general_ci',
|
2016-06-07 00:59:36 -03:00
|
|
|
:allowed_hosts => '192.168.1.1',
|
2016-01-29 17:39:33 -05:00
|
|
|
)}
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when overriding charset' do
|
|
|
|
let :params do
|
2020-05-17 09:21:48 +09:00
|
|
|
{ :charset => 'latin1' }.merge(required_params)
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
it { is_expected.to contain_openstacklib__db__mysql('nova_api').with(
|
|
|
|
:charset => 'latin1',
|
|
|
|
)}
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
on_supported_os({
|
|
|
|
:supported_os => OSDefaults.get_supported_os
|
|
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
|
|
let (:facts) do
|
|
|
|
facts.merge!(OSDefaults.get_facts())
|
|
|
|
end
|
2016-01-29 17:39:33 -05:00
|
|
|
|
2016-06-07 00:59:36 -03:00
|
|
|
it_configures 'nova::db::mysql_api'
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|
|
|
|
end
|
2016-06-07 00:59:36 -03:00
|
|
|
|
2016-01-29 17:39:33 -05:00
|
|
|
end
|