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-06-15 20:25:01 -04:00
|
|
|
Shindo.tests("Fog::DNS[:#{provider}] | record", [provider]) do
|
2010-12-29 20:23:40 -05:00
|
|
|
|
2011-01-03 18:39:38 -05:00
|
|
|
record_attributes = {
|
2011-05-27 13:30:20 -04:00
|
|
|
:name => 'www.fogrecordtests.com',
|
|
|
|
:type => 'A',
|
|
|
|
:value => '1.2.3.4'
|
2011-01-03 16:36:31 -05:00
|
|
|
}.merge!(config[:record_attributes] || {})
|
2010-12-29 20:23:40 -05:00
|
|
|
|
2011-01-03 14:48:55 -05:00
|
|
|
if !Fog.mocking? || config[:mocked]
|
2011-01-03 18:39:38 -05:00
|
|
|
zone_attributes = {
|
2011-02-25 18:10:12 -05:00
|
|
|
:domain => 'fogrecordtests.com'
|
2011-01-03 18:39:38 -05:00
|
|
|
}.merge(config[:zone_attributes] || {})
|
2011-01-03 14:23:51 -05:00
|
|
|
|
2011-06-15 20:25:01 -04:00
|
|
|
@zone = Fog::DNS[provider].zones.create(zone_attributes)
|
2011-01-03 18:39:38 -05:00
|
|
|
model_tests(@zone.records, record_attributes, config[:mocked])
|
2011-01-03 14:23:51 -05:00
|
|
|
|
|
|
|
@zone.destroy
|
|
|
|
end
|
2010-12-29 20:23:40 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|