1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

spec snapshot failure cases

This commit is contained in:
Wesley Beary 2009-08-19 19:11:40 -07:00
parent 644f734a1c
commit 1e4c61c265
3 changed files with 60 additions and 32 deletions

View file

@ -1,26 +1,37 @@
require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'EC2.create_snapshot' do
describe "success" do
before(:all) do
@volume_id = ec2.create_volume('us-east-1a', 1).body['volumeId']
end
after(:all) do
ec2.delete_volume(@volume_id)
eventually do
ec2.delete_snapshot(@snapshot_id)
before(:all) do
@volume_id = ec2.create_volume('us-east-1a', 1).body['volumeId']
end
end
it "should return proper attributes" do
actual = ec2.create_snapshot(@volume_id)
actual.body['progress'].should be_a(String)
@snapshot_id = actual.body['snapshotId']
actual.body['snapshotId'].should be_a(String)
actual.body['startTime'].should be_a(Time)
actual.body['status'].should be_a(String)
actual.body['volumeId'].should be_a(String)
end
after(:all) do
ec2.delete_volume(@volume_id)
eventually do
ec2.delete_snapshot(@snapshot_id)
end
end
it "should return proper attributes" do
actual = ec2.create_snapshot(@volume_id)
actual.body['progress'].should be_a(String)
@snapshot_id = actual.body['snapshotId']
actual.body['snapshotId'].should be_a(String)
actual.body['startTime'].should be_a(Time)
actual.body['status'].should be_a(String)
actual.body['volumeId'].should be_a(String)
end
end
describe "failure" do
it "should raise a BadRequest error if the volume does not exist" do
lambda {
ec2.create_snapshot('vol-00000000')
}.should raise_error(Fog::Errors::BadRequest)
end
end
end

View file

@ -1,24 +1,35 @@
require File.dirname(__FILE__) + '/../../../spec_helper'
describe 'EC2.delete_snapshot' do
describe 'success' do
before(:all) do
@volume_id = ec2.create_volume('us-east-1a', 1).body['volumeId']
@snapshot_id = ec2.create_snapshot(@volume_id).body['snapshotId']
end
before(:all) do
@volume_id = ec2.create_volume('us-east-1a', 1).body['volumeId']
@snapshot_id = ec2.create_snapshot(@volume_id).body['snapshotId']
end
after(:all) do
ec2.delete_volume(@volume_id)
end
after(:all) do
ec2.delete_volume(@volume_id)
end
it "should return proper attributes" do
eventually do
actual = ec2.delete_snapshot(@snapshot_id)
unless actual.body.empty?
actual.body['requestId'].should be_a(String)
[false, true].should include(actual.body['return'])
it "should return proper attributes" do
eventually do
actual = ec2.delete_snapshot(@snapshot_id)
unless actual.body.empty?
actual.body['requestId'].should be_a(String)
[false, true].should include(actual.body['return'])
end
end
end
end
end
describe 'failure' do
it "should raise a BadRequest error if snapshot does not exist" do
lambda {
ec2.release_address('snap-00000000')
}.should raise_error(Fog::Errors::BadRequest)
end
end
end

View file

@ -40,4 +40,10 @@ describe 'EC2.describe_snapshots' do
end
end
it "should raise a BadRequest error if the snapshot does not exist" do
lambda {
ec2.describe_snapshots('snap-00000000')
}.should raise_error(Fog::Errors::BadRequest)
end
end