File: test_elb.rb

package info (click to toggle)
ruby-aws 2.10.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 748 kB
  • sloc: ruby: 7,748; makefile: 16
file content (51 lines) | stat: -rw-r--r-- 1,090 bytes parent folder | download | duplicates (2)
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
require 'test/unit'
require File.dirname(__FILE__) + '/../../lib/aws'
require 'pp'
require File.dirname(__FILE__) + '/../test_credentials.rb'

class TestElb < Test::Unit::TestCase

    # Some of RightEc2 instance methods concerning instance launching and image registration
    # are not tested here due to their potentially risk.

    def setup
        TestCredentials.get_credentials

        @ec2 = Aws::Ec2.new(TestCredentials.aws_access_key_id,
                            TestCredentials.aws_secret_access_key)

        @elb = Aws::Elb.new(TestCredentials.aws_access_key_id,
                            TestCredentials.aws_secret_access_key)
        @key = 'right_ec2_awesome_test_key'
        @group = 'right_ec2_awesome_test_security_group'
    end

    def test_01_create_elb

    end

    def test_02_register_instances

    end

    def test_03_deregister_instances

    end


    def test_04_describe_elb
        desc = @elb.describe_load_balancers
        puts desc.inspect
    end

    def test_06_describe_instance_health

    end


    def test_15_delete_elb

    end


end