Sha256: 0ea73b0e0a3ba8f343a092155e6c5491ad4104f4b8068899a8036996028d1dd4

Contents?: true

Size: 1.83 KB

Versions: 14

Compression:

Stored size: 1.83 KB

Contents

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

# Test class for Check Zone Exists
class TestCheckZoneExists < 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_zone_exists_success
    mocked_response = ApiStub::Requests::DNS::Zone.zone_response(@dns_client)
    @zones.stub :get, mocked_response do
      assert_equal @service.check_zone_exists('fog-test-rg', 'zone_name'), true
    end
  end

  def test_check_zone_arguement_error
    response = ApiStub::Requests::DNS::RecordSet.list_record_sets_response(@dns_client)
    @zones.stub :get, response do
      assert_raises ArgumentError do
        @service.check_zone_exists('fog-test-rg')
      end
    end
  end

  def test_check_zone_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceNotFound' }) }
    @zones.stub :get, response do
      assert !@service.check_zone_exists('fog-test-rg', 'zone_name')
    end
  end

  def test_check_zone_resource_group_exists_failure
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'ResourceGroupNotFound' }) }
    @zones.stub :get, response do
      assert !@service.check_zone_exists('fog-test-rg', 'zone_name')
    end
  end

  def test_check_zone_exists_exception
    response = proc { raise MsRestAzure::AzureOperationError.new(nil, create_mock_response, 'error' => { 'message' => 'mocked exception', 'code' => 'Exception' }) }
    @zones.stub :get, response do
      assert_raises MsRestAzure::AzureOperationError do
        @service.check_zone_exists('fog-test-rg', 'zone_name')
      end
    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_zone_exists.rb
fog-azure-rm-0.5.3 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.5.2 test/requests/dns/test_check_zone_exists.rb
far-gem-0.5.6 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.5.1 test/requests/dns/test_check_zone_exists.rb
far-gem-0.5.5 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.5.0 test/requests/dns/test_check_zone_exists.rb
far-gem-0.5.4 test/requests/dns/test_check_zone_exists.rb
far-gem-0.5.3 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.9 test/requests/dns/test_check_zone_exists.rb
far-gem-0.5.2 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.8 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.7 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.6 test/requests/dns/test_check_zone_exists.rb