require 'spec_helper' describe 'nova::key_manager::barbican' do shared_examples 'nova::key_manager::barbican' do context 'with default parameters' do it { is_expected.to contain_oslo__key_manager__barbican('nova_config').with( :barbican_endpoint => '', :barbican_api_version => '', :auth_endpoint => '', :retry_delay => '', :number_of_retries => '', :barbican_endpoint_type => '', :barbican_region_name => '', ) is_expected.to contain_package('cryptsetup').with( :ensure => 'installed', :tag => 'openstack', ) } end context 'with specified parameters' do let :params do { :barbican_endpoint => 'http://localhost:9311/', :barbican_api_version => 'v1', :auth_endpoint => 'http://localhost:5000', :retry_delay => 1, :number_of_retries => 60, :barbican_endpoint_type => 'public', :barbican_region_name => 'regionOne', } end it { is_expected.to contain_oslo__key_manager__barbican('nova_config').with( :barbican_endpoint => 'http://localhost:9311/', :barbican_api_version => 'v1', :auth_endpoint => 'http://localhost:5000', :retry_delay => 1, :number_of_retries => 60, :barbican_endpoint_type => 'public', :barbican_region_name => 'regionOne', ) is_expected.to contain_package('cryptsetup').with( :ensure => 'installed', :tag => 'openstack', ) } 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 'nova::key_manager::barbican' end end end