lib/fog/rackspace/requests/monitoring/create_agent_token.rb in fog-maestrodev-1.15.0.20130829165835 vs lib/fog/rackspace/requests/monitoring/create_agent_token.rb in fog-maestrodev-1.15.0.20130927082724
- old
+ new
@@ -11,9 +11,40 @@
:method => 'POST',
:path => 'agent_tokens'
)
end
end
+
+ class Mock
+ def create_agent_token(options = {})
+
+ account_id = Fog::Mock.random_numbers(6).to_s
+ token = Fog::Mock.random_letters(50).to_s
+
+ if options == -1
+ raise TypeError
+ end
+
+ response = Excon::Response.new
+ response.status = 201
+ response.body = ""
+ response.headers = {
+ "Date" => Time.now.utc.to_s,
+ "Location" => "https://monitoring.api.rackspacecloud.com/v1.0/" + account_id + "/agent_tokens/" + token,
+ "X-Object-ID" => token,
+ "X-RateLimit-Limit" => "50000",
+ "X-RateLimit-Remaining" => "49627",
+ "X-RateLimit-Window" => "24 hours",
+ "X-RateLimit-Type" => "global",
+ "X-Response-Id" => "oknwowevown9330wneviniv",
+ "X-LB" => "ord1-maas-prod-api1",
+ "Content-Length" => "0",
+ "Content-Type" => "text/plain",
+ }
+ response.remote_ip = Fog::Rackspace::MockData.ipv4_address
+ response
+ end
+ end
end
end
end