mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
fd41afa8f2
Ninefold.
47 lines
2.2 KiB
Ruby
47 lines
2.2 KiB
Ruby
Shindo.tests('Fog::Compute[:ninefold] | load balancers', ['ninefold']) do
|
|
|
|
# NOTE: all of these tests require you to have a vm built with a public IP address.
|
|
tests('success') do
|
|
|
|
before do
|
|
@compute = Fog::Compute[:ninefold]
|
|
@public_ip_id = @compute.list_public_ip_addresses.first['id']
|
|
@server_id = @compute.servers.all.first.id
|
|
@create_load_balancer = @compute.create_load_balancer_rule(:algorithm => 'roundrobin', :name => 'test',
|
|
:privateport => 1000, :publicport => 2000,
|
|
:publicipid => @public_ip_id)
|
|
end
|
|
|
|
after do
|
|
delete = @compute.delete_load_balancer_rule id: @create_load_balancer['id']
|
|
Ninefold::Compute::TestSupport.wait_for_job(delete['jobid'])
|
|
end
|
|
|
|
tests("#create_load_balancer_rule()").formats(Ninefold::Compute::Formats::LoadBalancers::CREATE_LOAD_BALANCER_RULE_RESPONSE) do
|
|
pending if Fog.mocking?
|
|
result = Ninefold::Compute::TestSupport.wait_for_job(@create_load_balancer['jobid'])
|
|
result['jobresult']['loadbalancer']
|
|
end
|
|
|
|
tests("#assign_to_load_balancer_rule()").formats(Ninefold::Compute::Formats::LoadBalancers::ASSIGN_LOAD_BALANCER_RULE_RESPONSE) do
|
|
pending if Fog.mocking?
|
|
assign_load_balancer = @compute.assign_to_load_balancer_rule id: @create_load_balancer['id'], virtualmachineids: @server_id
|
|
result = Ninefold::Compute::TestSupport.wait_for_job(assign_load_balancer['jobid'])
|
|
result['jobresult']
|
|
end
|
|
|
|
tests("#list_to_load_balancer_rules()").formats(Ninefold::Compute::Formats::LoadBalancers::LIST_LOAD_BALANCER_RULES_RESPONSE) do
|
|
pending if Fog.mocking?
|
|
list_load_balancer_rules = @compute.list_load_balancer_rules
|
|
list_load_balancer_rules['loadbalancerrule'].first
|
|
end
|
|
|
|
tests("#update_to_load_balancer_rule()").formats(Ninefold::Compute::Formats::LoadBalancers::UPDATE_LOAD_BALANCER_RULE_RESPONSE) do
|
|
pending if Fog.mocking?
|
|
update_load_balancer = @compute.update_load_balancer_rule id: @create_load_balancer['id'], algorithm: 'source'
|
|
result = Ninefold::Compute::TestSupport.wait_for_job(update_load_balancer['jobid'])
|
|
result['jobresult']['loadbalancer']
|
|
end
|
|
|
|
end
|
|
end
|