2009-07-01 13:14:07 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../spec_helper'
|
|
|
|
|
2009-08-01 04:15:44 -04:00
|
|
|
describe 'EC2.release_address' do
|
2009-07-01 13:14:07 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
it "should return proper attributes" do
|
2009-08-12 01:18:27 -04:00
|
|
|
actual = @ec2.release_address(@public_ip)
|
2009-08-01 04:15:44 -04:00
|
|
|
actual.body['requestId'].should be_a(String)
|
|
|
|
actual.body['return'].should == true
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|
|
|
|
|
2009-08-17 00:37:18 -04:00
|
|
|
it "should raise a BadRequest error if address does not exist" do
|
|
|
|
lambda {
|
2009-08-17 01:19:35 -04:00
|
|
|
@ec2.release_address('127.0.0.1')
|
2009-08-17 00:37:18 -04:00
|
|
|
}.should raise_error(Fog::Errors::BadRequest)
|
|
|
|
end
|
|
|
|
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|