2009-08-17 18:55:30 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
2009-07-01 13:14:07 -04:00
|
|
|
|
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-18 01:39:44 -04:00
|
|
|
@public_ip = ec2.allocate_address.body['publicIp']
|
2009-07-01 13:14:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should return proper attributes" do
|
2009-08-18 01:39:44 -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-18 01:39:44 -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
|