 ea6c158a75
			
		
	
	ea6c158a75
	
	
	
		
			
			The cloudkitty-storage-init command by default loads /etc/cloudkitty/cloudkitty.conf. Removing the override allows us to use additional paths such as cloudkitty.conf.d in the future. Change-Id: I3109005c76a1ffd8f23b3aebd92861a0a4fb419a
		
			
				
	
	
		
			37 lines
		
	
	
		
			1014 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1014 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'spec_helper'
 | |
| 
 | |
| describe 'cloudkitty::storage' do
 | |
| 
 | |
|   shared_examples_for 'cloudkitty-storage-init' do
 | |
| 
 | |
|     it 'runs cloudkitty-storage-init' do
 | |
|       is_expected.to contain_exec('cloudkitty-storage-init').with(
 | |
|         :command     => 'cloudkitty-storage-init ',
 | |
|         :path        => '/usr/bin',
 | |
|         :refreshonly => 'true',
 | |
|         :user        => 'cloudkitty',
 | |
|         :logoutput   => 'on_failure',
 | |
|         :subscribe   => ['Anchor[cloudkitty::install::end]',
 | |
|                          'Anchor[cloudkitty::config::end]',
 | |
|                          'Anchor[cloudkitty::dbsync::end]',
 | |
|                          'Anchor[cloudkitty::storageinit::begin]'],
 | |
|         :notify      => 'Anchor[cloudkitty::storageinit::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_configures 'cloudkitty-storage-init'
 | |
|     end
 | |
|   end
 | |
| 
 | |
| end
 |