fog--fog/tests/compute/helper.rb

97 lines
2.7 KiB
Ruby
Raw Normal View History

2011-01-03 21:34:08 +00:00
def compute_providers
{
:aws => {
:server_attributes => {},
2011-01-03 21:34:08 +00:00
:mocked => true
},
:bluebox => {
2011-02-23 23:00:56 +00:00
:server_attributes => {
2012-02-17 02:43:25 +00:00
:flavor_id => '94fd37a7-2606-47f7-84d5-9000deda52ae', # Block 1GB Virtual Server
:image_id => 'a8f05200-7638-47d1-8282-2474ef57c4c3', # Scientific Linux 6
:location_id => '37c2bd9a-3e81-46c9-b6e2-db44a25cc675', # Seattle, WA
:password => 'chunkybacon'
2011-02-23 23:00:56 +00:00
},
:mocked => false
},
:brightbox => {
2011-01-03 21:34:08 +00:00
:server_attributes => {
:image_id => Brightbox::Compute::TestSupport.image_id
2011-01-03 21:34:08 +00:00
},
:mocked => false
},
:openstack => {
:mocked => true,
:server_attributes => {
:flavor_ref => 2,
:image_ref => "0e09fbd6-43c5-448a-83e9-0d3d05f9747e",
:name => "fog_#{Time.now.to_i}"
}
},
:cloudstack => {
:provider_attributes => {
:cloudstack_host => 'http://host.foo'
},
2012-05-22 23:52:17 +00:00
:server_attributes => {}.tap do |hash|
[:zone_id, :network_ids, :template_id, :service_offering_id].each do |k|
hash[k]= Fog.credentials["cloudstack_#{k}".to_sym]
2012-05-22 23:52:17 +00:00
end
end,
:volume_attributes => {:name => "somevolume"}.tap do |hash|
[:zone_id, :disk_offering_id].each do |k|
hash[k]= Fog.credentials["cloudstack_#{k}".to_sym]
2012-05-22 23:52:17 +00:00
end
end,
:security_group_attributes => {:name => "cloudstack.sg.#{Time.now.to_i}"},
:security_group_rule_attributes => {
:cidr => '0.0.0.0/0',
:start_port => 123,
:end_port => 456,
:protocol => 'tcp'
},
:mocked => true
},
:glesys => {
:server_attributes => {
:rootpassword => "secret_password_#{Time.now.to_i}",
:hostname => "fog.example#{Time.now.to_i}.com"
},
:mocked => false
},
:hp => {
:server_attributes => {
:flavor_id => 100,
:image_id => 1242,
:name => "fog_#{Time.now.to_i}"
},
:mocked => true
},
2011-12-02 18:27:44 +00:00
:ibm => {
:server_attributes => {},
:mocked => true
},
:joyent => {
:mocked => false
},
:ninefold => {
:mocked => false
},
:rackspace => {
2011-01-03 21:34:08 +00:00
:server_attributes => {
:image_id => 49, # image 49 = Ubuntu 10.04 LTS (lucid)
:name => "fog_#{Time.now.to_i}"
},
:mocked => true
},
:voxel => {
2011-02-23 23:00:56 +00:00
:server_attributes => {
:name => "fog.#{Time.now.to_i}",
:disk_size => 10,
:processing_cores => 1,
:image_id => 55, # image 55 = Ubuntu 10.04 (Lucid), 64-bit, base install
:facility => "LDJ1"
},
:mocked => false
2011-01-03 21:34:08 +00:00
}
}
end