deltacloud-core 0.5.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/NOTICE +1 -1
- data/Rakefile +63 -21
- data/bin/deltacloudd +10 -6
- data/config.ru +62 -6
- data/config/drivers/ec2.yaml +8 -0
- data/config/drivers/fgcp.yaml +13 -0
- data/deltacloud-core.gemspec +10 -2
- data/lib/cimi/collections.rb +58 -0
- data/lib/cimi/collections/address_templates.rb +49 -0
- data/lib/cimi/collections/addresses.rb +74 -0
- data/lib/cimi/collections/cloud_entry_point.rb +37 -0
- data/lib/{deltacloud/helpers/conversion_helper.rb → cimi/collections/entity_metadata.rb} +24 -16
- data/lib/cimi/collections/machine_admins.rb +74 -0
- data/lib/cimi/collections/machine_configurations.rb +49 -0
- data/lib/cimi/collections/machine_images.rb +50 -0
- data/lib/cimi/collections/machines.rb +157 -0
- data/lib/cimi/collections/network_configurations.rb +47 -0
- data/lib/cimi/collections/network_templates.rb +48 -0
- data/lib/cimi/collections/networks.rb +125 -0
- data/lib/cimi/collections/routing_group_templates.rb +47 -0
- data/lib/cimi/collections/routing_groups.rb +48 -0
- data/lib/cimi/collections/volume_configurations.rb +48 -0
- data/lib/cimi/collections/volume_images.rb +50 -0
- data/lib/cimi/collections/volumes.rb +80 -0
- data/lib/cimi/collections/vsp_configurations.rb +48 -0
- data/lib/cimi/collections/vsp_templates.rb +50 -0
- data/lib/cimi/collections/vsps.rb +108 -0
- data/lib/cimi/dependencies.rb +1 -0
- data/lib/cimi/helpers.rb +116 -0
- data/lib/cimi/helpers/cimi_helper.rb +6 -2
- data/lib/cimi/models.rb +72 -0
- data/lib/cimi/{model → models}/action.rb +1 -1
- data/lib/cimi/models/address.rb +72 -0
- data/lib/cimi/models/address_collection.rb +34 -0
- data/lib/cimi/models/address_template.rb +54 -0
- data/lib/cimi/models/address_template_collection.rb +34 -0
- data/lib/cimi/{model → models}/base.rb +2 -2
- data/lib/cimi/{model → models}/cloud_entry_point.rb +3 -5
- data/lib/cimi/{model → models}/entity_metadata.rb +7 -6
- data/lib/cimi/{model → models}/entity_metadata_collection.rb +2 -2
- data/lib/cimi/{model → models}/errors.rb +8 -0
- data/lib/cimi/{model → models}/machine.rb +10 -10
- data/lib/cimi/{model → models}/machine_admin.rb +1 -1
- data/lib/cimi/{model → models}/machine_admin_collection.rb +2 -2
- data/lib/cimi/{model → models}/machine_collection.rb +2 -2
- data/lib/cimi/{model → models}/machine_configuration.rb +9 -6
- data/lib/cimi/{model → models}/machine_configuration_collection.rb +2 -2
- data/lib/cimi/{model → models}/machine_image.rb +1 -1
- data/lib/cimi/{model → models}/machine_image_collection.rb +2 -2
- data/lib/cimi/{model → models}/machine_template.rb +0 -0
- data/lib/cimi/{model → models}/machine_template_collection.rb +2 -2
- data/lib/cimi/models/network.rb +109 -0
- data/lib/cimi/{model → models}/network_collection.rb +2 -2
- data/lib/cimi/{model → models}/network_configuration.rb +3 -4
- data/lib/cimi/{model → models}/network_configuration_collection.rb +2 -2
- data/lib/cimi/models/network_template.rb +36 -0
- data/lib/cimi/models/network_template_collection.rb +35 -0
- data/lib/cimi/models/routing_group.rb +34 -0
- data/lib/cimi/models/routing_group_collection.rb +34 -0
- data/lib/cimi/models/routing_group_template.rb +34 -0
- data/lib/cimi/models/routing_group_template_collection.rb +35 -0
- data/lib/cimi/{model → models}/schema.rb +0 -0
- data/lib/cimi/{model → models}/volume.rb +4 -4
- data/lib/cimi/{model → models}/volume_collection.rb +2 -2
- data/lib/cimi/{model → models}/volume_configuration.rb +1 -1
- data/lib/cimi/{model → models}/volume_configuration_collection.rb +2 -2
- data/lib/cimi/{model → models}/volume_image.rb +1 -1
- data/lib/cimi/{model → models}/volume_image_collection.rb +2 -2
- data/lib/cimi/{model → models}/volume_template.rb +0 -0
- data/lib/cimi/{model → models}/volume_template_collection.rb +2 -2
- data/lib/cimi/models/vsp.rb +102 -0
- data/lib/cimi/models/vsp_collection.rb +34 -0
- data/lib/cimi/models/vsp_configuration.rb +40 -0
- data/lib/cimi/models/vsp_configuration_collection.rb +34 -0
- data/lib/cimi/models/vsp_template.rb +34 -0
- data/lib/cimi/models/vsp_template_collection.rb +34 -0
- data/lib/cimi/server.rb +27 -549
- data/lib/deltacloud/api.rb +79 -0
- data/lib/deltacloud/collections.rb +54 -0
- data/lib/deltacloud/collections/addresses.rb +91 -0
- data/lib/deltacloud/collections/buckets.rb +273 -0
- data/lib/deltacloud/collections/drivers.rb +51 -0
- data/lib/deltacloud/collections/firewalls.rb +116 -0
- data/lib/deltacloud/collections/hardware_profiles.rb +29 -0
- data/lib/deltacloud/collections/images.rb +73 -0
- data/lib/deltacloud/collections/instance_states.rb +59 -0
- data/lib/deltacloud/collections/instances.rb +113 -0
- data/lib/deltacloud/collections/keys.rb +61 -0
- data/lib/deltacloud/collections/load_balancers.rb +102 -0
- data/lib/deltacloud/collections/metrics.rb +28 -0
- data/lib/deltacloud/collections/realms.rb +28 -0
- data/lib/deltacloud/collections/storage_snapshots.rb +51 -0
- data/lib/deltacloud/collections/storage_volumes.rb +99 -0
- data/lib/deltacloud/core_ext.rb +14 -6
- data/lib/deltacloud/core_ext/string.rb +17 -5
- data/lib/deltacloud/drivers.rb +6 -42
- data/lib/deltacloud/drivers/azure/azure_driver.rb +0 -4
- data/lib/deltacloud/{base_driver → drivers}/base_driver.rb +56 -18
- data/lib/deltacloud/drivers/condor/condor_driver.rb +1 -8
- data/lib/deltacloud/drivers/ec2/ec2_driver.rb +142 -33
- data/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb +2 -6
- data/lib/deltacloud/{base_driver → drivers}/exceptions.rb +25 -2
- data/lib/deltacloud/drivers/features.rb +154 -0
- data/lib/deltacloud/drivers/fgcp/fgcp_client.rb +387 -0
- data/lib/deltacloud/drivers/fgcp/fgcp_driver.rb +1435 -0
- data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +8 -11
- data/lib/deltacloud/drivers/google/google_driver.rb +2 -5
- data/lib/deltacloud/drivers/mock/data/keys/test-key.yml +28 -0
- data/lib/deltacloud/drivers/mock/mock_client.rb +2 -2
- data/lib/deltacloud/drivers/mock/mock_driver.rb +58 -40
- data/lib/deltacloud/drivers/mock/mock_driver_cimi_methods.rb +145 -0
- data/lib/deltacloud/drivers/opennebula/cloud_client.rb +107 -73
- data/lib/deltacloud/drivers/opennebula/occi_client.rb +285 -145
- data/lib/deltacloud/drivers/opennebula/opennebula_driver.rb +189 -126
- data/lib/deltacloud/drivers/openstack/openstack_driver.rb +427 -8
- data/lib/deltacloud/drivers/rackspace/rackspace_driver.rb +7 -9
- data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +48 -66
- data/lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb +44 -51
- data/lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb +7 -8
- data/lib/deltacloud/drivers/sbc/sbc_client.rb +1 -1
- data/lib/deltacloud/drivers/sbc/sbc_driver.rb +3 -3
- data/lib/deltacloud/drivers/terremark/terremark_driver.rb +8 -8
- data/lib/deltacloud/drivers/vsphere/vsphere_driver.rb +39 -13
- data/lib/deltacloud/drivers/vsphere/vsphere_filemanager.rb +1 -0
- data/lib/deltacloud/helpers.rb +79 -7
- data/lib/{sinatra/lazy_auth.rb → deltacloud/helpers/auth_helper.rb} +5 -9
- data/lib/deltacloud/helpers/{blob_stream.rb → blob_stream_helper.rb} +7 -7
- data/lib/deltacloud/helpers/deltacloud_helper.rb +286 -0
- data/lib/deltacloud/helpers/driver_helper.rb +58 -0
- data/lib/deltacloud/helpers/rabbit_helper.rb +34 -0
- data/lib/{sinatra/url_for.rb → deltacloud/helpers/url_helper.rb} +31 -9
- data/lib/deltacloud/models.rb +19 -17
- data/lib/deltacloud/models/bucket.rb +4 -0
- data/lib/deltacloud/{hardware_profile.rb → models/hardware_profile.rb} +4 -2
- data/lib/deltacloud/models/image.rb +1 -0
- data/lib/deltacloud/models/instance.rb +4 -2
- data/lib/deltacloud/models/instance_address.rb +4 -0
- data/lib/deltacloud/models/key.rb +4 -0
- data/lib/deltacloud/models/metric.rb +40 -0
- data/lib/deltacloud/{state_machine.rb → models/state_machine.rb} +18 -1
- data/lib/deltacloud/server.rb +41 -1222
- data/lib/deltacloud_rack.rb +79 -0
- data/lib/{cimi/model/network_template.rb → ec2/helpers.rb} +7 -10
- data/lib/{deltacloud/backend_capability.rb → ec2/helpers/errors.rb} +24 -29
- data/lib/ec2/helpers/result.rb +31 -0
- data/lib/ec2/query_parser.rb +152 -0
- data/lib/ec2/server.rb +70 -0
- data/lib/{deltacloud.rb → sinatra.rb} +7 -12
- data/lib/sinatra/rack_accept.rb +13 -7
- data/lib/sinatra/rack_driver_select.rb +1 -1
- data/lib/sinatra/rack_matrix_params.rb +1 -3
- data/public/images/metric.png +0 -0
- data/public/javascripts/jquery.mobile-1.0.1.min.js +177 -0
- data/public/stylesheets/jquery.mobile-1.0.1.min.css +2 -0
- data/public/stylesheets/new.css +10 -0
- data/support/fedora/deltacloud-core.spec +1 -1
- data/tests/api/common.rb +1 -0
- data/tests/api/driver_test.rb +79 -0
- data/tests/api/library_test.rb +48 -0
- data/tests/cimi/features/step_definitions/common_steps.rb +2 -2
- data/tests/cimi/features/step_definitions/machines_steps.rb +5 -4
- data/tests/cimi/features/step_definitions/volumes_steps.rb +8 -8
- data/tests/cimi/features/support/env.rb +33 -11
- data/tests/common.rb +7 -8
- data/tests/drivers/ec2/api_test.rb +19 -0
- data/tests/drivers/ec2/common.rb +23 -0
- data/tests/drivers/ec2/drivers_test.rb +120 -0
- data/tests/drivers/ec2/hardware_profiles_test.rb +224 -0
- data/tests/drivers/ec2/images_test.rb +230 -0
- data/tests/drivers/ec2/instances_test.rb +356 -0
- data/tests/drivers/ec2/keys_test.rb +181 -0
- data/tests/drivers/ec2/realms_test.rb +146 -0
- data/tests/drivers/fgcp/api_test.rb +47 -0
- data/tests/drivers/fgcp/hardware_profiles_test.rb +54 -0
- data/tests/drivers/fgcp/realms_test.rb +42 -0
- data/tests/drivers/{rackspace → fgcp}/setup.rb +5 -6
- data/tests/drivers/google/api_test.rb +10 -26
- data/tests/drivers/google/buckets_test.rb +79 -95
- data/tests/drivers/google/common.rb +54 -0
- data/tests/drivers/mock/api_test.rb +4 -127
- data/tests/drivers/mock/buckets_test.rb +195 -0
- data/tests/drivers/mock/common.rb +7 -0
- data/tests/drivers/mock/drivers_test.rb +123 -0
- data/tests/drivers/mock/hardware_profiles_test.rb +190 -100
- data/tests/drivers/mock/images_test.rb +162 -103
- data/tests/drivers/mock/instances_test.rb +310 -220
- data/tests/drivers/mock/keys_test.rb +161 -0
- data/tests/drivers/mock/realms_test.rb +109 -70
- data/tests/drivers/mock/storage_snapshots_test.rb +114 -0
- data/tests/drivers/mock/storage_volumes_test.rb +122 -0
- data/tests/drivers/openstack/api_test.rb +8 -3
- data/tests/drivers/openstack/common.rb +21 -0
- data/tests/drivers/openstack/hardware_profiles_test.rb +20 -9
- data/tests/drivers/openstack/images_test.rb +11 -5
- data/tests/drivers/openstack/instances_test.rb +61 -16
- data/tests/drivers/openstack/realms_test.rb +11 -7
- data/tests/drivers/rackspace/api_test.rb +7 -2
- data/tests/drivers/rackspace/buckets_test.rb +7 -2
- data/tests/drivers/rackspace/common.rb +16 -0
- data/tests/drivers/rackspace/hardware_profiles_test.rb +7 -2
- data/tests/drivers/rackspace/images_test.rb +7 -2
- data/tests/drivers/rackspace/instances_test.rb +10 -5
- data/tests/drivers/rackspace/realms_test.rb +7 -2
- data/tests/drivers/rhevm/api_test.rb +12 -6
- data/tests/drivers/rhevm/{setup.rb → common.rb} +8 -1
- data/tests/drivers/rhevm/hardware_profiles_test.rb +7 -2
- data/tests/drivers/rhevm/images_test.rb +8 -2
- data/tests/drivers/rhevm/instances_test.rb +7 -2
- data/tests/drivers/rhevm/realms_test.rb +7 -2
- data/tests/minitest_common.rb +58 -0
- data/tests/minitest_common_api_test.rb +115 -0
- data/views/addresses/associate.html.haml +1 -1
- data/views/addresses/index.html.haml +1 -1
- data/views/addresses/show.html.haml +2 -3
- data/views/api/show.html.haml +22 -9
- data/views/api/show.xml.haml +8 -7
- data/views/blobs/show.xml.haml +7 -4
- data/views/buckets/new.html.haml +2 -2
- data/views/cimi/errors/401.xml.haml +1 -1
- data/views/error.html.haml +3 -3
- data/views/errors/400.html.haml +1 -1
- data/views/errors/400.xml.haml +1 -2
- data/views/errors/401.html.haml +8 -7
- data/views/errors/401.xml.haml +1 -1
- data/views/errors/404.xml.haml +1 -0
- data/views/errors/500.xml.haml +4 -2
- data/views/{cimi/errors/403.html.haml → errors/501.html.haml} +4 -2
- data/views/errors/501.xml.haml +1 -0
- data/views/errors/502.xml.haml +1 -7
- data/views/{cimi/errors/500.html.haml → errors/504.html.haml} +0 -0
- data/views/errors/504.xml.haml +1 -0
- data/views/firewalls/new.html.haml +2 -2
- data/views/firewalls/new_rule.html.haml +1 -1
- data/views/firewalls/show.html.haml +1 -1
- data/views/hardware_profiles/index.html.haml +3 -1
- data/views/hardware_profiles/index.xml.haml +2 -2
- data/views/hardware_profiles/show.html.haml +3 -3
- data/views/hardware_profiles/show.xml.haml +3 -3
- data/views/images/show.html.haml +5 -0
- data/views/images/show.xml.haml +6 -1
- data/views/instance_states/show.html.haml +1 -1
- data/views/instances/index.html.haml +1 -1
- data/views/instances/new.html.haml +54 -39
- data/views/instances/run_command.html.haml +24 -15
- data/views/instances/show.html.haml +7 -3
- data/views/instances/show.xml.haml +2 -2
- data/views/keys/show.xml.haml +1 -0
- data/views/layout.html.haml +5 -9
- data/views/load_balancers/show.html.haml +12 -6
- data/views/metrics/index.html.haml +13 -0
- data/views/metrics/index.xml.haml +5 -0
- data/views/metrics/show.html.haml +23 -0
- data/views/metrics/show.xml.haml +9 -0
- data/views/realms/show.xml.haml +2 -1
- data/views/root/index.html.haml +1 -1
- data/views/storage_snapshots/show.html.haml +1 -1
- data/views/storage_snapshots/show.xml.haml +1 -0
- data/views/storage_volumes/attach.html.haml +1 -2
- data/views/storage_volumes/index.html.haml +1 -1
- data/views/storage_volumes/new.html.haml +22 -16
- data/views/storage_volumes/show.html.haml +10 -4
- data/views/storage_volumes/show.xml.haml +3 -4
- metadata +547 -519
- data/DISCLAIMER +0 -8
- data/lib/cimi/model.rb +0 -52
- data/lib/cimi/model/network.rb +0 -69
- data/lib/deltacloud/base_driver.rb +0 -18
- data/lib/deltacloud/base_driver/features.rb +0 -262
- data/lib/deltacloud/base_driver/mock_driver.rb +0 -78
- data/lib/deltacloud/drivers/ec2/ec2_mock_driver.rb +0 -186
- data/lib/deltacloud/drivers/rhevm/rhevm_client.rb +0 -521
- data/lib/deltacloud/helpers/application_helper.rb +0 -267
- data/lib/deltacloud/helpers/hardware_profiles_helper.rb +0 -50
- data/lib/deltacloud/helpers/json_helper.rb +0 -31
- data/lib/deltacloud/method_serializer.rb +0 -83
- data/lib/deltacloud/validation.rb +0 -107
- data/lib/sinatra/rabbit.rb +0 -441
- data/lib/sinatra/rack_runtime.rb +0 -47
- data/lib/sinatra/rack_syslog.rb +0 -86
- data/lib/sinatra/sinatra_verbose.rb +0 -73
- data/lib/sinatra/static_assets.rb +0 -99
- data/public/javascripts/jquery.mobile-1.0rc1.min.js +0 -170
- data/public/stylesheets/jquery.mobile-1.0rc1.min.css +0 -12
- data/tests/drivers/google/setup.rb +0 -38
- data/tests/drivers/mock/instance_states_test.rb +0 -71
- data/tests/drivers/mock/setup.rb +0 -3
- data/tests/drivers/mock/url_for_test.rb +0 -67
- data/tests/drivers/openstack/setup.rb +0 -20
- data/views/cimi/errors/400.html.haml +0 -41
- data/views/cimi/errors/401.html.haml +0 -41
- data/views/cimi/errors/404.html.haml +0 -29
- data/views/cimi/errors/405.html.haml +0 -29
- data/views/cimi/errors/502.html.haml +0 -43
- data/views/cimi/errors/backend_capability_failure.html.haml +0 -29
@@ -0,0 +1,230 @@
|
|
1
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
+
require 'tests/drivers/ec2/common'
|
3
|
+
|
4
|
+
describe 'Deltacloud API Images' do
|
5
|
+
before do
|
6
|
+
Timecop.freeze(FREEZED_TIME)
|
7
|
+
VCR.insert_cassette __name__
|
8
|
+
end
|
9
|
+
|
10
|
+
after do
|
11
|
+
VCR.eject_cassette
|
12
|
+
end
|
13
|
+
|
14
|
+
include Deltacloud::Test
|
15
|
+
|
16
|
+
it 'must advertise have the images collection in API entrypoint' do
|
17
|
+
get root_url
|
18
|
+
(xml_response/'api/link[@rel=images]').wont_be_empty
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'must require authentication to access the "image" collection' do
|
22
|
+
get collection_url(:images)
|
23
|
+
last_response.status.must_equal 401
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'should respond with HTTP_OK when accessing the :images collection with authentication' do
|
27
|
+
authenticate
|
28
|
+
get collection_url(:images)
|
29
|
+
last_response.status.must_equal 200
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should support the JSON media type' do
|
33
|
+
authenticate
|
34
|
+
header 'Accept', 'application/json'
|
35
|
+
get collection_url(:images)
|
36
|
+
last_response.status.must_equal 200
|
37
|
+
last_response.headers['Content-Type'].must_equal 'application/json'
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'must include the ETag in HTTP headers' do
|
41
|
+
authenticate
|
42
|
+
get collection_url(:images)
|
43
|
+
last_response.headers['ETag'].wont_be_nil
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'must have the "images" element on top level' do
|
47
|
+
authenticate
|
48
|
+
get collection_url(:images)
|
49
|
+
xml_response.root.name.must_equal 'images'
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'must have some "image" elements inside "images"' do
|
53
|
+
authenticate
|
54
|
+
get collection_url(:images)
|
55
|
+
(xml_response/'images/image').wont_be_empty
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'must provide the :id attribute for each image in collection' do
|
59
|
+
authenticate
|
60
|
+
get collection_url(:images)
|
61
|
+
(xml_response/'images/image').each do |r|
|
62
|
+
r[:id].wont_be_nil
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'must include the :href attribute for each "image" element in collection' do
|
67
|
+
authenticate
|
68
|
+
get collection_url(:images)
|
69
|
+
(xml_response/'images/image').each do |r|
|
70
|
+
r[:href].wont_be_nil
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'must use the absolute URL in each :href attribute' do
|
75
|
+
authenticate
|
76
|
+
get collection_url(:images)
|
77
|
+
(xml_response/'images/image').each do |r|
|
78
|
+
r[:href].must_match /^http/
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'must have the URL ending with the :id of the image' do
|
83
|
+
authenticate
|
84
|
+
get collection_url(:images)
|
85
|
+
(xml_response/'images/image').each do |r|
|
86
|
+
r[:href].must_match /#{r[:id]}$/
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
it 'must return the list of valid parameters for the :index action' do
|
91
|
+
authenticate
|
92
|
+
options collection_url(:images) + '/index'
|
93
|
+
last_response.headers['Allow'].wont_be_nil
|
94
|
+
end
|
95
|
+
|
96
|
+
it 'must have the "name" element defined for each image in collection' do
|
97
|
+
authenticate
|
98
|
+
get collection_url(:images)
|
99
|
+
(xml_response/'images/image').each do |r|
|
100
|
+
(r/'name').wont_be_empty
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
it 'must have the "state" element defined for each image in collection' do
|
105
|
+
authenticate
|
106
|
+
get collection_url(:images)
|
107
|
+
(xml_response/'images/image').each do |r|
|
108
|
+
(r/'state').wont_be_empty
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'must return the full "image" when following the URL in image element' do
|
113
|
+
authenticate
|
114
|
+
get collection_url(:images)
|
115
|
+
(xml_response/'images/image').wont_be_empty
|
116
|
+
(xml_response/'images/image')[0..10].each do |r|
|
117
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
118
|
+
get collection_url(:images) + '/' + r[:id]
|
119
|
+
end
|
120
|
+
last_response.status.must_equal 200
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
it 'must have the "name" element for the image and it should match with the one in collection' do
|
125
|
+
authenticate
|
126
|
+
get collection_url(:images)
|
127
|
+
(xml_response/'images/image').wont_be_empty
|
128
|
+
(xml_response/'images/image')[0..10].each do |r|
|
129
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
130
|
+
get collection_url(:images) + '/' + r[:id]
|
131
|
+
end
|
132
|
+
(xml_response/'name').wont_be_empty
|
133
|
+
(xml_response/'name').first.text.must_equal((r/'name').first.text)
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
it 'must have the "name" element for the image and it should match with the one in collection' do
|
138
|
+
authenticate
|
139
|
+
get collection_url(:images)
|
140
|
+
(xml_response/'images/image').wont_be_empty
|
141
|
+
(xml_response/'images/image')[0..10].each do |r|
|
142
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
143
|
+
get collection_url(:images) + '/' + r[:id]
|
144
|
+
end
|
145
|
+
(xml_response/'state').wont_be_empty
|
146
|
+
(xml_response/'state').first.text.must_equal((r/'state').first.text)
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
it 'should have the "owner_id" element for each image' do
|
151
|
+
authenticate
|
152
|
+
get collection_url(:images)
|
153
|
+
(xml_response/'images/image').wont_be_empty
|
154
|
+
(xml_response/'images/image')[0..10].each do |r|
|
155
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
156
|
+
get collection_url(:images) + '/' + r[:id]
|
157
|
+
end
|
158
|
+
(xml_response/'owner_id').wont_be_empty
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
it 'should have the "description" element for each image' do
|
163
|
+
authenticate
|
164
|
+
get collection_url(:images)
|
165
|
+
(xml_response/'images/image').wont_be_empty
|
166
|
+
(xml_response/'images/image')[0..10].each do |r|
|
167
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
168
|
+
get collection_url(:images) + '/' + r[:id]
|
169
|
+
end
|
170
|
+
(xml_response/'description').wont_be_empty
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
it 'should have the "architecture" element for each image' do
|
175
|
+
authenticate
|
176
|
+
get collection_url(:images)
|
177
|
+
(xml_response/'images/image').wont_be_empty
|
178
|
+
(xml_response/'images/image')[0..10].each do |r|
|
179
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
180
|
+
get collection_url(:images) + '/' + r[:id]
|
181
|
+
end
|
182
|
+
(xml_response/'architecture').wont_be_empty
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
it 'should include the list of compatible hardware_profiles for each image' do
|
187
|
+
authenticate
|
188
|
+
get collection_url(:images)
|
189
|
+
(xml_response/'images/image').wont_be_empty
|
190
|
+
(xml_response/'images/image')[0..10].each do |r|
|
191
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
192
|
+
get collection_url(:images) + '/' + r[:id]
|
193
|
+
end
|
194
|
+
(xml_response/'hardware_profiles/hardware_profile').wont_be_empty
|
195
|
+
(xml_response/'hardware_profiles/hardware_profile').each do |hwp|
|
196
|
+
hwp[:href].wont_be_nil
|
197
|
+
hwp[:href].must_match /^http/
|
198
|
+
hwp[:id].wont_be_nil
|
199
|
+
hwp[:href].must_match /\/#{hwp[:id]}$/
|
200
|
+
hwp[:rel].must_equal 'hardware_profile'
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
it 'should advertise the list of actions that can be executed for each image' do
|
206
|
+
authenticate
|
207
|
+
get collection_url(:images)
|
208
|
+
(xml_response/'images/image').wont_be_empty
|
209
|
+
(xml_response/'images/image')[0..10].each do |r|
|
210
|
+
VCR.use_cassette "#{__name__}_image_#{r[:id]}" do
|
211
|
+
get collection_url(:images) + '/' + r[:id]
|
212
|
+
end
|
213
|
+
(xml_response/'actions/link').wont_be_empty
|
214
|
+
(xml_response/'actions/link').each do |l|
|
215
|
+
l[:href].wont_be_nil
|
216
|
+
l[:href].must_match /^http/
|
217
|
+
l[:method].wont_be_nil
|
218
|
+
l[:rel].wont_be_nil
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
223
|
+
it 'should give client HTML form to create new image' do
|
224
|
+
authenticate
|
225
|
+
header 'Accept', 'text/html'
|
226
|
+
get collection_url(:images) + '/new'
|
227
|
+
last_response.status.must_equal 200
|
228
|
+
end
|
229
|
+
|
230
|
+
end
|
@@ -0,0 +1,356 @@
|
|
1
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
|
2
|
+
require 'tests/drivers/ec2/common'
|
3
|
+
|
4
|
+
describe 'Deltacloud API instances' do
|
5
|
+
include Deltacloud::Test
|
6
|
+
|
7
|
+
before do
|
8
|
+
Timecop.freeze(FREEZED_TIME)
|
9
|
+
VCR.insert_cassette __name__
|
10
|
+
end
|
11
|
+
|
12
|
+
after do
|
13
|
+
VCR.eject_cassette
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'must advertise have the instances collection in API entrypoint' do
|
17
|
+
get root_url
|
18
|
+
(xml_response/'api/link[@rel=instances]').wont_be_empty
|
19
|
+
end
|
20
|
+
|
21
|
+
|
22
|
+
it 'must require authentication to access the "instance" collection' do
|
23
|
+
get collection_url(:instances)
|
24
|
+
last_response.status.must_equal 401
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'should respond with HTTP_OK when accessing the :instances collection with authentication' do
|
28
|
+
authenticate
|
29
|
+
get collection_url(:instances)
|
30
|
+
last_response.status.must_equal 200
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'should support the JSON media type' do
|
34
|
+
authenticate
|
35
|
+
header 'Accept', 'application/json'
|
36
|
+
get collection_url(:instances)
|
37
|
+
last_response.status.must_equal 200
|
38
|
+
last_response.headers['Content-Type'].must_equal 'application/json'
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'must include the ETag in HTTP headers' do
|
42
|
+
authenticate
|
43
|
+
get collection_url(:instances)
|
44
|
+
last_response.headers['ETag'].wont_be_nil
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'must have the "instances" element on top level' do
|
48
|
+
authenticate
|
49
|
+
get collection_url(:instances)
|
50
|
+
xml_response.root.name.must_equal 'instances'
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'must have some "instance" elements inside "instances"' do
|
54
|
+
authenticate
|
55
|
+
get collection_url(:instances)
|
56
|
+
(xml_response/'instances/instance').wont_be_empty
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'must provide the :id attribute for each instance in collection' do
|
60
|
+
authenticate
|
61
|
+
get collection_url(:instances)
|
62
|
+
(xml_response/'instances/instance').each do |r|
|
63
|
+
r[:id].wont_be_nil
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'must include the :href attribute for each "instance" element in collection' do
|
68
|
+
authenticate
|
69
|
+
get collection_url(:instances)
|
70
|
+
(xml_response/'instances/instance').each do |r|
|
71
|
+
r[:href].wont_be_nil
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'must use the absolute URL in each :href attribute' do
|
76
|
+
authenticate
|
77
|
+
get collection_url(:instances)
|
78
|
+
(xml_response/'instances/instance').each do |r|
|
79
|
+
r[:href].must_match /^http/
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
it 'must have the URL ending with the :id of the instance' do
|
84
|
+
authenticate
|
85
|
+
get collection_url(:instances)
|
86
|
+
(xml_response/'instances/instance').each do |r|
|
87
|
+
r[:href].must_match /#{r[:id]}$/
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'must return the list of valid parameters for the :index action' do
|
92
|
+
authenticate
|
93
|
+
options collection_url(:instances) + '/index'
|
94
|
+
last_response.headers['Allow'].wont_be_nil
|
95
|
+
end
|
96
|
+
|
97
|
+
it 'must have the "name" element defined for each instance in collection' do
|
98
|
+
authenticate
|
99
|
+
get collection_url(:instances)
|
100
|
+
(xml_response/'instances/instance').each do |r|
|
101
|
+
(r/'name').wont_be_empty
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
it 'must have the "state" element defined for each instance in collection' do
|
106
|
+
authenticate
|
107
|
+
get collection_url(:instances)
|
108
|
+
(xml_response/'instances/instance').each do |r|
|
109
|
+
(r/'state').wont_be_empty
|
110
|
+
(r/'state').first.must_match /(RUNNING|STOPPED|PENDING)/
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
|
115
|
+
it 'must return the full "instance" when following the URL in instance element' do
|
116
|
+
authenticate
|
117
|
+
get collection_url(:instances)
|
118
|
+
(xml_response/'instances/instance').each do |r|
|
119
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
120
|
+
get collection_url(:instances) + '/' + r[:id]
|
121
|
+
end
|
122
|
+
last_response.status.must_equal 200
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
|
127
|
+
it 'must have the "name" element for the instance and it should match with the one in collection' do
|
128
|
+
authenticate
|
129
|
+
get collection_url(:instances)
|
130
|
+
(xml_response/'instances/instance').each do |r|
|
131
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
132
|
+
get collection_url(:instances) + '/' + r[:id]
|
133
|
+
end
|
134
|
+
(xml_response/'name').wont_be_empty
|
135
|
+
(xml_response/'name').first.text.must_equal((r/'name').first.text)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
it 'must have the "name" element for the instance and it should match with the one in collection' do
|
140
|
+
authenticate
|
141
|
+
get collection_url(:instances)
|
142
|
+
(xml_response/'instances/instance').each do |r|
|
143
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
144
|
+
get collection_url(:instances) + '/' + r[:id]
|
145
|
+
end
|
146
|
+
(xml_response/'state').wont_be_empty
|
147
|
+
(xml_response/'state').first.text.must_equal((r/'state').first.text)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
it 'must have the "owner_id" element for the instance and it should match with the one in collection' do
|
152
|
+
authenticate
|
153
|
+
get collection_url(:instances)
|
154
|
+
(xml_response/'instances/instance').each do |r|
|
155
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
156
|
+
get collection_url(:instances) + '/' + r[:id]
|
157
|
+
end
|
158
|
+
(xml_response/'owner_id').wont_be_empty
|
159
|
+
(xml_response/'owner_id').first.text.must_equal((r/'owner_id').first.text)
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
it 'must link to the realm that was used to during instance creation' do
|
164
|
+
authenticate
|
165
|
+
get collection_url(:instances)
|
166
|
+
(xml_response/'instances/instance').each do |r|
|
167
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
168
|
+
get collection_url(:instances) + '/' + r[:id]
|
169
|
+
end
|
170
|
+
(xml_response/'realm').wont_be_empty
|
171
|
+
(xml_response/'realm').size.must_equal 1
|
172
|
+
(xml_response/'realm').first[:id].wont_be_nil
|
173
|
+
(xml_response/'realm').first[:href].wont_be_nil
|
174
|
+
(xml_response/'realm').first[:href].must_match /\/#{(xml_response/'realm').first[:id]}$/
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
it 'must link to the image that was used to during instance creation' do
|
179
|
+
authenticate
|
180
|
+
get collection_url(:instances)
|
181
|
+
(xml_response/'instances/instance').each do |r|
|
182
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
183
|
+
get collection_url(:instances) + '/' + r[:id]
|
184
|
+
end
|
185
|
+
(xml_response/'image').wont_be_empty
|
186
|
+
(xml_response/'image').size.must_equal 1
|
187
|
+
(xml_response/'image').first[:id].wont_be_nil
|
188
|
+
(xml_response/'image').first[:href].wont_be_nil
|
189
|
+
(xml_response/'image').first[:href].must_match /\/#{(xml_response/'image').first[:id]}$/
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
it 'must link to the hardware_profile that was used to during instance creation' do
|
194
|
+
authenticate
|
195
|
+
get collection_url(:instances)
|
196
|
+
(xml_response/'instances/instance').each do |r|
|
197
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
198
|
+
get collection_url(:instances) + '/' + r[:id]
|
199
|
+
end
|
200
|
+
(xml_response/'hardware_profile').wont_be_empty
|
201
|
+
(xml_response/'hardware_profile').size.must_equal 1
|
202
|
+
(xml_response/'hardware_profile').first[:id].wont_be_nil
|
203
|
+
(xml_response/'hardware_profile').first[:href].wont_be_nil
|
204
|
+
(xml_response/'hardware_profile').first[:href].must_match /\/#{(xml_response/'hardware_profile').first[:id]}$/
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
it 'should advertise the public and private addresses of the instance' do
|
209
|
+
authenticate
|
210
|
+
get collection_url(:instances)
|
211
|
+
(xml_response/'instances/instance[@state=RUNNING]').each do |r|
|
212
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
213
|
+
get collection_url(:instances) + '/' + r[:id]
|
214
|
+
end
|
215
|
+
puts xml_response
|
216
|
+
(xml_response/'public_addresses').wont_be_empty
|
217
|
+
(xml_response/'public_addresses').size.must_equal 1
|
218
|
+
(xml_response/'public_addresses/address').each do |a|
|
219
|
+
a[:type].wont_be_nil
|
220
|
+
a.text.strip.wont_be_empty
|
221
|
+
end
|
222
|
+
(xml_response/'private_addresses').wont_be_empty
|
223
|
+
(xml_response/'private_addresses').size.must_equal 1
|
224
|
+
(xml_response/'private_addresses/address').each do |a|
|
225
|
+
a[:type].wont_be_nil
|
226
|
+
a.text.strip.wont_be_empty
|
227
|
+
end
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
231
|
+
it 'should advertise the storage volumes used by the instance' do
|
232
|
+
authenticate
|
233
|
+
get collection_url(:instances)
|
234
|
+
(xml_response/'instances/instance').each do |r|
|
235
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
236
|
+
get collection_url(:instances) + '/' + r[:id]
|
237
|
+
end
|
238
|
+
(xml_response/'storage_volumes').wont_be_empty
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
it 'should advertise the list of actions that can be executed for each instance' do
|
243
|
+
authenticate
|
244
|
+
get collection_url(:instances)
|
245
|
+
(xml_response/'instances/instance').each do |r|
|
246
|
+
VCR.use_cassette "#{__name__}_instance_#{r[:id]}" do
|
247
|
+
get collection_url(:instances) + '/' + r[:id]
|
248
|
+
end
|
249
|
+
(xml_response/'actions/link').wont_be_empty
|
250
|
+
(xml_response/'actions/link').each do |l|
|
251
|
+
l[:href].wont_be_nil
|
252
|
+
l[:href].must_match /^http/
|
253
|
+
l[:method].wont_be_nil
|
254
|
+
l[:rel].wont_be_nil
|
255
|
+
end
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
it 'should allow to create and destroy new instance using the image without realm' do
|
260
|
+
authenticate
|
261
|
+
image_id = 'ami-e565ba8c'
|
262
|
+
VCR.use_cassette "#{__name__}_create_instance" do
|
263
|
+
post collection_url(:instances), { :image_id => image_id }
|
264
|
+
end
|
265
|
+
last_response.status.must_equal 201 # HTTP_CREATED
|
266
|
+
last_response.headers['Location'].wont_be_nil # Location header must be set, pointing to new the instance
|
267
|
+
instance_id = last_response.headers['Location'].split('/').last
|
268
|
+
# Get the instance and check if ID and image is set correctly
|
269
|
+
VCR.use_cassette "#{__name__}_get_instance" do
|
270
|
+
get collection_url(:instances) + '/' + instance_id
|
271
|
+
end
|
272
|
+
last_response.status.must_equal 200 # HTTP_OK
|
273
|
+
(xml_response/'instance').first[:id].must_equal instance_id
|
274
|
+
(xml_response/'instance/image').first[:id].must_equal image_id
|
275
|
+
10.times do |i|
|
276
|
+
VCR.use_cassette "#{__name__}_pool_#{i}_instance" do
|
277
|
+
get collection_url(:instances) + '/' + instance_id
|
278
|
+
end
|
279
|
+
break if (xml_response/'instance/state').text == 'RUNNING'
|
280
|
+
sleep(10)
|
281
|
+
end
|
282
|
+
(xml_response/'instance/state').text.must_equal 'RUNNING'
|
283
|
+
# Delete created instance
|
284
|
+
VCR.use_cassette "#{__name__}_delete_instance" do
|
285
|
+
post collection_url(:instances) + '/' + instance_id + '/stop'
|
286
|
+
end
|
287
|
+
last_response.status.must_equal 202 # HTTP_NO_CONTENT
|
288
|
+
end
|
289
|
+
|
290
|
+
it 'should allow to create and destroy new instance using the image within realm' do
|
291
|
+
authenticate
|
292
|
+
image_id = 'ami-e565ba8c'
|
293
|
+
realm_id = 'us-east-1c'
|
294
|
+
VCR.use_cassette "#{__name__}_create_instance" do
|
295
|
+
post collection_url(:instances), { :image_id => image_id, :realm_id => realm_id }
|
296
|
+
end
|
297
|
+
last_response.status.must_equal 201 # HTTP_CREATED
|
298
|
+
last_response.headers['Location'].wont_be_nil # Location header must be set, pointing to new the instance
|
299
|
+
instance_id = last_response.headers['Location'].split('/').last
|
300
|
+
# Get the instance and check if ID and image is set correctly
|
301
|
+
VCR.use_cassette "#{__name__}_get_instance" do
|
302
|
+
get collection_url(:instances) + '/' + instance_id
|
303
|
+
end
|
304
|
+
last_response.status.must_equal 200 # HTTP_OK
|
305
|
+
(xml_response/'instance').first[:id].must_equal instance_id
|
306
|
+
(xml_response/'instance/image').first[:id].must_equal image_id
|
307
|
+
10.times do |i|
|
308
|
+
VCR.use_cassette "#{__name__}_pool_#{i}_instance" do
|
309
|
+
get collection_url(:instances) + '/' + instance_id
|
310
|
+
end
|
311
|
+
break if (xml_response/'instance/state').text == 'RUNNING'
|
312
|
+
sleep(10)
|
313
|
+
end
|
314
|
+
(xml_response/'instance/state').text.must_equal 'RUNNING'
|
315
|
+
(xml_response/'instance/realm').first[:id].must_equal realm_id
|
316
|
+
# Delete created instance
|
317
|
+
VCR.use_cassette "#{__name__}_delete_instance" do
|
318
|
+
post collection_url(:instances) + '/' + instance_id + '/stop'
|
319
|
+
end
|
320
|
+
last_response.status.must_equal 202 # HTTP_NO_CONTENT
|
321
|
+
end
|
322
|
+
|
323
|
+
it 'should allow to create and destroy new instance using the first available image and first hardware_profile' do
|
324
|
+
authenticate
|
325
|
+
image_id = 'ami-e565ba8c'
|
326
|
+
hwp_id = 'm1.small'
|
327
|
+
VCR.use_cassette "#{__name__}_create_instance" do
|
328
|
+
post collection_url(:instances), { :image_id => image_id, :hwp_id => hwp_id }
|
329
|
+
end
|
330
|
+
last_response.status.must_equal 201 # HTTP_CREATED
|
331
|
+
last_response.headers['Location'].wont_be_nil # Location header must be set, pointing to new the instance
|
332
|
+
instance_id = last_response.headers['Location'].split('/').last
|
333
|
+
# Get the instance and check if ID and image is set correctly
|
334
|
+
VCR.use_cassette "#{__name__}_get_instance" do
|
335
|
+
get collection_url(:instances) + '/' + instance_id
|
336
|
+
end
|
337
|
+
last_response.status.must_equal 200 # HTTP_OK
|
338
|
+
(xml_response/'instance').first[:id].must_equal instance_id
|
339
|
+
(xml_response/'instance/image').first[:id].must_equal image_id
|
340
|
+
10.times do |i|
|
341
|
+
VCR.use_cassette "#{__name__}_pool_#{i}_instance" do
|
342
|
+
get collection_url(:instances) + '/' + instance_id
|
343
|
+
end
|
344
|
+
break if (xml_response/'instance/state').text == 'RUNNING'
|
345
|
+
sleep(10)
|
346
|
+
end
|
347
|
+
(xml_response/'instance/state').text.must_equal 'RUNNING'
|
348
|
+
(xml_response/'instance/hardware_profile').first[:id].must_equal hwp_id
|
349
|
+
# Delete created instance
|
350
|
+
VCR.use_cassette "#{__name__}_delete_instance" do
|
351
|
+
post collection_url(:instances) + '/' + instance_id + '/stop'
|
352
|
+
end
|
353
|
+
last_response.status.must_equal 202 # HTTP_NO_CONTENT
|
354
|
+
end
|
355
|
+
|
356
|
+
end
|