1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/identity/list_users.rb

35 lines
829 B
Ruby
Raw Normal View History

2012-02-22 09:40:32 -05:00
module Fog
module Identity
class OpenStack
class Real
def list_users(tenant_id = nil)
path = tenant_id ? "tenants/#{tenant_id}/users" : 'users'
2012-02-22 09:40:32 -05:00
request(
:expects => [200, 204],
:method => 'GET',
:path => path
2012-02-22 09:40:32 -05:00
)
end
end # class Real
class Mock
def list_users(tenant_id = nil)
users = self.data[:users].values
if tenant_id
users = users.select {
|user| user['tenantId'] == tenant_id
}
end
2012-05-28 17:45:22 -04:00
Excon::Response.new(
:body => { 'users' => users },
2012-05-28 17:45:22 -04:00
:status => 200
)
end
2012-02-22 09:40:32 -05:00
end # class Mock
end # class OpenStack
end # module Identity
end # module Fog