1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/rackspace/models/auto_scale/webhook.rb

35 lines
No EOL
773 B
Ruby

Shindo.tests('Fog::Rackspace::AutoScale | webhook', ['rackspace', 'rackspace_autoscale']) do
service = Fog::Rackspace::AutoScale.new :rackspace_region => :ord
group = service.groups.create({
:policies => POLICIES_OPTIONS,
:group_config => GROUP_CONFIG_OPTIONS,
:launch_config => LAUNCH_CONFIG_OPTIONS
})
policy = group.policies.create({
:name => "set group to 5 servers",
:desired_capacity => 5,
:cooldown => 1800,
:type => "webhook",
:group_id => group.id
})
options = {
:name => 'webhook name',
:metadata => {
'owner' => 'me'
},
:group_id => group.id,
:policy_id => policy.id
}
begin
model_tests(policy.webhooks, options, false)
ensure
policy.destroy
group.destroy
end
end