1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/bin/rackspace.rb
Daniel Reichert 002a918b21 Adding monitoring tests and their required changes
Changes made to lib/bin/rackspace.rb and lib/fog/rackspace.rb were required in
order to allow the tests to actually run. Changes to
lib/fog/rackspace/monitoring.rb were made in an effort to get failure tests to
run without the error that I am purposefully creating causing the test to fail.
2013-07-11 15:30:37 -07:00

71 lines
2.3 KiB
Ruby

class Rackspace < Fog::Bin
class << self
def class_for(key)
case key
when :block_storage
Fog::Rackspace::BlockStorage
when :cdn
Fog::CDN::Rackspace
when :compute
Fog::Compute::Rackspace
when :compute_v2
Fog::Compute::RackspaceV2
when :storage
Fog::Storage::Rackspace
when :load_balancers
Fog::Rackspace::LoadBalancers
when :dns
Fog::DNS::Rackspace
when :identity
Fog::Rackspace::Identity
when :databases
Fog::Rackspace::Databases
when :monitoring
Fog::Rackspace::Monitoring
else
raise ArgumentError, "Unrecognized service: #{key}"
end
end
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :cdn
Fog::Logger.warning("Rackspace[:cdn] is not recommended, use CDN[:rackspace] for portability")
Fog::CDN.new(:provider => 'Rackspace')
when :compute
Fog::Logger.warning("Rackspace[:compute] is not recommended, use Compute[:rackspace] for portability")
Fog::Compute.new(:provider => 'Rackspace')
when :compute_v2
Fog::Logger.warning("Rackspace[:compute] is not recommended, use Compute[:rackspace] for portability")
Fog::Compute.new(:provider => 'Rackspace', :version => 'v2')
when :dns
Fog::DNS.new(:provider => 'Rackspace')
when :load_balancers
Fog::Rackspace::LoadBalancers.new
when :storage
Fog::Logger.warning("Rackspace[:storage] is not recommended, use Storage[:rackspace] for portability")
Fog::Storage.new(:provider => 'Rackspace')
when :identity
Fog::Logger.warning("Rackspace[:identity] is not recommended, use Identity[:rackspace] for portability")
Fog::Identity.new(:provider => 'Rackspace')
when :databases
Fog::Rackspace::Databases.new
when :block_storage
Fog::Rackspace::BlockStorage.new
when :monitoring
Fog::Rackspace::Monitoring.new
else
raise ArgumentError, "Unrecognized service: #{key.inspect}"
end
end
@@connections[service]
end
def services
Fog::Rackspace.services
end
end
end