Sha256: 8802fe27a8c16affc9007bd359cb7c480236fe5fc039e9185daa0b6a3a7f5a93

Contents?: true

Size: 1.73 KB

Versions: 14

Compression:

Stored size: 1.73 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, create_mock_response, '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_resource_group_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @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, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'Exception' }) }
    @record_sets.stub :get, response do
      assert_raises(MsRestAzure::AzureOperationError) { @service.check_record_set_exists('fog-test-rg', 'fog-test-result', 'fog-test-zone', 'CNAME') }
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
fog-azure-rm-0.6.0 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.5.3 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.5.2 test/requests/dns/test_check_record_set_exists.rb
far-gem-0.5.6 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.5.1 test/requests/dns/test_check_record_set_exists.rb
far-gem-0.5.5 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.5.0 test/requests/dns/test_check_record_set_exists.rb
far-gem-0.5.4 test/requests/dns/test_check_record_set_exists.rb
far-gem-0.5.3 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.4.9 test/requests/dns/test_check_record_set_exists.rb
far-gem-0.5.2 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.4.8 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.4.7 test/requests/dns/test_check_record_set_exists.rb
fog-azure-rm-0.4.6 test/requests/dns/test_check_record_set_exists.rb