Sha256: bbf5defcb6f2fb0265762f682cd9dc2ee8324f01ce47e5945d610236710c64f0
Contents?: true
Size: 1.35 KB
Versions: 2
Compression:
Stored size: 1.35 KB
Contents
module Fog module Rackspace class Monitoring class Real def get_agent(agent_id) request( :expects => [200, 203], :method => 'GET', :path => "agents/#{agent_id}" ) end end class Mock def get_agent(agent_id) if agent_id == -1 raise Fog::Rackspace::Monitoring::NotFound end response = Excon::Response.new response.status = 200 response.body = { "id" => Fog::Rackspace::MockData.uuid, "last_connected" => Time.now.to_i - 100, } response.headers = { "Date" => Time.now.utc.to_s, "Content-Type" => "application/json; charset=UTF-8", "X-RateLimit-Limit" => "50000", "X-RateLimit-Remaining" => "49627", "X-RateLimit-Window" => "24 hours", "X-RateLimit-Type" => "global", "X-Response-Id" => "j23jlk234jl2j34j", "X-LB" => "dfw1-maas-prod-api0", "Vary" => "Accept-Encoding", "Transfer-Encoding" => "chunked" } response.remote_ip = Fog::Mock.random_ip({:version => :v4}) response end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-1.22.0 | lib/fog/rackspace/requests/monitoring/get_agent.rb |
fog-1.21.0 | lib/fog/rackspace/requests/monitoring/get_agent.rb |