Sha256: d2d232bc59600b694bedf8a6a2b405066227ae11150bbe8771c45109d9ad03dc
Contents?: true
Size: 1.21 KB
Versions: 14
Compression:
Stored size: 1.21 KB
Contents
require File.expand_path '../../test_helper', __dir__ # Test class for Update Traffic Manager Profile class TestUpdateTrafficManagerProfile < 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 @mocked_response = ApiStub::Requests::TrafficManager::TrafficManagerProfile.create_traffic_manager_profile_response(@traffic_manager_client) @profile_hash = ApiStub::Requests::TrafficManager::TrafficManagerProfile.profile_hash end def test_update_traffic_manager_profile_success @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_update_traffic_manager_profile_exception_failure response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) } @profiles.stub :create_or_update, response do assert_raises MsRestAzure::AzureOperationError do @service.create_or_update_traffic_manager_profile(resource_group: 'fog-test-rg') end end end end
Version data entries
14 entries across 14 versions & 2 rubygems