1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

added list_checks and list_check_types mocks

This commit is contained in:
Thomas Cate 2013-08-30 11:15:23 -05:00
parent 914e6f8c78
commit edfa79d5a3
3 changed files with 119 additions and 2 deletions

View file

@ -10,7 +10,79 @@ module Fog
:path => "check_types"
)
end
end
class Mock
def list_check_types
response = Excon::Response.new
response.status = 200
response.body = {
"values" => [
{
"type" => "remote",
"id" => "remote.dns",
"channel"=> "stable",
"fields" => [
{
"name" => "port",
"description"=> "Port number (default: 53)",
"optional" => true
},
{
"name" => "query",
"description"=> "DNS Query",
"optional" => false
},
{
"name" => "record_type",
"description" => "DNS Record Type",
"optional" => false
}
],
"category" => "remote"
},
{
"type" => "agent",
"id" => "agent.memory",
"channel" =>"stable",
"fields" => [],
"supported_platforms" => [
"Linux",
"Windows"
],
"category" => "agent_system"
}
],
"metadata" => {
"count" => 2,
"limit" => 100,
"marker" => nil,
"next_marker" => nil,
"next_href" => nil
}
}
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" =>" zsdvasdtrq345",
"X-LB" => "dfw1-maas-prod-api0",
"Vary" => "Accept-Encoding",
"Transfer-Encoding" => "chunked"
}
response.remote_ip = "1.1.1.1"
response
end
end
end
end

View file

@ -10,7 +10,54 @@ module Fog
:path => "entities/#{entity_id}/checks"
)
end
end
class Mock
def list_checks(entity_id)
response = Excon::Response.new
response.status = 200
response.body = {
"values" => [
{
"id" => "mock_id",
"label" => "load",
"type" => "agent.load_average",
"details" => {},
"monitoring_zones_poll" => nil,
"timeout" => 10,
"period" => 30,
"target_alias" => nil,
"target_hostname" => nil,
"target_resolver" => nil,
"disabled" => false,
"metadata" => nil,
"created_at" => Time.now.to_i - 1,
"updated_at" => Time.now.to_i
}
],
"metadata" => {
"count" => 1,
"limit" => 100,
"marker" => nil,
"next_marker" => nil,
"next_href" => nil
}
}
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 = "1.1.1.1"
response
end
end
end
end

View file

@ -16,11 +16,9 @@ Shindo.tests('Fog::Rackspace::Monitoring | list_tests', ['rackspace','rackspace_
tests('success') do
tests('#get list of checks').formats(LIST_HEADERS_FORMAT) do
pending if Fog.mocking?
account.list_checks(entity_id).data[:headers]
end
tests('#get list of check types').formats(LIST_HEADERS_FORMAT) do
pending if Fog.mocking?
account.list_check_types().data[:headers]
end
tests('#get list of entities').formats(LIST_HEADERS_FORMAT) do