mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
72e52e70be
This reverts commit d6ecb19d24
.
Conflicts:
fog.gemspec
118 lines
5.9 KiB
Ruby
118 lines
5.9 KiB
Ruby
Shindo.tests('Fog::Compute::RackspaceV2', ['rackspace']) do
|
|
|
|
def assert_method(url, method)
|
|
@service.instance_variable_set "@rackspace_auth_url", url
|
|
returns(method) { @service.send :authentication_method }
|
|
end
|
|
|
|
tests('#authentication_method') do
|
|
@service = Fog::Compute::RackspaceV2.new
|
|
|
|
assert_method nil, :authenticate_v2
|
|
|
|
assert_method 'auth.api.rackspacecloud.com', :authenticate_v1 # chef's default auth endpoint
|
|
|
|
assert_method 'https://identity.api.rackspacecloud.com', :authenticate_v1
|
|
assert_method 'https://identity.api.rackspacecloud.com/v1', :authenticate_v1
|
|
assert_method 'https://identity.api.rackspacecloud.com/v1.1', :authenticate_v1
|
|
assert_method 'https://identity.api.rackspacecloud.com/v2.0', :authenticate_v2
|
|
|
|
assert_method 'https://lon.identity.api.rackspacecloud.com', :authenticate_v1
|
|
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
|
|
|
|
tests('legacy authentication') do
|
|
pending if Fog.mocking?
|
|
|
|
tests('variables populated').succeeds do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v1.0'
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(false, "path populated") { @service.instance_variable_get("@uri").path.nil? }
|
|
returns(true, "identity_service was not used") { @service.instance_variable_get("@identity_service").nil? }
|
|
@service.list_flavors
|
|
end
|
|
|
|
tests('custom endpoint') do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v1.0',
|
|
:rackspace_compute_url => 'https://my-custom-endpoint.com'
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(true, "uses custom endpoint") { (@service.instance_variable_get("@uri").host =~ /my-custom-endpoint\.com/) != nil }
|
|
end
|
|
end
|
|
|
|
tests('current authentation') do
|
|
pending if Fog.mocking?
|
|
|
|
tests('variables populated').succeeds do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0', :connection_options => {:ssl_verify_peer => true}
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(false, "path populated") { @service.instance_variable_get("@uri").host.nil? }
|
|
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").key?(:ssl_verify_peer) }
|
|
@service.list_flavors
|
|
end
|
|
tests('dfw region').succeeds do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0', :rackspace_region => :dfw
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /dfw/) != nil }
|
|
@service.list_flavors
|
|
end
|
|
tests('ord region').succeeds do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0', :rackspace_region => :ord
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /ord/) != nil }
|
|
@service.list_flavors
|
|
end
|
|
tests('custom endpoint') do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0',
|
|
:rackspace_compute_url => 'https://my-custom-endpoint.com'
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(true, "uses custom endpoint") { (@service.instance_variable_get("@uri").host =~ /my-custom-endpoint\.com/) != nil }
|
|
end
|
|
end
|
|
|
|
tests('default auth') do
|
|
pending if Fog.mocking?
|
|
|
|
tests('no params').succeeds do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_region => nil
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /dfw/) != nil }
|
|
@service.list_flavors
|
|
end
|
|
tests('specify old contstant style service endoint').succeeds do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_endpoint => Fog::Compute::RackspaceV2::ORD_ENDPOINT
|
|
returns(true) { (@service.instance_variable_get("@uri").to_s =~ /#{Fog::Compute::RackspaceV2::ORD_ENDPOINT}/ ) != nil }
|
|
@service.list_flavors
|
|
end
|
|
tests('specify region').succeeds do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_region => :ord
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(true) { (@service.instance_variable_get("@uri").host =~ /ord/ ) != nil }
|
|
@service.list_flavors
|
|
end
|
|
tests('custom endpoint') do
|
|
@service = Fog::Compute::RackspaceV2.new :rackspace_compute_url => 'https://my-custom-endpoint.com'
|
|
returns(true, "auth token populated") { !@service.send(:auth_token).nil? }
|
|
returns(true, "uses custom endpoint") { (@service.instance_variable_get("@uri").host =~ /my-custom-endpoint\.com/) != nil }
|
|
end
|
|
end
|
|
|
|
tests('reauthentication') do
|
|
pending if Fog.mocking?
|
|
|
|
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
|
|
end
|
|
|
|
end
|