mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[aws|rds] Add security_groups collection and model tests
This commit is contained in:
parent
74baf6596f
commit
c872eefe34
2 changed files with 55 additions and 0 deletions
50
tests/aws/models/rds/security_group_tests.rb
Normal file
50
tests/aws/models/rds/security_group_tests.rb
Normal file
|
@ -0,0 +1,50 @@
|
|||
Shindo.tests("AWS::RDS | security_group", ['aws', 'rds']) do
|
||||
group_name = 'fog-test'
|
||||
params = {:id => group_name, :description => 'fog test'}
|
||||
|
||||
model_tests(AWS[:rds].security_groups, params, false) do
|
||||
|
||||
tests("#description").returns('fog test') { @instance.description }
|
||||
# TODO:
|
||||
tests("#ready?")
|
||||
tests("#authorize_ec2_security_group").succeeds do
|
||||
@ec2_sec_group = AWS[:compute].security_groups.create(:name => 'fog-test', :description => 'fog test')
|
||||
|
||||
@instance.authorize_ec2_security_group(@ec2_sec_group.name)
|
||||
returns('authorizing') do
|
||||
@instance.ec2_security_groups.detect{|h| h['EC2SecurityGroupName'] == @ec2_sec_group.name}['Status']
|
||||
end
|
||||
end
|
||||
|
||||
@instance.wait_for { ready? }
|
||||
|
||||
tests("#revoke_ec2_security_group").succeeds do
|
||||
@instance.revoke_ec2_security_group(@ec2_sec_group.name)
|
||||
|
||||
returns('revoking') do
|
||||
@instance.ec2_security_groups.detect{|h| h['EC2SecurityGroupName'] == @ec2_sec_group.name}['Status']
|
||||
end
|
||||
|
||||
@instance.wait_for { ready? }
|
||||
|
||||
returns(false) { @instance.ec2_security_groups.any?{|h| h['EC2SecurityGroupName'] == @ec2_sec_group.name} }
|
||||
@ec2_sec_group.destroy
|
||||
end
|
||||
|
||||
tests("#authorize_cidrip").succeeds do
|
||||
@cidr = '127.0.0.1/32'
|
||||
@instance.authorize_cidrip(@cidr)
|
||||
returns('authorizing') { @instance.ip_ranges.detect{|h| h['CIDRIP'] == @cidr}['Status'] }
|
||||
end
|
||||
|
||||
@instance.wait_for { ready? }
|
||||
tests("#revoke_cidrip").succeeds do
|
||||
@instance.revoke_cidrip(@cidr)
|
||||
returns('revoking') { @instance.ip_ranges.detect{|h| h['CIDRIP'] == @cidr}['Status'] }
|
||||
@instance.wait_for { ready? }
|
||||
returns(false) { @instance.ip_ranges.any?{|h| h['CIDRIP'] == @cidr} }
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
end
|
5
tests/aws/models/rds/security_groups_tests.rb
Normal file
5
tests/aws/models/rds/security_groups_tests.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
Shindo.tests("AWS::RDS | security groups", ['aws', 'rds']) do
|
||||
params = {:id => 'fog-test', :description => 'fog test'}
|
||||
|
||||
collection_tests(AWS[:rds].security_groups, params, false)
|
||||
end
|
Loading…
Reference in a new issue