|
| 1 | +require "helpers/test_helper" |
| 2 | +require "pry" |
| 3 | + |
| 4 | +class UnitTestSQLCollections < MiniTest::Test |
| 5 | + def setup |
| 6 | + Fog.mock! |
| 7 | + @client = Fog::Google::SQL.new |
| 8 | + |
| 9 | + # SQL Users API doesn't have a get method |
| 10 | + # SQL Flags API has only a 'list' method |
| 11 | + exceptions = [Fog::Google::SQL::Users, |
| 12 | + Fog::Google::SQL::Tiers, |
| 13 | + Fog::Google::SQL::Flags] |
| 14 | + # Enumerate all descendants of Fog::Collection |
| 15 | + descendants = ObjectSpace.each_object(Fog::Collection.singleton_class) |
| 16 | + |
| 17 | + @collections = descendants.select { |x| x.name.match /Fog::Google::SQL/ } - exceptions |
| 18 | + end |
| 19 | + |
| 20 | + def teardown |
| 21 | + Fog.unmock! |
| 22 | + end |
| 23 | + |
| 24 | + def test_common_methods |
| 25 | + # This tests whether Fog::Compute::Google collections have common lifecycle methods |
| 26 | + @collections.each do |klass| |
| 27 | + obj = klass.new |
| 28 | + assert obj.respond_to?(:all), "#{klass} should have an .all method" |
| 29 | + assert obj.respond_to?(:get), "#{klass} should have a .get method" |
| 30 | + assert obj.respond_to?(:each), "#{klass} should behave like Enumerable" |
| 31 | + end |
| 32 | + end |
| 33 | + |
| 34 | + def test_collection_get_arguments |
| 35 | + # TODO: Fixture for #352 |
| 36 | + skip |
| 37 | + @collections.each do |klass| |
| 38 | + obj = klass.new |
| 39 | + assert_operator(obj.method(:get).arity, :<=, 1, |
| 40 | + "#{klass} should have at most 1 required parameter in get()") |
| 41 | + end |
| 42 | + end |
| 43 | +end |
0 commit comments