1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/spec/aws/requests/ec2/run_instances_spec.rb

43 lines
1.7 KiB
Ruby
Raw Normal View History

2009-08-17 15:55:30 -07:00
require File.dirname(__FILE__) + '/../../../spec_helper'
2009-07-08 21:58:02 -07:00
describe 'EC2.run_instances' do
2009-08-19 20:32:57 -07:00
describe 'success' do
2009-07-08 21:58:02 -07:00
2009-08-19 20:32:57 -07:00
after(:each) do
ec2.terminate_instances(@instance_id)
2009-08-19 20:32:57 -07:00
end
2009-08-19 20:32:57 -07:00
it "should return proper attributes" do
# ami-5ee70037 = gentoo
actual = ec2.run_instances(GENTOO_AMI, 1, 1)
2009-08-19 20:32:57 -07:00
@instance_id = actual.body['instancesSet'].first['instanceId']
actual.body['groupSet'].should be_an(Array)
actual.body['groupSet'].first.should be_a(String)
actual.body['instancesSet'].should be_an(Array)
instance = actual.body['instancesSet'].first
instance['amiLaunchIndex'].should be_a(Integer)
instance['dnsName'].should be_a(String)
instance['imageId'].should be_a(String)
instance['instanceId'].should be_a(String)
instance['instanceState'].should be_an(Hash)
instance['instanceState']['code'].should be_an(Integer)
instance['instanceState']['name'].should be_an(String)
instance['instanceType'].should be_a(String)
instance['kernelId'].should be_a(String)
instance['keyName'].should be_a(String) if instance['keyName']
instance['launchTime'].should be_a(Time)
instance['monitoring'].should be_a(Hash)
[false, true].should include(instance['monitoring']['state'])
instance['placement'].should be_a(Hash)
instance['placement']['availabilityZone'].should be_a(String)
instance['privateDnsName'].should be_a(String)
instance['ramdiskId'].should be_a(String)
instance['reason'].should be_a(String)
actual.body['ownerId'].should be_a(String)
actual.body['requestId'].should be_a(String)
actual.body['reservationId'].should be_a(String)
end
2009-07-08 21:58:02 -07:00
2009-08-19 20:32:57 -07:00
end
2009-07-08 21:58:02 -07:00
end