mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
817 B
Ruby
34 lines
817 B
Ruby
module Fog
|
|
module Compute
|
|
class CloudSigma
|
|
class Real
|
|
def open_vnc(server_id)
|
|
request(:path => "servers/#{server_id}/action/",
|
|
:method => 'POST',
|
|
:query => {:do => :open_vnc},
|
|
:expects => [200, 202])
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def open_vnc(server_id)
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
host = @init_options[:cloudsigma_host]
|
|
port = Fog::Mock.random_number(65000)
|
|
vnc_url = "vnc://#{host}:#{port}"
|
|
|
|
response.body = {
|
|
'action' => 'open_vnc',
|
|
'result' => 'success',
|
|
'uuid' => server_id,
|
|
'vnc_url' => vnc_url
|
|
}
|
|
|
|
response
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|