2009-07-01 13:14:07 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
|
|
|
|
describe 'EC2.describe_addresses' do
|
|
|
|
|
|
|
|
before(:all) do
|
2009-08-12 01:18:27 -04:00
|
|
|
@ec2 = Fog::AWS::EC2.gen
|
|
|
|
@public_ip = @ec2.allocate_address.body['publicIp']
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after(:all) do
|
2009-08-12 01:18:27 -04:00
|
|
|
@ec2.release_address(@public_ip)
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|
|
|
|
|
2009-07-02 14:10:15 -04:00
|
|
|
it "should return proper attributes with no params" do
|
2009-08-12 01:18:27 -04:00
|
|
|
actual = @ec2.describe_addresses
|
2009-08-01 04:15:44 -04:00
|
|
|
actual.body['requestId'].should be_a(String)
|
|
|
|
item = actual.body['addressesSet'].select {|address| address['publicIp'] == @public_ip}
|
2009-07-02 14:10:15 -04:00
|
|
|
item.should_not be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return proper attributes for specific ip" do
|
2009-08-12 01:18:27 -04:00
|
|
|
actual = @ec2.describe_addresses(@public_ip)
|
2009-08-01 04:15:44 -04:00
|
|
|
actual.body['requestId'].should be_a(String)
|
|
|
|
item = actual.body['addressesSet'].select {|address| address['publicIp'] == @public_ip}
|
2009-07-01 13:14:07 -04:00
|
|
|
item.should_not be_nil
|
|
|
|
end
|
|
|
|
|
2009-08-17 01:19:35 -04:00
|
|
|
it "should raise a BadRequest error if ip does not exist" do
|
|
|
|
lambda {
|
|
|
|
@ec2.describe_addresses('127.0.0.1')
|
|
|
|
}.should raise_error(Fog::Errors::BadRequest)
|
|
|
|
end
|
|
|
|
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|