Sha256: 3fdcaab333451880d7b88fbf589ed364f13665bd42d6fad595212ea7813f1738

Contents?: true

Size: 1.58 KB

Versions: 7

Compression:

Stored size: 1.58 KB

Contents

require File.expand_path '../../test_helper', __dir__

# Test class for Check Public Ip Exists Request
class TestCheckPublicIpExists < Minitest::Test
  def setup
    @service = Fog::Network::AzureRM.new(credentials)
    network_client = @service.instance_variable_get(:@network_client)
    @public_ips = network_client.public_ipaddresses
  end

  def test_check_public_ip_exists_success
    @public_ips.stub :get, true do
      assert @service.check_public_ip_exists('fog-test-rg', 'fog-test-public-ip')
    end
  end

  def test_check_public_ip_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceNotFound' }) }
    @public_ips.stub :get, response do
      assert !@service.check_public_ip_exists('fog-test-rg', 'fog-test-public-ip')
    end
  end

  def test_check_public_ip_resource_group_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @public_ips.stub :get, response do
      assert !@service.check_public_ip_exists('fog-test-rg', 'fog-test-public-ip')
    end
  end

  def test_check_public_ip_exists_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'Exception' }) }
    @public_ips.stub :get, response do
      assert_raises(RuntimeError) { @service.check_public_ip_exists('fog-test-rg', 'fog-test-public-ip') }
    end
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
fog-azure-rm-0.4.5 test/requests/network/test_check_public_ip_exists.rb
fog-azure-rm-temp-0.0.5 test/requests/network/test_check_public_ip_exists.rb
fog-azure-rm-0.4.4 test/requests/network/test_check_public_ip_exists.rb
fog-azure-rm-0.4.3 test/requests/network/test_check_public_ip_exists.rb
far-gem-0.5.1 test/requests/network/test_check_public_ip_exists.rb
fog-azure-rm-0.4.2 test/requests/network/test_check_public_ip_exists.rb
fog-azure-rm-0.4.1 test/requests/network/test_check_public_ip_exists.rb