Sha256: 76ce6928cb2b13a6e3e3609e4f10c3fb3683e6809229ec8183d4ca735e3db3c8

Contents?: true

Size: 1.45 KB

Versions: 25

Compression:

Stored size: 1.45 KB

Contents

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

# Test class for Check Traffic Manager Profile Exists
class TestCheckTrafficManagerProfileExists < Minitest::Test
  def setup
    @service = Fog::TrafficManager::AzureRM.new(credentials)
    @traffic_manager_client = @service.instance_variable_get(:@traffic_mgmt_client)
    @profiles = @traffic_manager_client.profiles
  end

  def test_check_traffic_manager_profile_exists_success
    mocked_response = ApiStub::Requests::TrafficManager::TrafficManagerProfile.create_traffic_manager_profile_response(@traffic_manager_client)
    @profiles.stub :get, mocked_response do
      assert @service.check_traffic_manager_profile_exists('fog-test-rg', 'fog-test-profile')
    end
  end

  def test_check_traffic_manager_profile_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceNotFound' }) }
    @profiles.stub :get, response do
      assert !@service.check_traffic_manager_profile_exists('fog-test-rg', 'fog-test-profile')
    end
  end

  def test_check_traffic_manager_profile_exists_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @profiles.stub :get, response do
      assert_raises(RuntimeError) { @service.check_traffic_manager_profile_exists('fog-test-rg', 'fog-test-profile') }
    end
  end
end

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
fog-azure-rm-0.4.0 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.9 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.8 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.7 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.6 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.5 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.4 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-temp-0.0.4 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-temp-0.0.3 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.3 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-temp-0.0.2 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-temp-0.0.1 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.2 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-downgraded-0.3.1 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.1 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-downgraded-0.3.0 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.3.0 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.2.7 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.2.6 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.2.5 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb