mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
0035231954
Signed-off-by: Nelvin Driz <nelvindriz@live.com>
51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
module Fog
|
|
module Compute
|
|
class OpenStack
|
|
class Real
|
|
|
|
def create_security_group(name, description)
|
|
data = {
|
|
'security_group' => {
|
|
'name' => name,
|
|
'description' => description
|
|
}
|
|
}
|
|
|
|
request(
|
|
:body => MultiJson.encode(data),
|
|
:expects => 200,
|
|
:method => 'POST',
|
|
:path => 'os-security-groups.json'
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
def create_security_group(name, description)
|
|
tenant_id = Fog::Identity.new(:provider => 'OpenStack').current_tenant['id']
|
|
security_group_id = Fog::Mock.random_numbers(2).to_i
|
|
self.data[:security_groups][security_group_id] = {
|
|
'tenant_id' => tenant_id,
|
|
'rules' => [],
|
|
'id' => security_group_id,
|
|
'name' => name,
|
|
'description' => description
|
|
}
|
|
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
response.headers = {
|
|
'X-Compute-Request-Id' => "req-#{Fog::Mock.random_hex(32)}",
|
|
'Content-Type' => 'application/json',
|
|
'Content-Length' => Fog::Mock.random_numbers(3).to_s,
|
|
'Date' => Date.new}
|
|
response.body = {
|
|
'security_group' => self.data[:security_groups].values
|
|
}
|
|
response
|
|
end
|
|
end # mock
|
|
end # openstack
|
|
end # compute
|
|
end # fog
|