mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
e805e7577b
This is handy if we haven't yet assigned a boot disk.
34 lines
867 B
Ruby
34 lines
867 B
Ruby
module Fog
|
|
module Compute
|
|
class Serverlove
|
|
class Real
|
|
|
|
def create_server(options)
|
|
return nil if options.empty? || options.nil?
|
|
request(:method => "post", :path => "/servers/create/stopped", :expects => 200, :options => options)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def create_server(options = {})
|
|
response = Excon::Response.new
|
|
response.status = 200
|
|
|
|
data = {
|
|
'server' => Fog::Mock.random_numbers(1000000).to_s,
|
|
'name' => options['name'] || 'Test',
|
|
'cpu' => options['cpu'] || 1000,
|
|
'persistent' => options['persistent'] || false,
|
|
'vnc:password' => options['vnc:password'] || 'T35tServER!'
|
|
}
|
|
|
|
response.body = data
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|