2013-02-20 09:14:34 -05:00
|
|
|
Shindo.tests('Fog::Compute::RackspaceV2', ['rackspace']) do
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-02-20 09:14:34 -05:00
|
|
|
def assert_method(url, method)
|
|
|
|
@service.instance_variable_set "@rackspace_auth_url", url
|
|
|
|
returns(method) { @service.send :authentication_method }
|
|
|
|
end
|
|
|
|
|
|
|
|
tests('#authentication_method') do
|
2013-03-15 12:55:40 -04:00
|
|
|
@service = Fog::Compute::RackspaceV2.new
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-02-20 09:14:34 -05:00
|
|
|
assert_method nil, :authenticate_v2
|
2013-02-26 10:52:53 -05:00
|
|
|
|
2013-02-26 11:05:23 -05:00
|
|
|
assert_method 'auth.api.rackspacecloud.com', :authenticate_v1 # chef's default auth endpoint
|
|
|
|
|
2013-02-26 10:52:53 -05:00
|
|
|
assert_method 'https://identity.api.rackspacecloud.com', :authenticate_v1
|
2013-02-20 09:14:34 -05:00
|
|
|
assert_method 'https://identity.api.rackspacecloud.com/v1', :authenticate_v1
|
2013-08-02 13:33:10 -04:00
|
|
|
assert_method 'https://identity.api.rackspacecloud.com/v1.1', :authenticate_v1
|
2013-02-20 09:14:34 -05:00
|
|
|
assert_method 'https://identity.api.rackspacecloud.com/v2.0', :authenticate_v2
|
2013-08-02 13:33:10 -04:00
|
|
|
|
|
|
|
assert_method 'https://lon.identity.api.rackspacecloud.com', :authenticate_v1
|
2013-02-20 09:14:34 -05:00
|
|
|
assert_method 'https://lon.identity.api.rackspacecloud.com/v1', :authenticate_v1
|
|
|
|
assert_method 'https://lon.identity.api.rackspacecloud.com/v1.1', :authenticate_v1
|
|
|
|
assert_method 'https://lon.identity.api.rackspacecloud.com/v2.0', :authenticate_v2
|
|
|
|
end
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-02-20 09:14:34 -05:00
|
|
|
tests('legacy authentication') do
|
|
|
|
pending if Fog.mocking?
|
|
|
|
|
2013-03-15 17:38:33 -04:00
|
|
|
tests('variables populated').succeeds do
|
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v1.0'
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(false, "path populated") { @service.instance_variable_get("@uri").path.nil? }
|
2013-03-15 10:11:39 -04:00
|
|
|
returns(true, "identity_service was not used") { @service.instance_variable_get("@identity_service").nil? }
|
2013-03-15 17:38:33 -04:00
|
|
|
@service.list_flavors
|
2013-02-20 09:14:34 -05:00
|
|
|
end
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-02-20 09:14:34 -05:00
|
|
|
tests('custom endpoint') do
|
2013-08-02 13:33:10 -04:00
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v1.0',
|
2013-02-20 16:48:19 -05:00
|
|
|
:rackspace_compute_url => 'https://my-custom-endpoint.com'
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(true, "uses custom endpoint") { (@service.instance_variable_get("@uri").host =~ /my-custom-endpoint\.com/) != nil }
|
2013-02-20 09:14:34 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
tests('current authentation') do
|
|
|
|
pending if Fog.mocking?
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-03-15 17:38:33 -04:00
|
|
|
tests('variables populated').succeeds do
|
2013-05-30 13:52:37 -04:00
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0', :connection_options => {:ssl_verify_peer => true}
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(false, "path populated") { @service.instance_variable_get("@uri").host.nil? }
|
2013-05-30 13:52:37 -04:00
|
|
|
identity_service = @service.instance_variable_get("@identity_service")
|
|
|
|
returns(false, "identity service was used") { identity_service.nil? }
|
|
|
|
returns(true, "connection_options are passed") { identity_service.instance_variable_get("@connection_options").has_key?(:ssl_verify_peer) }
|
2013-03-15 17:38:33 -04:00
|
|
|
@service.list_flavors
|
2013-02-20 09:14:34 -05:00
|
|
|
end
|
2013-03-15 17:38:33 -04:00
|
|
|
tests('dfw region').succeeds do
|
2013-02-20 09:14:34 -05:00
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0', :rackspace_region => :dfw
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /dfw/) != nil }
|
2013-03-15 17:38:33 -04:00
|
|
|
@service.list_flavors
|
2013-02-20 09:14:34 -05:00
|
|
|
end
|
2013-03-15 17:38:33 -04:00
|
|
|
tests('ord region').succeeds do
|
2013-02-20 09:14:34 -05:00
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0', :rackspace_region => :ord
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /ord/) != nil }
|
2013-03-15 17:38:33 -04:00
|
|
|
@service.list_flavors
|
2013-02-20 16:48:19 -05:00
|
|
|
end
|
|
|
|
tests('custom endpoint') do
|
2013-08-02 13:33:10 -04:00
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0',
|
2013-02-20 16:48:19 -05:00
|
|
|
:rackspace_compute_url => 'https://my-custom-endpoint.com'
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(true, "uses custom endpoint") { (@service.instance_variable_get("@uri").host =~ /my-custom-endpoint\.com/) != nil }
|
2013-02-20 09:14:34 -05:00
|
|
|
end
|
|
|
|
end
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-02-20 16:48:19 -05:00
|
|
|
tests('default auth') do
|
|
|
|
pending if Fog.mocking?
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-03-15 17:38:33 -04:00
|
|
|
tests('no params').succeeds do
|
2013-02-20 16:48:19 -05:00
|
|
|
@service = Fog::Compute::RackspaceV2.new
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /dfw/) != nil }
|
2013-03-15 17:38:33 -04:00
|
|
|
@service.list_flavors
|
2013-02-20 16:48:19 -05:00
|
|
|
end
|
2013-03-15 10:11:39 -04:00
|
|
|
tests('specify old contstant style service endoint').succeeds do
|
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_endpoint => Fog::Compute::RackspaceV2::ORD_ENDPOINT
|
2013-07-25 09:14:46 -04:00
|
|
|
returns(true) { (@service.instance_variable_get("@uri").to_s =~ /#{Fog::Compute::RackspaceV2::ORD_ENDPOINT}/ ) != nil }
|
2013-03-15 10:11:39 -04:00
|
|
|
@service.list_flavors
|
|
|
|
end
|
2013-03-15 17:38:33 -04:00
|
|
|
tests('specify region').succeeds do
|
2013-02-20 16:48:19 -05:00
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_region => :ord
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /ord/ ) != nil }
|
2013-03-15 17:38:33 -04:00
|
|
|
@service.list_flavors
|
2013-08-02 13:33:10 -04:00
|
|
|
end
|
2013-02-20 16:48:19 -05:00
|
|
|
tests('custom endpoint') do
|
|
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_compute_url => 'https://my-custom-endpoint.com'
|
2013-03-01 15:48:26 -05:00
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
2013-02-20 16:48:19 -05:00
|
|
|
returns(true, "uses custom endpoint") { (@service.instance_variable_get("@uri").host =~ /my-custom-endpoint\.com/) != nil }
|
|
|
|
end
|
|
|
|
end
|
2013-08-02 13:33:10 -04:00
|
|
|
|
2013-06-21 16:11:17 -04:00
|
|
|
tests('reauthentication') do
|
|
|
|
pending if Fog.mocking?
|
|
|
|
|
2013-08-20 11:46:22 -04:00
|
|
|
tests('should reauth with valid credentials') do
|
|
|
|
@service = Fog::Compute::RackspaceV2.new
|
|
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
|
|
@service.instance_variable_set("@auth_token", "bad_token")
|
|
|
|
returns(true) { [200, 203].include? @service.list_flavors.status }
|
|
|
|
end
|
|
|
|
tests('should terminate with incorrect credentials') do
|
|
|
|
raises(Excon::Errors::Unauthorized) { Fog::Compute::RackspaceV2.new :rackspace_api_key => 'bad_key' }
|
|
|
|
end
|
2013-06-21 16:11:17 -04:00
|
|
|
end
|
|
|
|
|
2013-08-02 13:33:10 -04:00
|
|
|
end
|