mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
875 B
Ruby
34 lines
875 B
Ruby
|
module Fog
|
||
|
module Compute
|
||
|
class HP
|
||
|
class Real
|
||
|
|
||
|
def change_password_server(server_id, admin_password)
|
||
|
body = { 'changePassword' => { 'adminPass' => admin_password }}
|
||
|
server_action(server_id, body)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
|
||
|
def change_password_server(server_id, admin_password)
|
||
|
response = Excon::Response.new
|
||
|
if list_servers_detail.body['servers'].detect {|_| _['id'] == server_id}
|
||
|
if admin_password
|
||
|
response.body = { 'changePassword' => { 'adminPass' => admin_password }}
|
||
|
end
|
||
|
response.status = 202
|
||
|
else
|
||
|
#raise Fog::Compute::HP::NotFound
|
||
|
response.status = 500
|
||
|
raise(Excon::Errors.status_error({:expects => 200}, response))
|
||
|
end
|
||
|
response
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|