mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
50 lines
2.2 KiB
Ruby
50 lines
2.2 KiB
Ruby
$LOAD_PATH.unshift File.expand_path(File.join(File.dirname(__FILE__), %w[ .. lib fog]))
|
|
|
|
require 'fog'
|
|
require 'fog/bin'
|
|
|
|
# Use so you can run in mock mode from the command line
|
|
#
|
|
# FOG_MOCK=true fog
|
|
|
|
if ENV["FOG_MOCK"] == "true"
|
|
Fog.mock!
|
|
end
|
|
|
|
# if in mocked mode, fill in some fake credentials for us
|
|
if Fog.mock?
|
|
Fog.instance_variable_set(:@credentials, {
|
|
:aws_access_key_id => 'aws_access_key_id',
|
|
:aws_secret_access_key => 'aws_secret_access_key',
|
|
:bluebox_api_key => 'bluebox_api_key',
|
|
:bluebox_customer_id => 'bluebox_customer_id',
|
|
:brightbox_client_id => 'brightbox_client_id',
|
|
:brightbox_secret => 'brightbox_secret',
|
|
:go_grid_api_key => 'go_grid_api_key',
|
|
:go_grid_shared_secret => 'go_grid_shared_secret',
|
|
:google_storage_access_key_id => 'google_storage_access_key_id',
|
|
:google_storage_secret_access_key => 'google_storage_secret_access_key',
|
|
:linode_api_key => 'linode_api_key',
|
|
:new_servers_password => 'new_servers_password',
|
|
:new_servers_username => 'new_servers_username',
|
|
# :public_key_path => '~/.ssh/id_rsa.pub',
|
|
# :private_key_path => '~/.ssh/id_rsa',
|
|
:rackspace_api_key => 'rackspace_api_key',
|
|
:rackspace_username => 'rackspace_username',
|
|
:slicehost_password => 'slicehost_password',
|
|
:zerigo_email => 'zerigo_email',
|
|
:zerigo_token => 'zerigo_token'
|
|
})
|
|
end
|
|
|
|
# check to see which credentials are available and add others to the skipped tags list
|
|
all_providers = ['aws', 'bluebox', 'brightbox', 'gogrid', 'google', 'linode', 'local', 'newservers', 'rackspace', 'slicehost', 'zerigo']
|
|
available_providers = Fog.providers.map {|provider| provider.to_s.downcase}
|
|
for provider in (all_providers - available_providers)
|
|
Formatador.display_line("[yellow]Skipping tests for [bold]#{provider}[/] [yellow]due to lacking credentials (add some to '~/.fog' to run them)[/]")
|
|
Thread.current[:tags] << ('-' << provider)
|
|
end
|
|
|
|
def lorem_file
|
|
File.open(File.dirname(__FILE__) + '/lorem.txt', 'r')
|
|
end
|