Sha256: fda989b7d32278db819cf17469b37277f0beed4afea896ac80f3a9813fdeb199

Contents?: true

Size: 1.15 KB

Versions: 39

Compression:

Stored size: 1.15 KB

Contents

Shindo.tests('Fog::Rackspace::Identity', ['rackspace']) do

  tests('current authentication') do
    tests('variables populated').returns(200)  do
      @service = Fog::Rackspace::Identity.new :rackspace_auth_url => 'https://identity.api.rackspacecloud.com/v2.0', :connection_options => {:ssl_verify_peer => true}
      returns(true, "auth token populated") { !@service.auth_token.nil? }
      returns(false, "path populated") { @service.instance_variable_get("@uri").host.nil? }
      returns(false, "service catalog populated") { @service.service_catalog.nil? }

      @service.list_tenants.status
    end
  end

  tests('reauthentication') do
    tests('should reauth with valid credentials') do
      @service = Fog::Rackspace::Identity.new  :rackspace_region => :ord
      returns(true, "auth token populated") { !@service.auth_token.nil? }
      @service.instance_variable_set("@auth_token", "bad-token")
      returns(true) { [200, 203].include? @service.list_tenants.status }
    end
    tests('should terminate with incorrect credentials') do
      raises(Excon::Errors::Unauthorized) { Fog::Rackspace::Identity.new :rackspace_api_key => 'bad_key' }
    end
  end

end

Version data entries

39 entries across 37 versions & 6 rubygems

Version Path
fog-1.30.0 tests/rackspace/identity_tests.rb
fog-1.29.0 tests/rackspace/identity_tests.rb
fog-1.28.0 tests/rackspace/identity_tests.rb
fog-1.27.0 tests/rackspace/identity_tests.rb
fog-1.26.0 tests/rackspace/identity_tests.rb
fog-1.25.0 tests/rackspace/identity_tests.rb
nsidc-fog-1.24.1 tests/rackspace/identity_tests.rb
fog-1.24.0 tests/rackspace/identity_tests.rb
ns-fog-1.22.11 tests/rackspace/identity_tests.rb
ns-fog-1.22.10 tests/rackspace/identity_tests.rb
ns-fog-1.22.9 tests/rackspace/identity_tests.rb
ns-fog-1.22.8 tests/rackspace/identity_tests.rb
ns-fog-1.22.7 tests/rackspace/identity_tests.rb
ns-fog-1.22.6 tests/rackspace/identity_tests.rb
fog-1.23.0 tests/rackspace/identity_tests.rb
ns-fog-1.22.4 tests/rackspace/identity_tests.rb
ns-fog-1.22.3 tests/rackspace/identity_tests.rb
ns-fog-1.22.2 tests/rackspace/identity_tests.rb
fog-1.22.1 tests/rackspace/identity_tests.rb