1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/google/models/compute/server_tests.rb
Carlos Sanchez 4c2736d0c2 [google][compute] Update to API v1
Simplify attachment of boot disk, get_as_boot_disk no longer needed
Add missing Disk.get_object method
Allow setting deviceName when attaching a disk
Add disks mocks
2013-12-19 21:37:46 +01:00

31 lines
884 B
Ruby

Shindo.tests("Fog::Compute[:google] | server model", ['google']) do
@zone = 'us-central1-a'
@disk = create_test_disk(Fog::Compute[:google], @zone)
model_tests(Fog::Compute[:google].servers, {:name => 'fogservername', :zone_name => @zone, :machine_type => 'n1-standard-1', :disks => [@disk]})
tests('servers') do
@instance = nil
test('#bootstrap') do
attributes = Fog.mocking? ? {:public_key_path => nil, :private_key_path => nil} : {}
@instance = Fog::Compute[:google].servers.bootstrap(attributes)
@instance.ready?
end
test('#sshable?') do
@instance.wait_for { sshable? }
@instance.sshable?
end
test('#ssh') do
pending if Fog.mocking?
@instance.ssh("uname") == "Linux"
end
test('#destroy') do
response = @instance.destroy
response.body['operationType'] == 'delete'
end
end
end