mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
38 lines
861 B
Ruby
38 lines
861 B
Ruby
|
module Fog
|
||
|
module Identity
|
||
|
class OpenStack
|
||
|
class Real
|
||
|
|
||
|
def update_user(user_id, options = {})
|
||
|
url = options.delete('url') || "/users/#{user_id}"
|
||
|
request(
|
||
|
:body => MultiJson.encode({ 'user' => options }),
|
||
|
:expects => 200,
|
||
|
:method => 'PUT',
|
||
|
:path => url
|
||
|
)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
|
||
|
def update_user(user_id, options)
|
||
|
response = Excon::Response.new
|
||
|
if user = list_users.body['users'][user_id]
|
||
|
if options['name']
|
||
|
user['name'] = options['name']
|
||
|
end
|
||
|
self.data[:users][data['id']] = user
|
||
|
response.status = 200
|
||
|
response
|
||
|
else
|
||
|
raise Fog::Identity::OpenStack::NotFound
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|