Sha256: 468ef7d768a2568ceea4b13550efa54cdd8e228b35274bfebecef00fe316014d

Contents?: true

Size: 1.81 KB

Versions: 7

Compression:

Stored size: 1.81 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 RuntimeError do
        @service.check_zone_exists('fog-test-rg', 'zone_name')
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
fog-azure-rm-0.4.5 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-temp-0.0.5 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.4 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.3 test/requests/dns/test_check_zone_exists.rb
far-gem-0.5.1 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.2 test/requests/dns/test_check_zone_exists.rb
fog-azure-rm-0.4.1 test/requests/dns/test_check_zone_exists.rb