Sha256: 158ba213d46281e8dbd72a2cfb56333feeb0a416088463bad990467b8292da0b

Contents?: true

Size: 1.88 KB

Versions: 14

Compression:

Stored size: 1.88 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, create_mock_response, '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_resource_group_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @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, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'Exception' }) }
    @profiles.stub :get, response do
      assert_raises(MsRestAzure::AzureOperationError) { @service.check_traffic_manager_profile_exists('fog-test-rg', 'fog-test-profile') }
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
fog-azure-rm-0.6.0 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.5.3 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.5.2 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
far-gem-0.5.6 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.5.1 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
far-gem-0.5.5 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.5.0 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
far-gem-0.5.4 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
far-gem-0.5.3 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.4.9 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
far-gem-0.5.2 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.4.8 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.4.7 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb
fog-azure-rm-0.4.6 test/requests/traffic_manager/test_check_traffic_manager_profile_exists.rb