require 'spec_helper' describe 'heat::db' do shared_examples 'heat::db' do context 'with default parameters' do it { should contain_class('heat::deps') } it { should contain_oslo__db('heat_config').with( :db_max_retries => '', :connection => 'sqlite:////var/lib/heat/heat.sqlite', :connection_recycle_time => '', :min_pool_size => '', :max_pool_size => '', :max_retries => '', :retry_interval => '', :max_overflow => '', :pool_timeout => '', )} it { should contain_class('heat::db::sync') } end context 'with specific parameters' do let :params do { :database_connection => 'mysql+pymysql://heat:heat@localhost/heat', :database_connection_recycle_time => '3601', :database_min_pool_size => '2', :database_max_pool_size => '12', :database_max_retries => '11', :database_retry_interval => '11', :database_db_max_retries => '-1', :database_max_overflow => '21', :database_pool_timeout => '21', :sync_db => false } end it { should contain_class('heat::deps') } it { should contain_oslo__db('heat_config').with( :db_max_retries => '-1', :connection => 'mysql+pymysql://heat:heat@localhost/heat', :connection_recycle_time => '3601', :min_pool_size => '2', :max_pool_size => '12', :max_retries => '11', :retry_interval => '11', :max_overflow => '21', :pool_timeout => '21', )} it { should_not contain_class('heat::db::sync') } end end 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 it_behaves_like 'heat::db' end end end