Skip to content

Commit aaa65b2

Browse files
committed
Add more unit tests
+ test fixtures for fog#352
1 parent 77125ea commit aaa65b2

8 files changed

+253
-6
lines changed

test/unit/compute/test_common_collections.rb

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
require "helpers/test_helper"
2+
require "pry"
23

34
class UnitTestCollections < MiniTest::Test
45
def setup
56
Fog.mock!
7+
68
@client = Fog::Compute.new(:provider => "Google", :google_project => "foo")
79

8-
# Top-level ancestors we do not dest
9-
common_ancestors = [Fog::Collection, Fog::Association, Fog::PagedCollection]
1010
# Projects do not have a "list" method in compute API
1111
exceptions = [Fog::Compute::Google::Projects]
1212
# Enumerate all descendants of Fog::Collection
1313
descendants = ObjectSpace.each_object(Fog::Collection.singleton_class).to_a
1414

15-
@collections = descendants - common_ancestors - exceptions
15+
@collections = descendants.select {|d| d.name.match /Fog::Compute::Google/ } - exceptions
1616
end
1717

1818
def teardown
@@ -28,4 +28,14 @@ def test_common_methods
2828
assert obj.respond_to?(:each), "#{klass} should behave like Enumerable"
2929
end
3030
end
31+
32+
def test_collection_get_arguments
33+
# TODO: Fixture for #352
34+
skip
35+
@collections.each do |klass|
36+
obj = klass.new
37+
assert_operator(obj.method(:get).arity, :<=, 1,
38+
"#{klass} should have at most 1 required parameter in get()")
39+
end
40+
end
3141
end

test/unit/compute/test_common_models.rb

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ def setup
55
Fog.mock!
66
@client = Fog::Compute.new(:provider => "Google", :google_project => "foo")
77

8-
# Top-level ancestors we do not test
9-
common_ancestors = [Fog::Model, Fog::Compute::Server]
108
# Do not test models that do not have a create method in API
119
exceptions = [ Fog::Compute::Google::MachineType,
1210
Fog::Compute::Google::Region,
@@ -18,7 +16,7 @@ def setup
1816
# Enumerate all descendants of Fog::Model
1917
descendants = ObjectSpace.each_object(Fog::Model.singleton_class).to_a
2018

21-
@models = descendants - common_ancestors - exceptions
19+
@models = descendants.select {|d| d.name.match /Fog::Compute::Google/ } - exceptions
2220
end
2321

2422
def teardown
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
require "helpers/test_helper"
2+
require "pry"
3+
4+
class UnitTestDNSCollections < MiniTest::Test
5+
def setup
6+
Fog.mock!
7+
@client = Fog::DNS.new(provider: "google")
8+
9+
# DNS Projects API does not support 'list', so 'all' method is not possible
10+
exceptions = [Fog::DNS::Google::Projects]
11+
# Enumerate all descendants of Fog::Collection
12+
descendants = ObjectSpace.each_object(Fog::Collection.singleton_class)
13+
14+
@collections = descendants.select { |x| x.name.match /Fog::DNS::Google/ } - exceptions
15+
end
16+
17+
def teardown
18+
Fog.unmock!
19+
end
20+
21+
def test_common_methods
22+
# This tests whether Fog::Compute::Google collections have common lifecycle methods
23+
@collections.each do |klass|
24+
obj = klass.new
25+
assert obj.respond_to?(:all), "#{klass} should have an .all method"
26+
assert obj.respond_to?(:get), "#{klass} should have a .get method"
27+
assert obj.respond_to?(:each), "#{klass} should behave like Enumerable"
28+
end
29+
end
30+
31+
def test_collection_get_arguments
32+
# TODO: Fixture for #352
33+
skip
34+
@collections.each do |klass|
35+
obj = klass.new
36+
assert_operator(obj.method(:get).arity, :<=, 1,
37+
"#{klass} should have at most 1 required parameter in get()")
38+
end
39+
end
40+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
require "helpers/test_helper"
2+
require "pry"
3+
4+
class UnitTestMonitoringCollections < MiniTest::Test
5+
def setup
6+
Fog.mock!
7+
@client = Fog::Monitoring.new(provider: "google")
8+
9+
# TimeSeries API has no 'get' method
10+
exceptions = [Fog::Google::Monitoring::TimeseriesCollection]
11+
# Enumerate all descendants of Fog::Collection
12+
descendants = ObjectSpace.each_object(Fog::Collection.singleton_class).to_a
13+
14+
@collections = descendants.select { |x| x.name.match /Fog::Google::Monitoring/ } - exceptions
15+
end
16+
17+
def teardown
18+
Fog.unmock!
19+
end
20+
21+
def test_common_methods
22+
# This tests whether Fog::Compute::Google collections have common lifecycle methods
23+
@collections.each do |klass|
24+
obj = klass.new
25+
assert obj.respond_to?(:all), "#{klass} should have an .all method"
26+
assert obj.respond_to?(:get), "#{klass} should have a .get method"
27+
assert obj.respond_to?(:each), "#{klass} should behave like Enumerable"
28+
end
29+
end
30+
31+
def test_collection_get_arguments
32+
# TODO: Fixture for #352
33+
skip
34+
@collections.each do |klass|
35+
obj = klass.new
36+
assert_operator(obj.method(:get).arity, :<=, 1,
37+
"#{klass} should have at most 1 required parameter in get()")
38+
end
39+
end
40+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
require "helpers/test_helper"
2+
require "pry"
3+
4+
class UnitTestPubsubCollections < MiniTest::Test
5+
def setup
6+
Fog.mock!
7+
@client = Fog::Google::Pubsub.new
8+
9+
exceptions = []
10+
# Enumerate all descendants of Fog::Collection
11+
descendants = ObjectSpace.each_object(Fog::Collection.singleton_class)
12+
13+
@collections = descendants.select { |x| x.name.match /Fog::Google::Pubsub/ } - exceptions
14+
end
15+
16+
def teardown
17+
Fog.unmock!
18+
end
19+
20+
def test_common_methods
21+
# This tests whether Fog::Compute::Google collections have common lifecycle methods
22+
@collections.each do |klass|
23+
obj = klass.new
24+
assert obj.respond_to?(:all), "#{klass} should have an .all method"
25+
assert obj.respond_to?(:get), "#{klass} should have a .get method"
26+
assert obj.respond_to?(:each), "#{klass} should behave like Enumerable"
27+
end
28+
end
29+
30+
def test_collection_get_arguments
31+
# TODO: Fixture for #352
32+
@collections.each do |klass|
33+
obj = klass.new
34+
assert_operator(obj.method(:get).arity, :<=, 1,
35+
"#{klass} should have at most 1 required parameter in get()")
36+
end
37+
end
38+
end
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
require "helpers/test_helper"
2+
require "pry"
3+
4+
class UnitTestStorageJSONCollections < MiniTest::Test
5+
def setup
6+
Fog.mock!
7+
@client = Fog::Storage.new(provider: "google")
8+
9+
# Enumerate all descendants of Fog::Collection
10+
descendants = ObjectSpace.each_object(Fog::Collection.singleton_class)
11+
12+
@collections = descendants.select {
13+
|x| x.name.match /Fog::Storage::GoogleJSON/
14+
}
15+
end
16+
17+
def teardown
18+
Fog.unmock!
19+
end
20+
21+
def test_common_methods
22+
# This tests whether Fog::Compute::Google collections have common lifecycle methods
23+
@collections.each do |klass|
24+
obj = klass.new
25+
assert obj.respond_to?(:all), "#{klass} should have an .all method"
26+
assert obj.respond_to?(:get), "#{klass} should have a .get method"
27+
assert obj.respond_to?(:each), "#{klass} should behave like Enumerable"
28+
end
29+
end
30+
31+
def test_collection_get_arguments
32+
@collections.each do |klass|
33+
obj = klass.new
34+
assert_operator(obj.method(:get).arity, :<=, 1,
35+
"#{klass} should have at most 1 required parameter in get()")
36+
end
37+
end
38+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
require "helpers/test_helper"
2+
require "pry"
3+
4+
class UnitTestStorageXMLCollections < MiniTest::Test
5+
def setup
6+
Fog.mock!
7+
@client = Fog::Storage.new(provider: "google",
8+
google_storage_access_key_id: "",
9+
google_storage_secret_access_key: "")
10+
11+
# Enumerate all descendants of Fog::Collection
12+
descendants = ObjectSpace.each_object(Fog::Collection.singleton_class)
13+
14+
@collections = descendants.select {
15+
|x| x.name.match /Fog::Storage::GoogleXML/
16+
}
17+
end
18+
19+
def teardown
20+
Fog.unmock!
21+
end
22+
23+
def test_common_methods
24+
# This tests whether Fog::Compute::Google collections have common lifecycle methods
25+
@collections.each do |klass|
26+
obj = klass.new
27+
assert obj.respond_to?(:all), "#{klass} should have an .all method"
28+
assert obj.respond_to?(:get), "#{klass} should have a .get method"
29+
assert obj.respond_to?(:each), "#{klass} should behave like Enumerable"
30+
end
31+
end
32+
33+
def test_collection_get_arguments
34+
@collections.each do |klass|
35+
obj = klass.new
36+
assert_operator(obj.method(:get).arity, :<=, 1,
37+
"#{klass} should have at most 1 required parameter in get()")
38+
end
39+
end
40+
end

0 commit comments

Comments
 (0)