require 'spec_helper' describe 'heat' do let :pre_condition do "class { 'heat::keystone::authtoken': password => 'secretpassword', }" end let :params do { :package_ensure => 'present', :flavor => 'keystone', :purge_config => false, :yaql_limit_iterators => 400, :yaql_memory_quota => 20000, } end shared_examples_for 'heat' do context 'with a normal setup' do it_configures 'a heat base installation' it_configures 'configures default rabbitmq parameters' end context 'with HA support' do it_configures 'configures rabbit with HA and durable' end context 'with rabbit heartbeat configured' do before { params.merge!( :rabbit_heartbeat_timeout_threshold => '60', :rabbit_heartbeat_rate => '10', :rabbit_heartbeat_in_pthread => true ) } it_configures 'a heat base installation' it_configures 'rabbit with heartbeat configured' end it_configures 'with SSL enabled with kombu' it_configures 'with SSL enabled without kombu' it_configures 'with SSL disabled' it_configures 'with enable_stack_adopt and enable_stack_abandon set' it_configures 'with overridden messaging default parameters' it_configures 'with notification_driver set to a string' context 'with amqp messaging' do it_configures 'amqp support' end end shared_examples_for 'a heat base installation' do it { is_expected.to contain_class('heat::params') } it 'installs heat common package' do is_expected.to contain_package('heat-common').with( :ensure => 'present', :name => platform_params[:common_package_name], :tag => ['openstack', 'heat-package'], ) end it 'passes purge to resource' do is_expected.to contain_resources('heat_config').with({ :purge => false }) end it 'has db_sync enabled' do is_expected.to contain_class('heat::db::sync') end it 'configures host' do is_expected.to contain_heat_config('DEFAULT/host').with_value('') end it 'configures default messaging default parameters' do is_expected.to contain_oslo__messaging__default('heat_config').with( :transport_url => '', :rpc_response_timeout => '', :control_exchange => '', :executor_thread_pool_size => '', ) end it 'configures max_template_size' do is_expected.to contain_heat_config('DEFAULT/max_template_size').with_value('') end it 'configures max_json_body_size' do is_expected.to contain_heat_config('DEFAULT/max_json_body_size').with_value('') end it 'configures user_domain_*' do is_expected.to contain_heat_config('trustee/user_domain_name').with_value( 'Default' ) end it 'configures auth_type' do is_expected.to contain_heat_config('trustee/auth_type').with_value( 'password' ) end it 'configures auth_url' do is_expected.to contain_heat_config('trustee/auth_url').with_value( 'http://127.0.0.1:5000/' ) end it 'configures username' do is_expected.to contain_heat_config('trustee/username').with_value( 'heat' ) end it 'configures ' do is_expected.to contain_heat_config('trustee/password').with_secret( true ) end it 'configures endpoint_type for clients' do is_expected.to contain_heat_config('clients/endpoint_type').with_value( '' ) end it 'configures keystone_ec2_uri' do is_expected.to contain_heat_config('ec2authtoken/auth_uri').with_value( '' ) end it 'configures yaql_limit_iterators' do is_expected.to contain_heat_config('yaql/limit_iterators').with_value( params[:yaql_limit_iterators] ) end it 'configures yaql_memory_quota' do is_expected.to contain_heat_config('yaql/memory_quota').with_value( params[:yaql_memory_quota] ) end it { is_expected.to contain_heat_config('paste_deploy/flavor').with_value('keystone') } it 'configures notification_driver' do is_expected.to contain_oslo__messaging__notifications('heat_config').with( :driver => '', :transport_url => '', :topics => '' ) end it 'sets default value for http_proxy_to_wsgi middleware' do is_expected.to contain_oslo__middleware('heat_config').with( :enable_proxy_headers_parsing => '', :max_request_body_size => '', ) end it 'sets clients_heat url' do is_expected.to contain_heat_config('clients_heat/url').with_value('') end end shared_examples_for 'configures default rabbitmq parameters' do it 'configures rabbit' do is_expected.to contain_oslo__messaging__rabbit('heat_config').with( :kombu_ssl_version => '', :kombu_ssl_keyfile => '', :kombu_ssl_certfile => '', :kombu_ssl_ca_certs => '', :kombu_reconnect_delay => '', :kombu_failover_strategy => '', :kombu_compression => '', :heartbeat_timeout_threshold => '', :heartbeat_rate => '', :heartbeat_in_pthread => '', :rabbit_use_ssl => '', :amqp_durable_queues => '', :rabbit_ha_queues => '', ) end end shared_examples_for 'configures rabbit with HA and durable' do before do params.merge!( :rabbit_ha_queues => true, :amqp_durable_queues => true ) end it 'configures rabbit' do is_expected.to contain_oslo__messaging__rabbit('heat_config').with( :kombu_ssl_version => '', :kombu_ssl_keyfile => '', :kombu_ssl_certfile => '', :kombu_ssl_ca_certs => '', :kombu_reconnect_delay => '', :kombu_failover_strategy => '', :kombu_compression => '', :heartbeat_timeout_threshold => '', :heartbeat_rate => '', :heartbeat_in_pthread => '', :rabbit_use_ssl => '', :amqp_durable_queues => true, :rabbit_ha_queues => true, ) end end shared_examples_for 'rabbit with heartbeat configured' do it 'configures rabbit' do is_expected.to contain_oslo__messaging__rabbit('heat_config').with( :kombu_ssl_version => '', :kombu_ssl_keyfile => '', :kombu_ssl_certfile => '', :kombu_ssl_ca_certs => '', :kombu_reconnect_delay => '', :kombu_failover_strategy => '', :kombu_compression => '', :heartbeat_timeout_threshold => '60', :heartbeat_rate => '10', :heartbeat_in_pthread => true, :rabbit_use_ssl => '', :amqp_durable_queues => '', :rabbit_ha_queues => '', ) end end shared_examples_for 'with SSL enabled with kombu' do before do params.merge!( :rabbit_use_ssl => true, :kombu_ssl_ca_certs => '/path/to/ssl/ca/certs', :kombu_ssl_certfile => '/path/to/ssl/cert/file', :kombu_ssl_keyfile => '/path/to/ssl/keyfile', :kombu_ssl_version => 'TLSv1' ) end it { is_expected.to contain_oslo__messaging__rabbit('heat_config').with( :kombu_ssl_version => 'TLSv1', :kombu_ssl_keyfile => '/path/to/ssl/keyfile', :kombu_ssl_certfile => '/path/to/ssl/cert/file', :kombu_ssl_ca_certs => '/path/to/ssl/ca/certs', :rabbit_use_ssl => true, )} end shared_examples_for 'with SSL enabled without kombu' do before do params.merge!( :rabbit_use_ssl => true ) end it { is_expected.to contain_oslo__messaging__rabbit('heat_config').with( :rabbit_use_ssl => true, )} end shared_examples_for 'with SSL disabled' do before do params.merge!( :rabbit_use_ssl => false, ) end it { is_expected.to contain_oslo__messaging__rabbit('heat_config').with( :rabbit_use_ssl => false, )} end shared_examples_for 'with heat_clients_endpoint_type set' do before do params.merge!( :heat_clients_endpoint_type => 'internal', ) end it do is_expected.to contain_heat_config('clients/endpoint_type').with_value('internal') end end shared_examples_for 'with ec2authtoken auth uri set' do before do params.merge!( :keystone_ec2_uri => 'http://1.2.3.4:5000/v3/ec2tokens' ) end it do is_expected.to contain_heat_config('ec2authtoken/auth_uri').with_value('http://1.2.3.4:5000/v3/ec2tokens') end end shared_examples_for 'with region_name set' do before do params.merge!( :region_name => "East", ) end it 'has region_name set when specified' do is_expected.to contain_heat_config('DEFAULT/region_name_for_services').with_value('East') end end shared_examples_for 'without region_name set' do it 'doesnt have region_name set by default' do is_expected.to contain_heat_config('DEFAULT/region_name_for_services').with_value('') end end shared_examples_for "with custom keystone project_domain_* and user_domain_*" do before do params.merge!({ :keystone_user_domain_name => 'domain1', }) end it 'configures project_domain_* and user_domain_*' do is_expected.to contain_heat_config('trustee/user_domain_name').with_value("domain1"); end end shared_examples_for "with enable_stack_adopt and enable_stack_abandon set" do before do params.merge!({ :enable_stack_adopt => true, :enable_stack_abandon => true, }) end it 'sets enable_stack_adopt and enable_stack_abandon' do is_expected.to contain_heat_config('DEFAULT/enable_stack_adopt').with_value(true); is_expected.to contain_heat_config('DEFAULT/enable_stack_abandon').with_value(true); end end shared_examples_for 'with overridden messaging default parameters' do before do params.merge!( :default_transport_url => 'rabbit://rabbit_user:password@localhost:5673', :rpc_response_timeout => 120, :control_exchange => 'heat', :executor_thread_pool_size => 64, ) end it 'configures messaging default parameters' do is_expected.to contain_oslo__messaging__default('heat_config').with( :transport_url => 'rabbit://rabbit_user:password@localhost:5673', :rpc_response_timeout => 120, :control_exchange => 'heat', :executor_thread_pool_size => 64, ) end end shared_examples_for 'with notification_driver set to a string' do before do params.merge!( :notification_transport_url => 'rabbit://rabbit_user:password@localhost:5673', :notification_driver => 'messagingv2', :notification_topics => 'notifications', ) end it 'has notification_driver set when specified' do is_expected.to contain_oslo__messaging__notifications('heat_config').with( :driver => 'messagingv2', :transport_url => 'rabbit://rabbit_user:password@localhost:5673', :topics => 'notifications' ) end end shared_examples_for 'amqp support' do context 'with default parameters' do it { is_expected.to contain_oslo__messaging__amqp('heat_config').with( :server_request_prefix => '', :broadcast_prefix => '', :group_request_prefix => '', :container_name => '', :idle_timeout => '', :trace => '', :ssl_ca_file => '', :ssl_cert_file => '', :ssl_key_file => '', :ssl_key_password => '', :sasl_mechanisms => '', :sasl_config_dir => '', :sasl_config_name => '', :username => '', :password => '', ) } end context 'with overridden amqp parameters' do before { params.merge!( :amqp_idle_timeout => '60', :amqp_trace => true, :amqp_ssl_ca_file => '/path/to/ca.cert', :amqp_ssl_cert_file => '/path/to/certfile', :amqp_ssl_key_file => '/path/to/key', :amqp_username => 'amqp_user', :amqp_password => 'password', ) } it { is_expected.to contain_oslo__messaging__amqp('heat_config').with( :server_request_prefix => '', :broadcast_prefix => '', :group_request_prefix => '', :container_name => '', :idle_timeout => '60', :trace => true, :ssl_ca_file => '/path/to/ca.cert', :ssl_cert_file => '/path/to/certfile', :ssl_key_file => '/path/to/key', :ssl_key_password => '', :sasl_mechanisms => '', :sasl_config_dir => '', :sasl_config_name => '', :username => 'amqp_user', :password => 'password', ) } 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 let :platform_params do case facts[:os]['family'] when 'Debian' { :common_package_name => 'heat-common' } when 'RedHat' { :common_package_name => 'openstack-heat-common' } end end it_behaves_like 'heat' end end end