File: test_EC2_volumes.rb

package info (click to toggle)
ruby-amazon-ec2 0.9.17-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,232 kB
  • sloc: ruby: 4,659; makefile: 5
file content (158 lines) | stat: -rw-r--r-- 6,748 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#--
# Amazon Web Services EC2 Query API Ruby library, EBS volumes support
#
# Ruby Gem Name::  amazon-ec2
# Author::    Yann Klis  (mailto:yann.klis@novelys.com)
# Copyright:: Copyright (c) 2008 Yann Klis
# License::   Distributes under the same terms as Ruby
# Home::      http://github.com/grempe/amazon-ec2/tree/master
#++

require File.dirname(__FILE__) + '/test_helper.rb'

context "EC2 volumes " do

  before do
    @ec2 = AWS::EC2::Base.new( :access_key_id => "not a key", :secret_access_key => "not a secret" )

    @describe_volumes_response_body = <<-RESPONSE
    <DescribeVolumesResponse xmlns="http://ec2.amazonaws.com/doc/2008-05-05">
      <volumeSet>
        <item>
          <volumeId>vol-4282672b</volumeId>
          <size>800</size>
          <status>in-use</status>
          <createTime>2008-05-07T11:51:50.000Z</createTime>
          <attachmentSet>
            <item>
              <volumeId>vol-4282672b</volumeId>
              <instanceId>i-6058a509</instanceId>
              <size>800</size>
              <status>attached</status>
              <attachTime>2008-05-07T12:51:50.000Z</attachTime>
            </item>
          </attachmentSet>
        </item>
      </volumeSet>
    </DescribeVolumesResponse>
    RESPONSE

    @create_volume_response_body = <<-RESPONSE
    <CreateVolumeResponse xmlns="http://ec2.amazonaws.com/doc/2008-05-05">
      <volumeId>vol-4d826724</volumeId>
      <size>800</size>
      <status>creating</status>
      <createTime>2008-05-07T11:51:50.000Z</createTime>
      <zone>us-east-1a</zone>
      <snapshotId></snapshotId>
    </CreateVolumeResponse>
    RESPONSE

    @delete_volume_response_body = <<-RESPONSE
    <ReleaseAddressResponse xmlns="http://ec2.amazonaws.com/doc/2008-05-05">
      <return>true</return>
    </ReleaseAddressResponse>
    RESPONSE

    @attach_volume_response_body = <<-RESPONSE
    <AttachVolumeResponse xmlns="http://ec2.amazonaws.com/doc/2008-05-05">
      <volumeId>vol-4d826724</volumeId>
      <instanceId>i-6058a509</instanceId>
      <device>/dev/sdh</device>
      <status>attaching</status>
      <attachTime>2008-05-07T11:51:50.000Z</attachTime>
    </AttachVolumeResponse>
    RESPONSE

    @detach_volume_response_body = <<-RESPONSE
    <DetachVolumeResponse xmlns="http://ec2.amazonaws.com/doc/2008-05-05">
      <volumeId>vol-4d826724</volumeId>
      <instanceId>i-6058a509</instanceId>
      <device>/dev/sdh</device>
      <status>detaching</status>
      <attachTime>2008-05-08T11:51:50.000Z</attachTime>
    </DetachVolumeResponse>
    RESPONSE

  end


  specify "should be able to be described with describe_volumes" do
    @ec2.stubs(:make_request).with('DescribeVolumes', {"VolumeId.1"=>"vol-4282672b"}).
      returns stub(:body => @describe_volumes_response_body, :is_a? => true)

    @ec2.describe_volumes( :volume_id => ["vol-4282672b"] ).should.be.an.instance_of Hash

    response = @ec2.describe_volumes( :volume_id => ["vol-4282672b"] )
    response.volumeSet.item[0].volumeId.should.equal "vol-4282672b"
    response.volumeSet.item[0].attachmentSet.item[0]['size'].should.equal "800"
    response.volumeSet.item[0].attachmentSet.item[0].volumeId.should.equal "vol-4282672b"
    response.volumeSet.item[0].attachmentSet.item[0].instanceId.should.equal "i-6058a509"
  end

  specify "should be able to be created with an availability_zone with size" do
    @ec2.stubs(:make_request).with('CreateVolume', {"AvailabilityZone" => "us-east-1a", "Size"=>"800", "SnapshotId"=>""}).
      returns stub(:body => @create_volume_response_body, :is_a? => true)

    @ec2.create_volume( :availability_zone => "us-east-1a", :size => "800" ).should.be.an.instance_of Hash

    response = @ec2.create_volume( :availability_zone => "us-east-1a", :size => "800" )
    response.volumeId.should.equal "vol-4d826724"
    response['size'].should.equal "800"
    response.status.should.equal "creating"
    response.zone.should.equal "us-east-1a"
  end

  specify "should be able to be deleted with a volume_id" do
    @ec2.stubs(:make_request).with('DeleteVolume', {"VolumeId" => "vol-4282672b"}).
      returns stub(:body => @delete_volume_response_body, :is_a? => true)

    @ec2.delete_volume( :volume_id => "vol-4282672b" ).should.be.an.instance_of Hash

    response = @ec2.delete_volume( :volume_id => "vol-4282672b" )
    response.return.should.equal "true"
  end

  specify "should be able to be attached with a volume_id with an instance_id with a device" do
    @ec2.stubs(:make_request).with('AttachVolume', {"VolumeId" => "vol-4d826724", "InstanceId"=>"i-6058a509", "Device"=>"/dev/sdh"}).
      returns stub(:body => @attach_volume_response_body, :is_a? => true)

    @ec2.attach_volume( :volume_id => "vol-4d826724", :instance_id => "i-6058a509", :device => "/dev/sdh" ).should.be.an.instance_of Hash

    response = @ec2.attach_volume( :volume_id => "vol-4d826724", :instance_id => "i-6058a509", :device => "/dev/sdh" )
    response.volumeId.should.equal "vol-4d826724"
    response.instanceId.should.equal "i-6058a509"
    response.device.should.equal "/dev/sdh"
    response.status.should.equal "attaching"
  end

  specify "should be able to be detached with a volume_id with an instance_id" do
    @ec2.stubs(:make_request).with('DetachVolume', {"VolumeId" => "vol-4d826724", "InstanceId"=>"i-6058a509", "Device"=>"", "Force"=>""}).
      returns stub(:body => @detach_volume_response_body, :is_a? => true)

    @ec2.detach_volume( :volume_id => "vol-4d826724", :instance_id => "i-6058a509" ).should.be.an.instance_of Hash

    response = @ec2.detach_volume( :volume_id => "vol-4d826724", :instance_id => "i-6058a509" )
    response.volumeId.should.equal "vol-4d826724"
    response.instanceId.should.equal "i-6058a509"
    response.device.should.equal "/dev/sdh"
    response.status.should.equal "detaching"
  end

  specify "should be able to be force detached with a string" do
    @ec2.stubs(:make_request).with('DetachVolume', {"VolumeId" => "vol-4d826724", "InstanceId"=>"i-6058a509", "Device"=>"", "Force"=>"true"}).
      returns stub(:body => @detach_volume_response_body, :is_a? => true)

    response = @ec2.detach_volume( :volume_id => "vol-4d826724", :instance_id => "i-6058a509", :force => 'true' )
    response.volumeId.should.equal "vol-4d826724"
  end

  specify "should be able to be force detached with a Boolean" do
    @ec2.stubs(:make_request).with('DetachVolume', {"VolumeId" => "vol-4d826724", "InstanceId"=>"i-6058a509", "Device"=>"", "Force"=>"true"}).
      returns stub(:body => @detach_volume_response_body, :is_a? => true)

    response = @ec2.detach_volume( :volume_id => "vol-4d826724", :instance_id => "i-6058a509", :force => true )
    response.volumeId.should.equal "vol-4d826724"
  end

end