1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

filters on tags can pass an array

this comparison works fine where there is just a string or single tag,
where there is an array of tags this comparison breaks fails.

So instead we must cast to an array and then do a comparison by an
inclusion of a a value in an array
This commit is contained in:
Craig Genner 2015-11-23 14:53:11 +00:00
parent 2df3e43e85
commit 8596a448c8
2 changed files with 34 additions and 1 deletions

View file

@ -415,7 +415,7 @@ module Fog
tag_filters[key.gsub('tag:', '')] = filters.delete(key) if /^tag:/ =~ key
end
for tag_key, tag_value in tag_filters
resources = resources.select{|r| tag_value == tag_set_fetcher[r][tag_key]}
resources = resources.select{|r| [tag_value].flatten.include? tag_set_fetcher[r][tag_key]}
end
resources

View file

@ -218,6 +218,39 @@ Shindo.tests('Fog::Compute[:aws] | instance requests', ['aws']) do
another_server.destroy
tests("#run_instances_with_tags").formats(@describe_instances_format) do
svr1 = Fog::Compute[:aws].servers.create(
:availability_zone => 'eu-west-1a',
:tags => {
"Name" => "test::test::test",
"Stack" => "test",
"Stage" => "test",
"App" => "test1",
},
:image_id => 'ami-3d7e2e54',
:flavor_id => 't1.micro',
)
svr2 = Fog::Compute[:aws].servers.create(
:availability_zone => 'eu-west-1b',
:tags => {
"Name" => "test::test::dev",
"Stack" => "test",
"Stage" => "test",
"App" => "test2",
},
:image_id => 'ami-3d7e2e54',
:flavor_id => 't1.micro',
)
filters = {'tag:App' => ['test1', 'test2']}
body = Fog::Compute[:aws].describe_instances('tag:App' => ['test1', 'test2']).body
tests("returns 2 hosts").returns(2) { body['reservationSet'].size }
svr1.destroy
svr2.destroy
body
end
tests("#get_console_output('#{@instance_id}')").formats(@get_console_output_format) do
Fog::Compute[:aws].get_console_output(@instance_id).body
end