2009-08-17 18:55:30 -04:00
|
|
|
require File.dirname(__FILE__) + '/../../../spec_helper'
|
2009-07-10 22:28:45 -04:00
|
|
|
|
|
|
|
describe 'EC2.describe_snapshots' do
|
|
|
|
|
2009-07-19 17:14:08 -04:00
|
|
|
before(:all) do
|
2009-08-18 01:39:44 -04:00
|
|
|
@volume_id = ec2.create_volume('us-east-1a', 1).body['volumeId']
|
|
|
|
@snapshot_id = ec2.create_snapshot(@volume_id).body['snapshotId']
|
2009-07-19 17:14:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after(:all) do
|
2009-08-18 01:39:44 -04:00
|
|
|
ec2.delete_volume(@volume_id)
|
2009-07-19 19:06:33 -04:00
|
|
|
eventually do
|
2009-08-18 01:39:44 -04:00
|
|
|
ec2.delete_snapshot(@snapshot_id)
|
2009-07-19 19:06:33 -04:00
|
|
|
end
|
2009-07-19 17:14:08 -04:00
|
|
|
end
|
|
|
|
|
2009-07-10 22:28:45 -04:00
|
|
|
it "should return proper attributes with no params" do
|
2009-07-20 00:08:00 -04:00
|
|
|
eventually do
|
2009-08-18 01:39:44 -04:00
|
|
|
actual = ec2.describe_snapshots
|
2009-08-01 04:15:44 -04:00
|
|
|
actual.body['snapshotSet'].should be_an(Array)
|
|
|
|
snapshot = actual.body['snapshotSet'].select {|snapshot| snapshot['snapshotId'] == @snapshot_id}.first
|
|
|
|
snapshot['progress'].should be_a(String)
|
|
|
|
snapshot['snapshotId'].should be_a(String)
|
|
|
|
snapshot['startTime'].should be_a(Time)
|
|
|
|
snapshot['status'].should be_a(String)
|
|
|
|
snapshot['volumeId'].should be_a(String)
|
2009-07-20 00:08:00 -04:00
|
|
|
end
|
2009-07-10 22:28:45 -04:00
|
|
|
end
|
|
|
|
|
2009-07-19 17:14:08 -04:00
|
|
|
it "should return proper attributes with params" do
|
2009-07-20 00:08:00 -04:00
|
|
|
eventually do
|
2009-08-18 01:39:44 -04:00
|
|
|
actual = ec2.describe_snapshots([@snapshot_id])
|
2009-08-01 04:15:44 -04:00
|
|
|
actual.body['snapshotSet'].should be_an(Array)
|
|
|
|
snapshot = actual.body['snapshotSet'].select {|snapshot| snapshot['snapshotId'] == @snapshot_id}.first
|
|
|
|
snapshot['progress'].should be_a(String)
|
|
|
|
snapshot['snapshotId'].should be_a(String)
|
|
|
|
snapshot['startTime'].should be_a(Time)
|
|
|
|
snapshot['status'].should be_a(String)
|
|
|
|
snapshot['volumeId'].should be_a(String)
|
2009-07-20 00:08:00 -04:00
|
|
|
end
|
2009-07-19 17:14:08 -04:00
|
|
|
end
|
2009-07-10 22:28:45 -04:00
|
|
|
|
|
|
|
end
|