2010-12-29 20:23:40 -05:00
|
|
|
for provider, config in dns_providers
|
|
|
|
|
2011-06-21 17:50:01 -04:00
|
|
|
# FIXME: delay/timing breaks things :(
|
|
|
|
next if [:dnsmadeeasy].include?(provider)
|
|
|
|
|
2011-11-10 20:56:32 -05:00
|
|
|
domain_name = uniq_id + '.com'
|
|
|
|
|
2011-07-14 20:22:43 -04:00
|
|
|
Shindo.tests("Fog::DNS[:#{provider}] | zones", [provider.to_s]) do
|
2010-12-29 20:23:40 -05:00
|
|
|
|
2011-01-03 18:39:38 -05:00
|
|
|
zone_attributes = {
|
2011-11-10 20:56:32 -05:00
|
|
|
:domain => domain_name
|
2011-01-03 18:39:38 -05:00
|
|
|
}.merge!(config[:zone_attributes] || {})
|
2010-12-29 20:23:40 -05:00
|
|
|
|
2011-06-15 20:25:01 -04:00
|
|
|
collection_tests(Fog::DNS[provider].zones, zone_attributes, config[:mocked])
|
2011-01-03 14:23:51 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2011-11-10 20:56:32 -05:00
|
|
|
end
|