Sha256: 1d8e0619d50489523f582b8b26c3747dd2a81bb56a0e7b38639aad39415d1016

Contents?: true

Size: 876 Bytes

Versions: 3

Compression:

Stored size: 876 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

3 entries across 3 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 test/requests/dns/test_check_for_zone.rb
fog-azure-rm-0.1.0 test/requests/dns/test_check_for_zone.rb
fog-azure-rm-0.0.9 test/requests/dns/test_check_for_zone.rb