File: test_EC2_console.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 (54 lines) | stat: -rw-r--r-- 2,295 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
#--
# Amazon Web Services EC2 Query API Ruby library
#
# Ruby Gem Name::  amazon-ec2
# Author::    Glenn Rempe  (mailto:glenn@rempe.us)
# Copyright:: Copyright (c) 2007-2008 Glenn Rempe
# 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 "The EC2 console " do

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

    @get_console_output_response_body = <<-RESPONSE
    <GetConsoleOutputResponse xmlns="http://ec2.amazonaws.com/doc/2007-03-01">
      <instanceId>i-28a64341</instanceId>
      <timestamp>2007-01-03 15:00:00</timestamp>
      <output>
        YyB2ZXJzaW9uIDQuMC4xIDIwMDUwNzI3IChSZWQgSGF0IDQuMC4xLTUpKSAjMSBTTVAgVGh1IE9j
        dCAyNiAwODo0MToyNiBTQVNUIDIwMDYKQklPUy1wcm92aWRlZCBwaHlzaWNhbCBSQU0gbWFwOgpY
        ZW46IDAwMDAwMDAwMDAwMDAwMDAgLSAwMDAwMDAwMDZhNDAwMDAwICh1c2FibGUpCjk4ME1CIEhJ
        R0hNRU0gYXZhaWxhYmxlLgo3MjdNQiBMT1dNRU0gYXZhaWxhYmxlLgpOWCAoRXhlY3V0ZSBEaXNh
        YmxlKSBwcm90ZWN0aW9uOiBhY3RpdmUKSVJRIGxvY2t1cCBkZXRlY3Rpb24gZGlzYWJsZWQKQnVp
        bHQgMSB6b25lbGlzdHMKS2VybmVsIGNvbW1hbmQgbGluZTogcm9vdD0vZGV2L3NkYTEgcm8gNApF
        bmFibGluZyBmYXN0IEZQVSBzYXZlIGFuZCByZXN0b3JlLi4uIGRvbmUuCg==
        </output>
    </GetConsoleOutputResponse>
    RESPONSE

  end


  specify "should return info written to a specific instances console" do
    @ec2.stubs(:make_request).with('GetConsoleOutput', {"InstanceId"=>"i-2ea64347"}).
       returns stub(:body => @get_console_output_response_body, :is_a? => true)
    @ec2.get_console_output( :instance_id => "i-2ea64347" ).should.be.an.instance_of Hash
    response = @ec2.get_console_output( :instance_id => "i-2ea64347" )
    response.instanceId.should.equal "i-28a64341"
    response.timestamp.should.equal "2007-01-03 15:00:00"
  end


  specify "method get_console_output should raise an exception when called without nil/empty string arguments" do
    lambda { @ec2.get_console_output() }.should.raise(AWS::ArgumentError)
    lambda { @ec2.get_console_output(:instance_id => nil) }.should.raise(AWS::ArgumentError)
    lambda { @ec2.get_console_output(:instance_id => "") }.should.raise(AWS::ArgumentError)
  end


end