mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
829 B
Ruby
34 lines
829 B
Ruby
module Fog
|
|
module Identity
|
|
class OpenStack
|
|
class Real
|
|
def list_users(tenant_id = nil)
|
|
path = tenant_id ? "tenants/#{tenant_id}/users" : 'users'
|
|
request(
|
|
:expects => [200, 204],
|
|
:method => 'GET',
|
|
:path => path
|
|
)
|
|
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
|
|
|
|
|
|
Excon::Response.new(
|
|
:body => { 'users' => users },
|
|
:status => 200
|
|
)
|
|
end
|
|
end # class Mock
|
|
end # class OpenStack
|
|
end # module Identity
|
|
end # module Fog
|