2013-06-18 17:12:14 -05:00
require 'simplecov'
2013-07-25 10:47:02 -05:00
if ENV [ 'COVERAGE' ] != 'false' && RUBY_VERSION != " 1.9.2 "
require 'coveralls'
2013-06-25 13:18:32 -03:00
SimpleCov . command_name " shindo: #{ Process . pid . to_s } "
SimpleCov . formatter = SimpleCov :: Formatter :: MultiFormatter [
SimpleCov :: Formatter :: HTMLFormatter ,
Coveralls :: SimpleCov :: Formatter
]
SimpleCov . merge_timeout 3600
SimpleCov . start
end
2013-06-18 17:12:14 -05:00
2012-10-29 16:14:42 +00:00
ENV [ 'FOG_RC' ] = ENV [ 'FOG_RC' ] || File . expand_path ( '../.fog' , __FILE__ )
ENV [ 'FOG_CREDENTIAL' ] = ENV [ 'FOG_CREDENTIAL' ] || 'default'
2012-10-18 17:14:23 -07:00
2011-01-10 14:12:48 +08:00
require 'fog'
2012-08-15 17:24:17 +01:00
require 'fog/bin' # for available_providers and registered_providers
2010-11-04 11:12:44 -07:00
2013-06-05 15:46:52 -04:00
Excon . defaults . merge! ( :debug_request = > true , :debug_response = > true )
2011-02-06 01:28:36 +08:00
require File . expand_path ( File . join ( File . dirname ( __FILE__ ) , 'helpers' , 'mock_helper' ) )
2010-11-21 09:02:34 -05:00
2011-01-21 17:42:56 -08:00
def lorem_file
File . open ( File . dirname ( __FILE__ ) + '/lorem.txt' , 'r' )
2011-01-14 11:01:02 -08:00
end
2011-10-26 11:08:48 -03:00
def array_differences ( array_a , array_b )
( array_a - array_b ) | ( array_b - array_a )
end
2010-11-22 17:49:27 -08:00
# check to see which credentials are available and add others to the skipped tags list
2012-08-15 17:24:17 +01:00
all_providers = Fog . registered_providers . map { | provider | provider . downcase }
# Manually remove these providers since they are local applications, not lacking credentials
2013-05-27 19:26:47 +02:00
all_providers = all_providers - [ " libvirt " , " vmfusion " , " openvz " ]
2012-08-15 17:24:17 +01:00
2011-05-24 17:31:05 -07:00
available_providers = Fog . available_providers . map { | provider | provider . downcase }
2012-08-15 17:24:17 +01:00
unavailable_providers = all_providers - available_providers
for provider in unavailable_providers
2012-10-18 17:14:23 -07:00
Formatador . display_line ( " [yellow]Skipping tests for [bold] #{ provider } [/] [yellow]due to lacking credentials (add some to ' #{ Fog . credentials_path } ' to run them)[/] " )
2010-11-22 17:49:27 -08:00
Thread . current [ :tags ] << ( '-' << provider )
end
2012-05-28 13:06:46 -05:00
# mark libvirt tests pending if not setup
begin
require ( 'ruby-libvirt' )
rescue LoadError
2012-05-28 15:17:12 -05:00
Formatador . display_line ( " [yellow]Skipping tests for [bold]libvirt[/] [yellow]due to missing `ruby-libvirt` gem.[/] " )
2012-05-28 13:06:46 -05:00
Thread . current [ :tags ] << '-libvirt'
end