Sha256: c57fb37cce23588c168ad5847a5d9ba93c55aaa6f4f19da5f11f7f397425c4e1

Contents?: true

Size: 1.42 KB

Versions: 1

Compression:

Stored size: 1.42 KB

Contents

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

# Test class for Availability Set Model
class TestAvailabilitySet < Minitest::Test
  def setup
    @service = Fog::Compute::AzureRM.new(credentials)
    @availability_set = availability_set(@service)
    compute_client = @service.instance_variable_get(:@compute_mgmt_client)
    @response = ApiStub::Models::Compute::AvailabilitySet.create_unmanaged_availability_set_response(compute_client)
  end

  def test_model_methods
    methods = [
      :save,
      :destroy
    ]
    methods.each do |method|
      assert_respond_to @availability_set, method
    end
  end

  def test_model_attributes
    attributes = [
      :id,
      :name,
      :type,
      :location,
      :resource_group,
      :platform_update_domain_count,
      :platform_fault_domain_count,
      :is_managed,
      :sku_name
    ]
    attributes.each do |attribute|
      assert_respond_to @availability_set, attribute
    end
  end

  def test_save_method_response
    @service.stub :create_availability_set, @response do
      assert_instance_of Fog::Compute::AzureRM::AvailabilitySet, @availability_set.save
    end
  end

  def test_destroy_method_true_response
    @service.stub :delete_availability_set, true do
      assert @availability_set.destroy
    end
  end

  def test_destroy_method_false_response
    @service.stub :delete_availability_set, false do
      assert !@availability_set.destroy
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-azure-rm-temp-0.0.2 test/models/compute/test_availability_set.rb