2012-02-22 09:40:32 -05:00
|
|
|
module Fog
|
|
|
|
module Identity
|
|
|
|
class OpenStack
|
|
|
|
class Real
|
|
|
|
def get_tenant(id)
|
|
|
|
request(
|
|
|
|
:expects => [200, 204],
|
|
|
|
:method => 'GET',
|
|
|
|
:path => "tenants/#{id}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end # class Real
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
def get_tenant(id)
|
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = [200, 204][rand(1)]
|
|
|
|
response.body = {
|
|
|
|
'tenant' => {
|
2012-09-03 02:40:34 -04:00
|
|
|
'id' => id,
|
2012-02-22 09:40:32 -05:00
|
|
|
'description' => 'Has access to everything',
|
|
|
|
'enabled' => true,
|
|
|
|
'name' => 'admin'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
response
|
|
|
|
end # def list_tenants
|
|
|
|
end # class Mock
|
|
|
|
end # class OpenStack
|
|
|
|
end # module Identity
|
|
|
|
end # module Fog
|