Sha256: ecb17352355192756a535527a13595c5a55c090e5cdfa545cc948b3817c26ed6

Contents?: true

Size: 1.18 KB

Versions: 33

Compression:

Stored size: 1.18 KB

Contents

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

# Test class for Create Zone Request
class TestCreateZone < Minitest::Test
  def setup
    @service = Fog::DNS::AzureRM.new(credentials)
    @dns_client = @service.instance_variable_get(:@dns_client)
    @zones = @dns_client.zones
  end

  def test_create_or_update_zone_success
    mocked_response = ApiStub::Requests::DNS::Zone.zone_response(@dns_client)
    zone_params = {}
    @zones.stub :create_or_update, mocked_response do
      assert_equal @service.create_or_update_zone(zone_params), mocked_response
    end
  end

  def test_create_or_update_zone_failure
    response = ApiStub::Requests::DNS::RecordSet.list_record_sets_response(@dns_client)
    @zones.stub :create_or_update, response do
      assert_raises ArgumentError do
        @service.create_or_update_zone
      end
    end
  end

  def test_create_or_update_zone_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    zone_params = {}
    @zones.stub :create_or_update, response do
      assert_raises RuntimeError do
        @service.create_or_update_zone(zone_params)
      end
    end
  end
end

Version data entries

33 entries across 33 versions & 4 rubygems

Version Path
fog-azure-rm-0.4.5 test/requests/dns/test_create_zone.rb
fog-azure-rm-temp-0.0.5 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.4.4 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.4.3 test/requests/dns/test_create_zone.rb
far-gem-0.5.1 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.4.2 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.4.1 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.4.0 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.9 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.8 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.7 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.6 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.5 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.4 test/requests/dns/test_create_zone.rb
fog-azure-rm-temp-0.0.4 test/requests/dns/test_create_zone.rb
fog-azure-rm-temp-0.0.3 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.3 test/requests/dns/test_create_zone.rb
fog-azure-rm-temp-0.0.2 test/requests/dns/test_create_zone.rb
fog-azure-rm-temp-0.0.1 test/requests/dns/test_create_zone.rb
fog-azure-rm-0.3.2 test/requests/dns/test_create_zone.rb