diff --git a/tests/helper.rb b/tests/helper.rb index 9e1810362..38c44a542 100644 --- a/tests/helper.rb +++ b/tests/helper.rb @@ -2,38 +2,10 @@ $LOAD_PATH.unshift File.expand_path(File.join(File.dirname(__FILE__), %w[ .. lib require 'fog' require 'fog/bin' -# Use so you can run in mock mode from the command line -# -# FOG_MOCK=true fog +require File.join(File.dirname(__FILE__), 'helpers', 'mock_helper') -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' - }) +def lorem_file + File.open(File.dirname(__FILE__) + '/lorem.txt', 'r') end # check to see which credentials are available and add others to the skipped tags list @@ -43,7 +15,3 @@ 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 diff --git a/tests/helpers/mock_helper.rb b/tests/helpers/mock_helper.rb new file mode 100644 index 000000000..bf3379645 --- /dev/null +++ b/tests/helpers/mock_helper.rb @@ -0,0 +1,33 @@ +# 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