Sha256: a9c96ddb42e421126e07a422f8de3a7f9a7046bf48a912a662d8ba8d78a18042

Contents?: true

Size: 1.17 KB

Versions: 14

Compression:

Stored size: 1.17 KB

Contents

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

# Test class for Create Traffic Manager Profile
class TestCreateTrafficManagerProfile < 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
    @profile_hash = ApiStub::Requests::TrafficManager::TrafficManagerProfile.profile_hash
  end

  def test_create_traffic_manager_profile_success
    mocked_response = ApiStub::Requests::TrafficManager::TrafficManagerProfile.create_traffic_manager_profile_response(@traffic_manager_client)
    @profiles.stub :create_or_update, mocked_response do
      assert_equal @service.create_or_update_traffic_manager_profile(@profile_hash), mocked_response
    end
  end

  def test_create_traffic_manager_profile_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @profiles.stub :create_or_update, response do
      assert_raises(MsRestAzure::AzureOperationError) { @service.create_or_update_traffic_manager_profile(@profile_hash) }
    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_create_traffic_manager_profile.rb
fog-azure-rm-0.5.3 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
fog-azure-rm-0.5.2 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
far-gem-0.5.6 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
fog-azure-rm-0.5.1 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
far-gem-0.5.5 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
fog-azure-rm-0.5.0 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
far-gem-0.5.4 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
far-gem-0.5.3 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
fog-azure-rm-0.4.9 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
far-gem-0.5.2 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
fog-azure-rm-0.4.8 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
fog-azure-rm-0.4.7 test/requests/traffic_manager/test_create_traffic_manager_profile.rb
fog-azure-rm-0.4.6 test/requests/traffic_manager/test_create_traffic_manager_profile.rb