2012-02-16 03:14:54 -05:00
|
|
|
module Fog
|
|
|
|
module Compute
|
2012-02-21 11:09:26 -05:00
|
|
|
class OpenStack
|
2012-02-16 03:14:54 -05:00
|
|
|
class Real
|
|
|
|
|
|
|
|
def create_security_group_rule(parent_group_id, ip_protocol, from_port, to_port, cidr, group_id=nil)
|
|
|
|
data = {
|
|
|
|
'security_group_rule' => {
|
|
|
|
'parent_group_id' => parent_group_id,
|
|
|
|
'ip_protocol' => ip_protocol,
|
|
|
|
'from_port' => from_port,
|
|
|
|
'to_port' => to_port,
|
|
|
|
'cidr' => cidr,
|
|
|
|
'group_id' => group_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'POST',
|
2012-02-23 03:43:00 -05:00
|
|
|
:body => MultiJson.encode(data),
|
2012-02-16 03:14:54 -05:00
|
|
|
:path => 'os-security-group-rules.json'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
2012-02-23 03:43:00 -05:00
|
|
|
def create_security_group_rule(parent_group_id, ip_protocol, from_port, to_port, cidr, group_id=nil)
|
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 200
|
|
|
|
response.headers = {
|
|
|
|
"X-Compute-Request-Id" => "req-63a90344-7c4d-42e2-936c-fd748bced1b3",
|
|
|
|
"Content-Type" => "application/json",
|
|
|
|
"Content-Length" => "163",
|
|
|
|
"Date" => Date.new
|
|
|
|
}
|
|
|
|
response.body = {
|
|
|
|
"security_group_rule" => {
|
|
|
|
"from_port" => from_port,
|
|
|
|
"group" => group_id || {},
|
|
|
|
"ip_protocol" => ip_protocol,
|
|
|
|
"to_port" => to_port,
|
|
|
|
"parent_group_id" => parent_group_id,
|
|
|
|
"ip_range" => {
|
|
|
|
"cidr" => cidr
|
|
|
|
},
|
|
|
|
"id"=>1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end # mock
|
|
|
|
end # openstack
|
|
|
|
end # compute
|
|
|
|
end # fog
|