deltacloud-core 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -1
- data/bin/deltacloudd +11 -5
- data/config.ru +3 -3
- data/deltacloud-core.gemspec +24 -18
- data/lib/cimi/collections/address_templates.rb +3 -3
- data/lib/cimi/collections/addresses.rb +6 -5
- data/lib/cimi/collections/entity_metadata.rb +0 -2
- data/lib/cimi/collections/machine_admins.rb +5 -5
- data/lib/cimi/collections/machine_configurations.rb +2 -2
- data/lib/cimi/collections/machine_images.rb +3 -3
- data/lib/cimi/collections/machines.rb +32 -10
- data/lib/cimi/collections/network_configurations.rb +4 -3
- data/lib/cimi/collections/network_templates.rb +4 -3
- data/lib/cimi/collections/networks.rb +8 -8
- data/lib/cimi/collections/routing_group_templates.rb +4 -3
- data/lib/cimi/collections/routing_groups.rb +4 -3
- data/lib/cimi/collections/volume_configurations.rb +3 -3
- data/lib/cimi/collections/volume_images.rb +3 -3
- data/lib/cimi/collections/volumes.rb +4 -3
- data/lib/cimi/collections/vsp_configurations.rb +4 -3
- data/lib/cimi/collections/vsp_templates.rb +4 -3
- data/lib/cimi/collections/vsps.rb +8 -7
- data/lib/cimi/helpers.rb +1 -1
- data/lib/cimi/helpers/cimi_helper.rb +11 -1
- data/lib/cimi/models.rb +4 -0
- data/lib/cimi/models/base.rb +11 -1
- data/lib/cimi/models/cloud_entry_point.rb +7 -14
- data/lib/cimi/models/disk.rb +40 -0
- data/lib/cimi/models/disk_collection.rb +38 -0
- data/lib/cimi/models/machine.rb +9 -43
- data/lib/cimi/models/machine_collection.rb +7 -4
- data/lib/cimi/models/machine_configuration.rb +8 -15
- data/lib/cimi/models/machine_configuration_collection.rb +6 -4
- data/lib/cimi/models/machine_image_collection.rb +6 -4
- data/lib/cimi/models/machine_template_collection.rb +6 -4
- data/lib/cimi/models/machine_volume.rb +42 -0
- data/lib/cimi/models/machine_volume_collection.rb +34 -0
- data/lib/cimi/models/network.rb +5 -9
- data/lib/cimi/models/network_collection.rb +6 -5
- data/lib/cimi/models/schema.rb +20 -0
- data/lib/cimi/models/volume_collection.rb +6 -4
- data/lib/cimi/models/volume_configuration_collection.rb +6 -4
- data/lib/cimi/models/volume_image_collection.rb +6 -4
- data/lib/cimi/models/volume_template_collection.rb +6 -4
- data/lib/deltacloud/api.rb +3 -3
- data/lib/deltacloud/collections/addresses.rb +1 -1
- data/lib/deltacloud/collections/firewalls.rb +4 -2
- data/lib/deltacloud/collections/keys.rb +1 -1
- data/lib/deltacloud/collections/load_balancers.rb +1 -1
- data/lib/deltacloud/collections/storage_volumes.rb +4 -4
- data/lib/deltacloud/drivers/base_driver.rb +12 -20
- data/lib/deltacloud/drivers/ec2/aws_vpc_monkey_patch.rb +294 -0
- data/lib/deltacloud/drivers/ec2/ec2_driver.rb +38 -6
- data/lib/deltacloud/drivers/fgcp/fgcp_client.rb +4 -0
- data/lib/deltacloud/drivers/fgcp/fgcp_driver.rb +40 -4
- data/lib/deltacloud/drivers/gogrid/gogrid_client.rb +8 -7
- data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +422 -416
- data/lib/deltacloud/drivers/google/google_driver.rb +2 -1
- data/lib/deltacloud/drivers/openstack/openstack_driver.rb +30 -16
- data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +1 -0
- data/lib/deltacloud/drivers/vsphere/vsphere_driver.rb +3 -9
- data/lib/deltacloud/helpers/deltacloud_helper.rb +0 -2
- data/lib/deltacloud/models/firewall_rule.rb +2 -0
- data/lib/deltacloud/models/hardware_profile.rb +61 -59
- data/{tests/deprecated/core_ext/string.rb → lib/deltacloud/version.rb} +3 -15
- data/lib/deltacloud_rack.rb +1 -0
- data/lib/ec2/server.rb +5 -3
- data/lib/sinatra/rack_accept.rb +53 -53
- data/lib/sinatra/rack_etag.rb +1 -1
- data/tests/cimi/collections/cloud_entry_point_test.rb +11 -2
- data/tests/deltacloud/common.rb +1 -1
- data/tests/deltacloud/rack_test.rb +3 -3
- data/tests/drivers/base/base_driver_test.rb +6 -2
- data/tests/drivers/base/common.rb +1 -0
- data/tests/drivers/base/library_test.rb +6 -2
- data/tests/drivers/ec2/common.rb +34 -15
- data/tests/drivers/ec2/images_test.rb +2 -3
- data/tests/drivers/ec2/instance_test.rb +12 -2
- data/tests/drivers/ec2/keys_test.rb +2 -2
- data/tests/drivers/ec2/realms_test.rb +7 -3
- data/tests/drivers/ec2/storage_snapshots_test.rb +2 -3
- data/tests/drivers/gogrid/common.rb +24 -0
- data/tests/drivers/gogrid/hardware_profiles_test.rb +51 -0
- data/tests/drivers/gogrid/images_test.rb +57 -0
- data/tests/drivers/gogrid/instances_test.rb +92 -0
- data/tests/drivers/gogrid/realms_test.rb +45 -0
- data/tests/drivers/google/buckets_test.rb +105 -0
- data/tests/drivers/google/common.rb +20 -0
- data/tests/drivers/mock/common.rb +1 -0
- data/tests/drivers/mock/images_test.rb +3 -2
- data/tests/drivers/mock/instances_test.rb +3 -2
- data/tests/drivers/mock/keys_test.rb +3 -2
- data/tests/drivers/mock/realms_test.rb +3 -2
- data/tests/drivers/mock/storage_snapshots_test.rb +3 -2
- data/tests/drivers/mock/storage_volumes_test.rb +3 -2
- data/tests/drivers/models/address_test.rb +3 -3
- data/tests/drivers/models/base_test.rb +4 -2
- data/tests/drivers/models/blob_test.rb +3 -3
- data/tests/drivers/models/common.rb +3 -0
- data/tests/drivers/models/hardware_profile_test.rb +5 -4
- data/tests/drivers/models/instance_address_test.rb +3 -3
- data/tests/drivers/models/instance_profile_test.rb +3 -3
- data/tests/drivers/models/instance_test.rb +3 -3
- data/tests/drivers/models/keys_test.rb +3 -3
- data/tests/drivers/models/metrics_test.rb +3 -3
- data/tests/drivers/openstack/common.rb +26 -0
- data/tests/drivers/openstack/hardware_profiles_test.rb +46 -0
- data/tests/drivers/openstack/images_test.rb +50 -0
- data/tests/drivers/openstack/instances_test.rb +66 -0
- data/tests/drivers/openstack/keys_test.rb +61 -0
- data/tests/drivers/openstack/realms_test.rb +46 -0
- data/tests/drivers/rhevm/common.rb +2 -0
- data/tests/drivers/rhevm/images_test.rb +3 -4
- data/tests/drivers/rhevm/instance_test.rb +2 -2
- data/tests/drivers/rhevm/provider_test.rb +2 -2
- data/tests/drivers/rhevm/realms_test.rb +2 -3
- data/tests/ec2/common.rb +5 -4
- data/tests/ec2/server_test.rb +3 -2
- data/tests/helpers/rack/common.rb +3 -0
- data/tests/helpers/rack/rack_accept_test.rb +65 -0
- data/tests/helpers/rack/rack_date_test.rb +27 -0
- data/tests/helpers/rack/rack_driver_select_test.rb +53 -0
- data/tests/helpers/rack/rack_etag_test.rb +29 -0
- data/tests/helpers/rack/rack_matrix_params_test.rb +72 -0
- data/tests/test_helper.rb +44 -36
- data/views/hardware_profiles/index.html.haml +1 -1
- data/views/hardware_profiles/show.html.haml +2 -2
- data/views/hardware_profiles/show.xml.haml +2 -1
- data/views/images/show.html.haml +6 -5
- metadata +74 -117
- data/tests/deprecated/api/common.rb +0 -1
- data/tests/deprecated/api/driver_test.rb +0 -79
- data/tests/deprecated/api/library_test.rb +0 -6
- data/tests/deprecated/cimi/features/step_definitions/common_steps.rb +0 -59
- data/tests/deprecated/cimi/features/step_definitions/machine_images_steps.rb +0 -0
- data/tests/deprecated/cimi/features/step_definitions/machines_steps.rb +0 -100
- data/tests/deprecated/cimi/features/step_definitions/volumes_steps.rb +0 -115
- data/tests/deprecated/cimi/features/support/env.rb +0 -75
- data/tests/deprecated/common.rb +0 -279
- data/tests/deprecated/drivers/ec2/api_test.rb +0 -19
- data/tests/deprecated/drivers/ec2/common.rb +0 -23
- data/tests/deprecated/drivers/ec2/drivers_test.rb +0 -120
- data/tests/deprecated/drivers/ec2/hardware_profiles_test.rb +0 -224
- data/tests/deprecated/drivers/ec2/images_test.rb +0 -230
- data/tests/deprecated/drivers/ec2/instances_test.rb +0 -356
- data/tests/deprecated/drivers/ec2/keys_test.rb +0 -181
- data/tests/deprecated/drivers/ec2/realms_test.rb +0 -146
- data/tests/deprecated/drivers/fgcp/api_test.rb +0 -47
- data/tests/deprecated/drivers/fgcp/hardware_profiles_test.rb +0 -54
- data/tests/deprecated/drivers/fgcp/realms_test.rb +0 -42
- data/tests/deprecated/drivers/fgcp/setup.rb +0 -13
- data/tests/deprecated/drivers/google/api_test.rb +0 -19
- data/tests/deprecated/drivers/google/buckets_test.rb +0 -100
- data/tests/deprecated/drivers/google/common.rb +0 -54
- data/tests/deprecated/drivers/mock/api_test.rb +0 -10
- data/tests/deprecated/drivers/mock/buckets_test.rb +0 -195
- data/tests/deprecated/drivers/mock/common.rb +0 -7
- data/tests/deprecated/drivers/mock/drivers_test.rb +0 -123
- data/tests/deprecated/drivers/mock/hardware_profiles_test.rb +0 -224
- data/tests/deprecated/drivers/mock/images_test.rb +0 -197
- data/tests/deprecated/drivers/mock/instances_test.rb +0 -343
- data/tests/deprecated/drivers/mock/keys_test.rb +0 -161
- data/tests/deprecated/drivers/mock/realms_test.rb +0 -132
- data/tests/deprecated/drivers/mock/storage_snapshots_test.rb +0 -114
- data/tests/deprecated/drivers/mock/storage_volumes_test.rb +0 -122
- data/tests/deprecated/drivers/openstack/api_test.rb +0 -46
- data/tests/deprecated/drivers/openstack/common.rb +0 -21
- data/tests/deprecated/drivers/openstack/hardware_profiles_test.rb +0 -64
- data/tests/deprecated/drivers/openstack/images_test.rb +0 -46
- data/tests/deprecated/drivers/openstack/instances_test.rb +0 -208
- data/tests/deprecated/drivers/openstack/realms_test.rb +0 -40
- data/tests/deprecated/drivers/rackspace/api_test.rb +0 -46
- data/tests/deprecated/drivers/rackspace/buckets_test.rb +0 -150
- data/tests/deprecated/drivers/rackspace/common.rb +0 -16
- data/tests/deprecated/drivers/rackspace/hardware_profiles_test.rb +0 -58
- data/tests/deprecated/drivers/rackspace/images_test.rb +0 -45
- data/tests/deprecated/drivers/rackspace/instances_test.rb +0 -166
- data/tests/deprecated/drivers/rackspace/realms_test.rb +0 -41
- data/tests/deprecated/drivers/rhevm/api_test.rb +0 -45
- data/tests/deprecated/drivers/rhevm/common.rb +0 -21
- data/tests/deprecated/drivers/rhevm/hardware_profiles_test.rb +0 -58
- data/tests/deprecated/drivers/rhevm/images_test.rb +0 -48
- data/tests/deprecated/drivers/rhevm/instances_test.rb +0 -182
- data/tests/deprecated/drivers/rhevm/realms_test.rb +0 -40
- data/tests/deprecated/minitest_common.rb +0 -58
- data/tests/deprecated/minitest_common_api_test.rb +0 -115
- data/tests/deprecated/rabbit_test.rb +0 -52
@@ -1,46 +0,0 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
-
require 'tests/drivers/openstack/common'
|
3
|
-
|
4
|
-
module OpenstackTest
|
5
|
-
|
6
|
-
class ApiTest < Test::Unit::TestCase
|
7
|
-
include Rack::Test::Methods
|
8
|
-
|
9
|
-
def app
|
10
|
-
Rack::Builder.new {
|
11
|
-
map '/' do
|
12
|
-
use Rack::Static, :urls => ["/stylesheets", "/javascripts"], :root => "public"
|
13
|
-
run Rack::Cascade.new([Deltacloud::API])
|
14
|
-
end
|
15
|
-
}
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_01_it_returns_entry_points
|
19
|
-
get_auth_url '/api;driver=openstack/?force_auth=1'
|
20
|
-
(last_xml_response/'/api').first[:driver].should == 'openstack'
|
21
|
-
(last_xml_response/'/api/link').length.should > 0
|
22
|
-
end
|
23
|
-
|
24
|
-
def test_02_it_has_openstack_features
|
25
|
-
get_url '/api;driver=openstack'
|
26
|
-
features = (last_xml_response/'/api/link[@rel="instances"]/feature').collect { |f| f[:name] }
|
27
|
-
features.include?('user_name').should == true
|
28
|
-
features.include?('authentication_password').should == true
|
29
|
-
features.include?('user_files').should == true
|
30
|
-
features.length.should == 3
|
31
|
-
end
|
32
|
-
|
33
|
-
def test_03_it_has_openstack_collections
|
34
|
-
get_url '/api;driver=openstack'
|
35
|
-
collections = (last_xml_response/'/api/link').collect { |f| f[:rel] }
|
36
|
-
collections.include?('instance_states').should == true
|
37
|
-
collections.include?('instances').should == true
|
38
|
-
collections.include?('images').should == true
|
39
|
-
collections.include?('buckets').should == true # NOT YET IMPLEMENTED FOR V2 driver
|
40
|
-
collections.include?('realms').should == true
|
41
|
-
collections.include?('hardware_profiles').should == true
|
42
|
-
collections.length.should == 7
|
43
|
-
end
|
44
|
-
|
45
|
-
end
|
46
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
ENV['API_DRIVER'] = "openstack"
|
2
|
-
ENV['API_USER'] = 'foo@bar.com+foo@bar.com-default-tenant'
|
3
|
-
ENV['API_PASSWORD'] = 'Not_a_real_password!1'
|
4
|
-
ENV['API_PROVIDER'] = 'https://region-a.geo-1.identity.hpcloudsvc.com:35357/v2.0/'
|
5
|
-
|
6
|
-
load File.join(File.dirname(__FILE__), '..', '..', 'common.rb')
|
7
|
-
require 'vcr'
|
8
|
-
|
9
|
-
DeltacloudTestCommon::record!
|
10
|
-
|
11
|
-
VCR.config do |c|
|
12
|
-
c.cassette_library_dir = File.join(File.dirname(__FILE__), 'fixtures')
|
13
|
-
c.stub_with :webmock
|
14
|
-
c.default_cassette_options = { :record => :none }
|
15
|
-
end
|
16
|
-
|
17
|
-
class WebMock::Config
|
18
|
-
def net_http_connect_on_start
|
19
|
-
true
|
20
|
-
end
|
21
|
-
end
|
@@ -1,64 +0,0 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
-
require 'tests/drivers/openstack/common'
|
3
|
-
|
4
|
-
module OpenstackTest
|
5
|
-
|
6
|
-
class HardwareProfilesTest < Test::Unit::TestCase
|
7
|
-
include Rack::Test::Methods
|
8
|
-
|
9
|
-
def app
|
10
|
-
Rack::Builder.new {
|
11
|
-
map '/' do
|
12
|
-
use Rack::Static, :urls => ["/stylesheets", "/javascripts"], :root => "public"
|
13
|
-
run Rack::Cascade.new([Deltacloud::API])
|
14
|
-
end
|
15
|
-
}
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_01_it_returns_hardware_profiles
|
19
|
-
get_auth_url '/api;driver=openstack/hardware_profiles'
|
20
|
-
(last_xml_response/'hardware_profiles/hardware_profile').length.should > 0
|
21
|
-
end
|
22
|
-
|
23
|
-
def test_02_each_hardware_profile_has_a_name
|
24
|
-
get_auth_url '/api;driver=openstack/hardware_profiles'
|
25
|
-
(last_xml_response/'hardware_profiles/hardware_profile').each do |profile|
|
26
|
-
(profile/'name').text.should_not == nil
|
27
|
-
(profile/'name').text.should_not == ''
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
def test_03_each_hardware_profile_has_correct_properties
|
32
|
-
get_auth_url '/api;driver=openstack/hardware_profiles'
|
33
|
-
(last_xml_response/'hardware_profiles/hardware_profile').each do |profile|
|
34
|
-
(profile/'property[@name="architecture"]').first[:value].should == 'x86_64'
|
35
|
-
(profile/'property[@name="memory"]').first[:unit].should == 'MB'
|
36
|
-
(profile/'property[@name="memory"]').first[:kind].should == 'fixed'
|
37
|
-
(profile/'property[@name="storage"]').first[:unit].should == 'GB'
|
38
|
-
(profile/'property[@name="storage"]').first[:kind].should == 'fixed'
|
39
|
-
end
|
40
|
-
hwp = ((last_xml_response/'hardware_profiles/hardware_profile').first)
|
41
|
-
@@hwp = { :id => hwp[:id],
|
42
|
-
:arch => (hwp/'property[@name="architecture"]').first[:value],
|
43
|
-
:mem => (hwp/'property[@name="memory"]').first[:value],
|
44
|
-
:disk => (hwp/'property[@name="storage"]').first[:value] }
|
45
|
-
@@no_of_profiles = (last_xml_response/'hardware_profiles/hardware_profile').length
|
46
|
-
end
|
47
|
-
|
48
|
-
def test_04_it_returns_single_hardware_profile
|
49
|
-
get_auth_url "/api;driver=openstack/hardware_profiles/#{@@hwp[:id]}"
|
50
|
-
(last_xml_response/'hardware_profile/name').first.text.should == @@hwp[:id]
|
51
|
-
(last_xml_response/'hardware_profile/property[@name="architecture"]').first[:value].should == @@hwp[:arch]
|
52
|
-
(last_xml_response/'hardware_profile/property[@name="memory"]').first[:value].should == @@hwp[:mem]
|
53
|
-
(last_xml_response/'hardware_profile/property[@name="storage"]').first[:value].should == @@hwp[:disk]
|
54
|
-
end
|
55
|
-
|
56
|
-
def test_05_it_filter_hardware_profiles
|
57
|
-
get_auth_url '/api;driver=openstack/hardware_profiles?architecture=i386'
|
58
|
-
(last_xml_response/'hardware_profiles/hardware_profile').length.should == 0
|
59
|
-
get_auth_url '/api;driver=openstack/hardware_profiles?architecture=x86_64'
|
60
|
-
(last_xml_response/'hardware_profiles/hardware_profile').length.should == @@no_of_profiles
|
61
|
-
end
|
62
|
-
|
63
|
-
end
|
64
|
-
end
|
@@ -1,46 +0,0 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
-
require 'tests/drivers/openstack/common'
|
3
|
-
|
4
|
-
module OpenstackTest
|
5
|
-
|
6
|
-
class ImagesTest < Test::Unit::TestCase
|
7
|
-
include Rack::Test::Methods
|
8
|
-
|
9
|
-
def app
|
10
|
-
Rack::Builder.new {
|
11
|
-
map '/' do
|
12
|
-
use Rack::Static, :urls => ["/stylesheets", "/javascripts"], :root => "public"
|
13
|
-
run Rack::Cascade.new([Deltacloud::API])
|
14
|
-
end
|
15
|
-
}
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_01_it_returns_images
|
19
|
-
get_auth_url '/api;driver=openstack/images'
|
20
|
-
(last_xml_response/'images/image').length.should > 0
|
21
|
-
end
|
22
|
-
|
23
|
-
def test_02_each_image_has_correct_properties
|
24
|
-
get_auth_url '/api;driver=openstack/images'
|
25
|
-
(last_xml_response/'images/image').each do |image|
|
26
|
-
(image/'name').should_not == nil
|
27
|
-
(image/'name').should_not == ''
|
28
|
-
(image/'description').should_not == nil
|
29
|
-
(image/'description').should_not == ''
|
30
|
-
(image/'architecture').should_not == nil
|
31
|
-
(image/'architecture').should_not == ''
|
32
|
-
(image/'state').text.should == 'ACTIVE'
|
33
|
-
ENV['API_USER'].include?((image/'owner_id').text).should == true
|
34
|
-
(image/'actions/link').length.should == 2
|
35
|
-
(image/'actions/link').first[:rel].should == 'create_instance'
|
36
|
-
end
|
37
|
-
@@image_id = ((last_xml_response/'images/image').first)[:id]
|
38
|
-
end
|
39
|
-
|
40
|
-
def test_03_it_returns_single_image
|
41
|
-
get_auth_url "/api;driver=openstack/images/#{@@image_id}"
|
42
|
-
(last_xml_response/'image').length.should == 1
|
43
|
-
end
|
44
|
-
|
45
|
-
end
|
46
|
-
end
|
@@ -1,208 +0,0 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
-
require 'tests/drivers/openstack/common'
|
3
|
-
|
4
|
-
module OpenstackTest
|
5
|
-
|
6
|
-
class InstancesTest < Test::Unit::TestCase
|
7
|
-
include Rack::Test::Methods
|
8
|
-
|
9
|
-
def app
|
10
|
-
Rack::Builder.new {
|
11
|
-
map '/' do
|
12
|
-
use Rack::Static, :urls => ["/stylesheets", "/javascripts"], :root => "public"
|
13
|
-
run Rack::Cascade.new([Deltacloud::API])
|
14
|
-
end
|
15
|
-
}
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_01_01_it_can_create_instance_without_hardware_profile
|
19
|
-
get_auth_url '/api;driver=openstack/images'
|
20
|
-
@@image_id = ((last_xml_response/'images/image').first)[:id]
|
21
|
-
params = {
|
22
|
-
:image_id => @@image_id,
|
23
|
-
:'api[driver]' => 'openstack',
|
24
|
-
}
|
25
|
-
uri = '/api/instances'
|
26
|
-
vcr_cassette = stable_vcr_cassette_name('post', uri, params)
|
27
|
-
post_url uri, params, {'vcr_cassette'=>vcr_cassette}
|
28
|
-
last_response.status.should == 201 # Created
|
29
|
-
@@instance = last_xml_response
|
30
|
-
(@@instance/'instance').length.should > 0
|
31
|
-
(@@instance/'instance/name').first.text.should_not == nil
|
32
|
-
(@@instance/'instance/name').first.text.should_not == nil
|
33
|
-
(@@instance/'instance/owner_id').first.text.should_not == ''
|
34
|
-
ENV['API_USER'].include?((@@instance/'instance/owner_id').first.text).should == true
|
35
|
-
(@@instance/'instance/state').first.text.should == 'PENDING'
|
36
|
-
end
|
37
|
-
|
38
|
-
def test_01_02_it_can_create_instance_with_hardware_profile
|
39
|
-
get_auth_url '/api;driver=openstack/hardware_profiles'
|
40
|
-
@@hwp_id = ((last_xml_response/'hardware_profiles/hardware_profile').first)[:id]
|
41
|
-
params = {
|
42
|
-
:image_id => @@image_id,
|
43
|
-
:hwp_id => @@hwp_id,
|
44
|
-
:'api[driver]' => 'openstack',
|
45
|
-
}
|
46
|
-
uri = '/api/instances'
|
47
|
-
vcr_cassette = stable_vcr_cassette_name('post', uri, params)
|
48
|
-
post_url uri, params, {'vcr_cassette'=>vcr_cassette}
|
49
|
-
last_response.status.should == 201 # Created
|
50
|
-
@@instance2 = last_xml_response
|
51
|
-
(@@instance2/'instance').length.should > 0
|
52
|
-
(@@instance2/'instance/name').first.text.should_not == nil
|
53
|
-
(@@instance2/'instance/name').first.text.should_not == nil
|
54
|
-
(@@instance2/'instance/owner_id').first.text.should_not == ''
|
55
|
-
ENV['API_USER'].include?((@@instance2/'instance/owner_id').first.text).should == true
|
56
|
-
(@@instance2/'instance/state').first.text.should == 'PENDING'
|
57
|
-
end
|
58
|
-
|
59
|
-
def test_02_01_created_instance_has_correct_authentication
|
60
|
-
(@@instance/'instance/authentication').first.should_not == nil
|
61
|
-
(@@instance/'instance/authentication').first[:type].should == 'password'
|
62
|
-
(@@instance/'instance/authentication/login/username').first.text.should == 'root'
|
63
|
-
(@@instance/'instance/authentication/login/password').first.text.should_not == nil
|
64
|
-
(@@instance/'instance/authentication/login/password').first.text.should_not == ''
|
65
|
-
end
|
66
|
-
|
67
|
-
def test_02_02_created_instance_has_correct_authentication
|
68
|
-
(@@instance2/'instance/authentication').first.should_not == nil
|
69
|
-
(@@instance2/'instance/authentication').first[:type].should == 'password'
|
70
|
-
(@@instance2/'instance/authentication/login/username').first.text.should == 'root'
|
71
|
-
(@@instance2/'instance/authentication/login/password').first.text.should_not == nil
|
72
|
-
(@@instance2/'instance/authentication/login/password').first.text.should_not == ''
|
73
|
-
end
|
74
|
-
|
75
|
-
=begin
|
76
|
-
TODO: Disabled since our testing setup doesn't return IP addresses yet ;-)
|
77
|
-
def test_03_01_created_instance_has_correct_addresses
|
78
|
-
(@@instance/'instance/public_addresses/address').length.should > 0
|
79
|
-
(@@instance/'instance/public_addresses/address').first.text.should_not == nil
|
80
|
-
(@@instance/'instance/public_addresses/address').first.text.should_not == ''
|
81
|
-
end
|
82
|
-
|
83
|
-
def test_03_02_created_instance_has_correct_addresses
|
84
|
-
(@@instance2/'instance/public_addresses/address').length.should > 0
|
85
|
-
(@@instance2/'instance/public_addresses/address').first.text.should_not == nil
|
86
|
-
(@@instance2/'instance/public_addresses/address').first.text.should_not == ''
|
87
|
-
end
|
88
|
-
=end
|
89
|
-
|
90
|
-
def test_03_02_created_instance_has_correct_hardware_profile
|
91
|
-
(@@instance2/'instance/hardware_profile').length.should == 1
|
92
|
-
(@@instance2/'instance/hardware_profile').first[:id].should == @@hwp_id
|
93
|
-
(@@instance2/'instance/hardware_profile').first[:href].should_not == nil
|
94
|
-
end
|
95
|
-
|
96
|
-
def test_04_01_created_instance_goes_to_running_state
|
97
|
-
20.times do |tick|
|
98
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance/'instance').first[:id]}", { :tick => tick}
|
99
|
-
last_response.status.should_not == 500
|
100
|
-
state = (last_xml_response/'instance/state').first.text
|
101
|
-
break if state=='RUNNING'
|
102
|
-
sleep(5)
|
103
|
-
end
|
104
|
-
@@instance = last_xml_response
|
105
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance/'instance').first[:id]}"
|
106
|
-
last_response.status.should_not == 500
|
107
|
-
(last_xml_response/'instance/state').first.text.should == 'RUNNING'
|
108
|
-
(last_xml_response/'instance/actions/link[@rel="reboot"]').first.should_not == nil
|
109
|
-
(last_xml_response/'instance/actions/link[@rel="stop"]').first.should_not == nil
|
110
|
-
(last_xml_response/'instance/actions/link[@rel="create_image"]').first.should_not == nil
|
111
|
-
end
|
112
|
-
|
113
|
-
def test_04_02_created_instance_goes_to_running_state
|
114
|
-
20.times do |tick|
|
115
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance2/'instance').first[:id]}", { :tick => tick}
|
116
|
-
last_response.status.should_not == 500
|
117
|
-
state = (last_xml_response/'instance/state').first.text
|
118
|
-
break if state=='RUNNING'
|
119
|
-
sleep(5)
|
120
|
-
end
|
121
|
-
@@instance2 = last_xml_response
|
122
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance2/'instance').first[:id]}"
|
123
|
-
last_response.status.should_not == 500
|
124
|
-
(last_xml_response/'instance/state').first.text.should == 'RUNNING'
|
125
|
-
(last_xml_response/'instance/actions/link[@rel="reboot"]').first.should_not == nil
|
126
|
-
(last_xml_response/'instance/actions/link[@rel="stop"]').first.should_not == nil
|
127
|
-
(last_xml_response/'instance/actions/link[@rel="create_image"]').first.should_not == nil
|
128
|
-
end
|
129
|
-
|
130
|
-
def test_05_01_created_instance_can_be_rebooted
|
131
|
-
params = {
|
132
|
-
:'api[driver]' => 'openstack',
|
133
|
-
}
|
134
|
-
post_url "/api/instances/#{(@@instance/'instance').first[:id]}/reboot", params
|
135
|
-
last_response.status.should == 202
|
136
|
-
20.times do |tick|
|
137
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance/'instance').first[:id]}", { :tick => tick}
|
138
|
-
last_response.status.should_not == 500
|
139
|
-
state = (last_xml_response/'instance/state').first.text
|
140
|
-
break if state=='RUNNING'
|
141
|
-
sleep(5)
|
142
|
-
end
|
143
|
-
end
|
144
|
-
|
145
|
-
def test_05_02_created_instance_can_be_rebooted
|
146
|
-
params = {
|
147
|
-
:'api[driver]' => 'openstack',
|
148
|
-
}
|
149
|
-
post_url "/api/instances/#{(@@instance2/'instance').first[:id]}/reboot", params
|
150
|
-
last_response.status.should == 202
|
151
|
-
20.times do |tick|
|
152
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance2/'instance').first[:id]}", { :tick => tick}
|
153
|
-
last_response.status.should_not == 500
|
154
|
-
state = (last_xml_response/'instance/state').first.text
|
155
|
-
break if state=='RUNNING'
|
156
|
-
sleep(5)
|
157
|
-
end
|
158
|
-
end
|
159
|
-
|
160
|
-
def test_06_01_created_instance_can_be_destroyed
|
161
|
-
#first make sure we recovered from the reboot
|
162
|
-
20.times do |tick|
|
163
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance/'instance').first[:id]}", { :tick => tick}
|
164
|
-
last_response.status.should_not == 500
|
165
|
-
state = (last_xml_response/'instance/state').first.text
|
166
|
-
break if state=='RUNNING'
|
167
|
-
sleep(5)
|
168
|
-
end
|
169
|
-
#now destroy
|
170
|
-
params = {
|
171
|
-
:'api[driver]' => 'openstack',
|
172
|
-
}
|
173
|
-
post_url "/api/instances/#{(@@instance/'instance').first[:id]}/stop", params
|
174
|
-
last_response.status.should == 202
|
175
|
-
20.times do |tick|
|
176
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance/'instance').first[:id]}", { :tick => tick}
|
177
|
-
last_response.status.should_not == 500
|
178
|
-
break if last_response.status == 404
|
179
|
-
sleep(5)
|
180
|
-
end
|
181
|
-
last_response.status.should == 404
|
182
|
-
end
|
183
|
-
|
184
|
-
def test_06_02_created_instance_can_be_destroyed
|
185
|
-
#first make sure we recovered from the reboot
|
186
|
-
20.times do |tick|
|
187
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance2/'instance').first[:id]}", { :tick => tick}
|
188
|
-
last_response.status.should_not == 500
|
189
|
-
state = (last_xml_response/'instance/state').first.text
|
190
|
-
break if state=='RUNNING'
|
191
|
-
sleep(5)
|
192
|
-
end
|
193
|
-
#now destroy
|
194
|
-
params = {
|
195
|
-
:'api[driver]' => 'openstack',
|
196
|
-
}
|
197
|
-
post_url "/api/instances/#{(@@instance2/'instance').first[:id]}/stop", params
|
198
|
-
last_response.status.should == 202
|
199
|
-
20.times do |tick|
|
200
|
-
get_auth_url "/api;driver=openstack/instances/#{(@@instance2/'instance').first[:id]}", { :tick => tick}
|
201
|
-
last_response.status.should_not == 500
|
202
|
-
break if last_response.status == 404
|
203
|
-
sleep(5)
|
204
|
-
end
|
205
|
-
last_response.status.should == 404
|
206
|
-
end
|
207
|
-
end
|
208
|
-
end
|
@@ -1,40 +0,0 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
-
require 'tests/drivers/openstack/common'
|
3
|
-
|
4
|
-
module OpenstackTest
|
5
|
-
|
6
|
-
class RealmsTest < Test::Unit::TestCase
|
7
|
-
include Rack::Test::Methods
|
8
|
-
|
9
|
-
def app
|
10
|
-
Rack::Builder.new {
|
11
|
-
map '/' do
|
12
|
-
use Rack::Static, :urls => ["/stylesheets", "/javascripts"], :root => "public"
|
13
|
-
run Rack::Cascade.new([Deltacloud::API])
|
14
|
-
end
|
15
|
-
}
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_01_it_returns_realms
|
19
|
-
get_auth_url '/api;driver=openstack/realms'
|
20
|
-
(last_xml_response/'realms/realm').length.should > 0
|
21
|
-
end
|
22
|
-
|
23
|
-
def test_02_each_realm_has_a_name
|
24
|
-
get_auth_url '/api;driver=openstack/realms'
|
25
|
-
(last_xml_response/'realms/realm').each do |profile|
|
26
|
-
(profile/'name').text.should_not == nil
|
27
|
-
(profile/'name').text.should_not == ''
|
28
|
-
(profile/'name').text.should == 'default'
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
def test_03_it_returns_single_realm
|
33
|
-
get_auth_url '/api;driver=openstack/realms/us'
|
34
|
-
(last_xml_response/'realm').first[:id].should == 'default'
|
35
|
-
(last_xml_response/'realm/name').first.text.should == 'default'
|
36
|
-
(last_xml_response/'realm/state').first.text.should == 'AVAILABLE'
|
37
|
-
end
|
38
|
-
|
39
|
-
end
|
40
|
-
end
|
@@ -1,46 +0,0 @@
|
|
1
|
-
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
-
require 'tests/drivers/rackspace/common'
|
3
|
-
|
4
|
-
module RackspaceTest
|
5
|
-
|
6
|
-
class ApiTest < Test::Unit::TestCase
|
7
|
-
include Rack::Test::Methods
|
8
|
-
|
9
|
-
def app
|
10
|
-
Rack::Builder.new {
|
11
|
-
map '/' do
|
12
|
-
use Rack::Static, :urls => ["/stylesheets", "/javascripts"], :root => "public"
|
13
|
-
run Rack::Cascade.new([Deltacloud::API])
|
14
|
-
end
|
15
|
-
}
|
16
|
-
end
|
17
|
-
|
18
|
-
def test_01_it_returns_entry_points
|
19
|
-
get_auth_url '/api;driver=rackspace/?force_auth=1'
|
20
|
-
(last_xml_response/'/api').first[:driver].should == 'rackspace'
|
21
|
-
(last_xml_response/'/api/link').length.should > 0
|
22
|
-
end
|
23
|
-
|
24
|
-
def test_02_it_has_rackspace_features
|
25
|
-
get_url '/api;driver=rackspace'
|
26
|
-
features = (last_xml_response/'/api/link[@rel="instances"]/feature').collect { |f| f[:name] }
|
27
|
-
features.include?('user_name').should == true
|
28
|
-
features.include?('authentication_password').should == true
|
29
|
-
features.include?('user_files').should == true
|
30
|
-
features.length.should == 3
|
31
|
-
end
|
32
|
-
|
33
|
-
def test_03_it_has_rackspace_collections
|
34
|
-
get_url '/api;driver=rackspace'
|
35
|
-
collections = (last_xml_response/'/api/link').collect { |f| f[:rel] }
|
36
|
-
collections.include?('instance_states').should == true
|
37
|
-
collections.include?('instances').should == true
|
38
|
-
collections.include?('images').should == true
|
39
|
-
collections.include?('buckets').should == true
|
40
|
-
collections.include?('realms').should == true
|
41
|
-
collections.include?('hardware_profiles').should == true
|
42
|
-
collections.length.should == 7
|
43
|
-
end
|
44
|
-
|
45
|
-
end
|
46
|
-
end
|