# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # # Unit tests for ironic::glance # require 'spec_helper' describe 'ironic::glance' do let :default_params do { :auth_type => 'password', :project_name => 'services', :username => 'ironic', } end let :params do {} end shared_examples_for 'ironic glance configuration' do let :p do default_params.merge(params) end it 'configures ironic.conf' do is_expected.to contain_ironic_config('glance/auth_type').with_value(p[:auth_type]) is_expected.to contain_ironic_config('glance/auth_url').with_value('') is_expected.to contain_ironic_config('glance/project_name').with_value(p[:project_name]) is_expected.to contain_ironic_config('glance/username').with_value(p[:username]) is_expected.to contain_ironic_config('glance/password').with_value('').with_secret(true) is_expected.to contain_ironic_config('glance/user_domain_name').with_value('Default') is_expected.to contain_ironic_config('glance/project_domain_name').with_value('Default') is_expected.to contain_ironic_config('glance/system_scope').with_value('') is_expected.to contain_ironic_config('glance/region_name').with_value('') is_expected.to contain_ironic_config('glance/insecure').with_value('') is_expected.to contain_ironic_config('glance/num_retries').with_value('') is_expected.to contain_ironic_config('glance/swift_account').with_value('') is_expected.to contain_ironic_config('glance/swift_container').with_value('') is_expected.to contain_ironic_config('glance/swift_endpoint_url').with_value('') is_expected.to contain_ironic_config('glance/swift_temp_url_key').with_value('').with_secret(true) is_expected.to contain_ironic_config('glance/swift_temp_url_duration').with_value('') is_expected.to contain_ironic_config('glance/endpoint_override').with_value('') end context 'when overriding parameters' do before :each do params.merge!( :auth_type => 'noauth', :auth_url => 'http://example.com', :project_name => 'project1', :username => 'admin', :password => 'pa$$w0rd', :user_domain_name => 'NonDefault', :project_domain_name => 'NonDefault', :region_name => 'regionTwo', :api_servers => '10.0.0.1:9292', :api_insecure => true, :num_retries => 42, :swift_account => '00000000-0000-0000-0000-000000000000', :swift_container => 'glance', :swift_endpoint_url => 'http://example2.com', :swift_temp_url_key => 'the-key', :swift_temp_url_duration => 3600, :endpoint_override => 'http://example2.com', ) end it 'should replace default parameter with new value' do is_expected.to contain_ironic_config('glance/auth_type').with_value(p[:auth_type]) is_expected.to contain_ironic_config('glance/auth_url').with_value(p[:auth_url]) is_expected.to contain_ironic_config('glance/project_name').with_value(p[:project_name]) is_expected.to contain_ironic_config('glance/username').with_value(p[:username]) is_expected.to contain_ironic_config('glance/password').with_value(p[:password]).with_secret(true) is_expected.to contain_ironic_config('glance/user_domain_name').with_value(p[:user_domain_name]) is_expected.to contain_ironic_config('glance/project_domain_name').with_value(p[:project_domain_name]) is_expected.to contain_ironic_config('glance/system_scope').with_value('') is_expected.to contain_ironic_config('glance/region_name').with_value(p[:region_name]) is_expected.to contain_ironic_config('glance/insecure').with_value(p[:api_insecure]) is_expected.to contain_ironic_config('glance/num_retries').with_value(p[:num_retries]) is_expected.to contain_ironic_config('glance/swift_account').with_value(p[:swift_account]) is_expected.to contain_ironic_config('glance/swift_container').with_value(p[:swift_container]) is_expected.to contain_ironic_config('glance/swift_endpoint_url').with_value(p[:swift_endpoint_url]) is_expected.to contain_ironic_config('glance/swift_temp_url_key').with_value(p[:swift_temp_url_key]).with_secret(true) is_expected.to contain_ironic_config('glance/swift_temp_url_duration').with_value(p[:swift_temp_url_duration]) is_expected.to contain_ironic_config('glance/endpoint_override').with_value(p[:endpoint_override]) end end context 'when overriding parameters swift_account_project_name' do before :each do params.merge!( :swift_account_project_name => 'abc', ) end it 'should set swift_account with new value' do is_expected.to contain_ironic_config('glance/swift_account').with_value('abc').with_transform_to('project_uuid') end end context 'when system_scope is set' do before do params.merge!( :system_scope => 'all' ) end it 'configures system-scoped credential' do is_expected.to contain_ironic_config('glance/project_domain_name').with_value('') is_expected.to contain_ironic_config('glance/project_name').with_value('') is_expected.to contain_ironic_config('glance/system_scope').with_value('all') end 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 'ironic glance configuration' end end end