Sha256: 35b1b1695000422fa43efe97fcb0c741e2c0e33149666824d2010bf2db25f473

Contents?: true

Size: 852 Bytes

Versions: 1

Compression:

Stored size: 852 Bytes

Contents

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

# Test class for Check for Zone Request
class TestCheckForZone < 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_check_for_zone_success
    mocked_response = ApiStub::Requests::DNS::Zone.zone_response(@dns_client)
    @zones.stub :get, mocked_response do
      assert_equal @service.check_for_zone('fog-test-rg', 'fog-test-zone'), true
    end
  end

  def test_check_for_zone_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception' }) }
    @zones.stub :get, response do
      assert_raises(RuntimeError) { @service.check_for_zone('fog-test-rg', 'fog-test-zone') }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.2 test/requests/dns/test_check_for_zone.rb