Sha256: 4143d1952c69f979d07ea165998da4784ef0fde2450a190adedbe1d70043b3bd

Contents?: true

Size: 1.3 KB

Versions: 25

Compression:

Stored size: 1.3 KB

Contents

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

# Test class for Check Record Set Exists
class TestCheckRecordSetExists < Minitest::Test
  def setup
    @service = Fog::DNS::AzureRM.new(credentials)
    @dns_client = @service.instance_variable_get(:@dns_client)
    @record_sets = @dns_client.record_sets
  end

  def test_check_record_set_exists_success
    mocked_response = ApiStub::Requests::DNS::RecordSet.record_set_response_for_cname_type(@dns_client)
    @record_sets.stub :get, mocked_response do
      assert @service.check_record_set_exists('fog-test-rg', 'fog-test-result', 'fog-test-zone', 'CNAME')
    end
  end

  def test_check_record_set_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'code' => 'NotFound' ) }
    @record_sets.stub :get, response do
      assert !@service.check_record_set_exists('fog-test-rg', 'fog-test-result', 'fog-test-zone', 'CNAME')
    end
  end

  def test_check_record_set_exists_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, nil, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @record_sets.stub :get, response do
      assert_raises(RuntimeError) { @service.check_record_set_exists('fog-test-rg', 'fog-test-result', 'fog-test-zone', 'CNAME') }
    end
  end
end

Version data entries

25 entries across 25 versions & 3 rubygems

Version Path
fog-azure-rm-0.4.0 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.9 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.8 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.7 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.6 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.5 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.4 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-temp-0.0.4 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-temp-0.0.3 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.3 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-temp-0.0.2 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-temp-0.0.1 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.2 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-downgraded-0.3.1 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.1 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-downgraded-0.3.0 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.3.0 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.2.7 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.2.6 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.2.5 test/requests/dns/test_check_record_set_exists.rb