mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
70 lines
1.7 KiB
Ruby
70 lines
1.7 KiB
Ruby
require File.dirname(__FILE__) + '/../../../spec_helper'
|
|
|
|
describe 'Fog::AWS::EC2::Volumes' do
|
|
|
|
describe "#all" do
|
|
|
|
it "should return a Fog::AWS::EC2::Volumes" do
|
|
ec2.volumes.all.should be_a(Fog::AWS::EC2::Volumes)
|
|
end
|
|
|
|
it "should include persisted volumes" do
|
|
volume = ec2.volumes.create(:availability_zone => 'us-east-1a', :size => 1, :device => 'dev/sdz1')
|
|
ec2.volumes.get(volume.volume_id).should_not be_nil
|
|
volume.destroy
|
|
end
|
|
|
|
end
|
|
|
|
describe "#create" do
|
|
|
|
before(:each) do
|
|
@volume = ec2.volumes.create(:availability_zone => 'us-east-1a', :size => 1, :device => 'dev/sdz1')
|
|
end
|
|
|
|
after(:each) do
|
|
@volume.destroy
|
|
end
|
|
|
|
it "should return a Fog::AWS::EC2::Volume" do
|
|
@volume.should be_a(Fog::AWS::EC2::Volume)
|
|
end
|
|
|
|
it "should exist on ec2" do
|
|
ec2.volumes.get(@volume.volume_id).should_not be_nil
|
|
end
|
|
|
|
end
|
|
|
|
describe "#get" do
|
|
|
|
it "should return a Fog::AWS::EC2::Volume if a matching volume exists" do
|
|
volume = ec2.volumes.create(:availability_zone => 'us-east-1a', :size => 1, :device => 'dev/sdz1')
|
|
get = ec2.volumes.get(volume.volume_id)
|
|
volume.attributes.reject { |key, value| key == :device }.should == get.attributes.reject { |key, value| key == :device }
|
|
volume.destroy
|
|
end
|
|
|
|
it "should return nil if no matching address exists" do
|
|
ec2.volumes.get('vol-00000000').should be_nil
|
|
end
|
|
|
|
end
|
|
|
|
describe "#new" do
|
|
|
|
it "should return a Fog::AWS::EC2::Volume" do
|
|
ec2.volumes.new.should be_a(Fog::AWS::EC2::Volume)
|
|
end
|
|
|
|
end
|
|
|
|
describe "#reload" do
|
|
|
|
it "should return a Fog::AWS::EC2::Volumes" do
|
|
ec2.volumes.all.reload.should be_a(Fog::AWS::EC2::Volumes)
|
|
end
|
|
|
|
end
|
|
|
|
end
|