Sha256: 73f10eb7674b668a29eb91f12bd649e93a8ed9aaa193a2704042ece8950d2256

Contents?: true

Size: 1.35 KB

Versions: 23

Compression:

Stored size: 1.35 KB

Contents

require "helpers/test_helper"

class UnitTestCollections < MiniTest::Test
  def setup
    Fog.mock!

    @client = Fog::Compute.new(provider: "google",
                               google_project: "foo")

    # Exceptions that do not pass test_common_methods:
    #
    # Projects do not have a "list" method in compute API, so 'all' is not implemented
    @common_method_exceptions = [Fog::Compute::Google::Projects]
    # Enumerate all descendants of Fog::Collection
    descendants = ObjectSpace.each_object(Fog::Collection.singleton_class).to_a

    @collections = descendants.select { |d| d.name.match(/Fog::Compute::Google/) }
  end

  def teardown
    Fog.unmock!
  end

  # This tests whether Fog::Compute::Google collections have common lifecycle methods
  def test_common_methods
    subjects = @collections - @common_method_exceptions
    subjects.each do |klass|
      obj = klass.new
      assert obj.respond_to?(:all), "#{klass} should have an .all method"
      assert obj.respond_to?(:get), "#{klass} should have a .get method"
      assert obj.respond_to?(:each), "#{klass} should behave like Enumerable"
    end
  end

  def test_collection_get_arguments
    @collections.each do |klass|
      obj = klass.new
      assert_operator(obj.method(:get).arity, :<=, 1,
                      "#{klass} should have at most 1 required parameter in get()")
    end
  end
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
fog-google-1.8.2 test/unit/compute/test_common_collections.rb
fog-google-1.8.1 test/unit/compute/test_common_collections.rb
fog-google-1.8.0 test/unit/compute/test_common_collections.rb