mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
33 lines
780 B
Ruby
33 lines
780 B
Ruby
|
module Fog
|
||
|
module Identity
|
||
|
class OpenStack
|
||
|
class Real
|
||
|
def list_users
|
||
|
request(
|
||
|
:expects => [200, 204],
|
||
|
:method => 'GET',
|
||
|
:path => 'users'
|
||
|
)
|
||
|
end
|
||
|
end # class Real
|
||
|
|
||
|
class Mock
|
||
|
def list_users
|
||
|
response = Excon::Response.new
|
||
|
response.status = [200, 204][rand(1)]
|
||
|
response.body = {
|
||
|
'users' => [
|
||
|
{'id' => '1',
|
||
|
'enabled' => true,
|
||
|
'name' => 'admin',
|
||
|
'email' => 'admin@example.com',
|
||
|
'tenantId' => nil}
|
||
|
]
|
||
|
}
|
||
|
response
|
||
|
end # def list_tenants
|
||
|
end # class Mock
|
||
|
end # class OpenStack
|
||
|
end # module Identity
|
||
|
end # module Fog
|