Sha256: 9b7bbdfe09ebe16fc38742848e10ff8c9a3a95c2a48d3c4b0069bfe7d5ee6d82

Contents?: true

Size: 1.85 KB

Versions: 37

Compression:

Stored size: 1.85 KB

Contents

Shindo.tests("Fog::Network[:openstack] | lb_health_monitor", ['openstack']) do

  tests('success') do
    before do
      @lb_pool = Fog::Network[:openstack].lb_pools.create(:subnet_id => 'subnet_id',
                                                          :protocol => 'HTTP',
                                                          :lb_method => 'ROUND_ROBIN')
    end

    after do
      @lb_pool.destroy
    end

    tests('#create').succeeds do
      @instance = Fog::Network[:openstack].lb_health_monitors.create(:type => 'PING',
                                                                     :delay => 1,
                                                                     :timeout => 5,
                                                                     :max_retries => 10,
                                                                     :http_method => 'GET',
                                                                     :url_path => '/',
                                                                     :expected_codes => '200, 201',
                                                                     :admin_state_up => true,
                                                                     :tenant_id => 'tenant_id')
      !@instance.id.nil?
    end

    tests('#update').succeeds do
      @instance.delay = 5
      @instance.timeout = 10
      @instance.max_retries = 20
      @instance.http_method = 'POST'
      @instance.url_path = '/varz'
      @instance.expected_codes = '200'
      @instance.admin_state_up = false
      @instance.update
    end

    tests('#associate_to_pool').succeeds do
      @instance.associate_to_pool(@lb_pool.id)
    end

    tests('#disassociate_from_pool').succeeds do
      @instance.disassociate_from_pool(@lb_pool.id)
    end

    tests('#destroy').succeeds do
      @instance.destroy == true
    end

  end

end

Version data entries

37 entries across 37 versions & 5 rubygems

Version Path
fog-openstack-0.1.7 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-openstack-0.1.6 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-openstack-0.1.5 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-openstack-0.1.4 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-openstack-0.1.3 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-openstack-0.1.2 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-openstack-0.1.1 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-openstack-0.1.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.37.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.36.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.35.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-2.0.0.pre.0 tests/openstack/models/network/lb_health_monitor_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.34.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.33.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.32.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.31.0 tests/openstack/models/network/lb_health_monitor_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.30.0 tests/openstack/models/network/lb_health_monitor_tests.rb
fog-1.29.0 tests/openstack/models/network/lb_health_monitor_tests.rb