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

27 lines
943 B
Ruby

Shindo.tests('Fog::Network[:openstack] | security_group_rule model', ['openstack']) do
@secgroup = Fog::Network[:openstack].security_groups.create({:name => "fogsecgroup"})
attributes = {:security_group_id => @secgroup.id, :direction => "ingress"}
model_tests(Fog::Network[:openstack].security_group_rules, attributes, true)
tests('success') do
tests('#create').succeeds do
attributes = {
:security_group_id => @secgroup.id,
:direction => "ingress",
:protocol => "tcp",
:port_range_min => 22,
:port_range_max => 22,
:remote_ip_prefix => "0.0.0.0/0"
}
@secgrouprule = Fog::Network[:openstack].security_group_rules.create(attributes)
@secgrouprule.wait_for { ready? } unless Fog.mocking?
!@secgrouprule.id.nil?
end
tests('#destroy').succeeds do
@secgrouprule.destroy
end
end
@secgroup.destroy
end