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.
Files changed (294) hide show
  1. data/NOTICE +1 -1
  2. data/Rakefile +63 -21
  3. data/bin/deltacloudd +10 -6
  4. data/config.ru +62 -6
  5. data/config/drivers/ec2.yaml +8 -0
  6. data/config/drivers/fgcp.yaml +13 -0
  7. data/deltacloud-core.gemspec +10 -2
  8. data/lib/cimi/collections.rb +58 -0
  9. data/lib/cimi/collections/address_templates.rb +49 -0
  10. data/lib/cimi/collections/addresses.rb +74 -0
  11. data/lib/cimi/collections/cloud_entry_point.rb +37 -0
  12. data/lib/{deltacloud/helpers/conversion_helper.rb → cimi/collections/entity_metadata.rb} +24 -16
  13. data/lib/cimi/collections/machine_admins.rb +74 -0
  14. data/lib/cimi/collections/machine_configurations.rb +49 -0
  15. data/lib/cimi/collections/machine_images.rb +50 -0
  16. data/lib/cimi/collections/machines.rb +157 -0
  17. data/lib/cimi/collections/network_configurations.rb +47 -0
  18. data/lib/cimi/collections/network_templates.rb +48 -0
  19. data/lib/cimi/collections/networks.rb +125 -0
  20. data/lib/cimi/collections/routing_group_templates.rb +47 -0
  21. data/lib/cimi/collections/routing_groups.rb +48 -0
  22. data/lib/cimi/collections/volume_configurations.rb +48 -0
  23. data/lib/cimi/collections/volume_images.rb +50 -0
  24. data/lib/cimi/collections/volumes.rb +80 -0
  25. data/lib/cimi/collections/vsp_configurations.rb +48 -0
  26. data/lib/cimi/collections/vsp_templates.rb +50 -0
  27. data/lib/cimi/collections/vsps.rb +108 -0
  28. data/lib/cimi/dependencies.rb +1 -0
  29. data/lib/cimi/helpers.rb +116 -0
  30. data/lib/cimi/helpers/cimi_helper.rb +6 -2
  31. data/lib/cimi/models.rb +72 -0
  32. data/lib/cimi/{model → models}/action.rb +1 -1
  33. data/lib/cimi/models/address.rb +72 -0
  34. data/lib/cimi/models/address_collection.rb +34 -0
  35. data/lib/cimi/models/address_template.rb +54 -0
  36. data/lib/cimi/models/address_template_collection.rb +34 -0
  37. data/lib/cimi/{model → models}/base.rb +2 -2
  38. data/lib/cimi/{model → models}/cloud_entry_point.rb +3 -5
  39. data/lib/cimi/{model → models}/entity_metadata.rb +7 -6
  40. data/lib/cimi/{model → models}/entity_metadata_collection.rb +2 -2
  41. data/lib/cimi/{model → models}/errors.rb +8 -0
  42. data/lib/cimi/{model → models}/machine.rb +10 -10
  43. data/lib/cimi/{model → models}/machine_admin.rb +1 -1
  44. data/lib/cimi/{model → models}/machine_admin_collection.rb +2 -2
  45. data/lib/cimi/{model → models}/machine_collection.rb +2 -2
  46. data/lib/cimi/{model → models}/machine_configuration.rb +9 -6
  47. data/lib/cimi/{model → models}/machine_configuration_collection.rb +2 -2
  48. data/lib/cimi/{model → models}/machine_image.rb +1 -1
  49. data/lib/cimi/{model → models}/machine_image_collection.rb +2 -2
  50. data/lib/cimi/{model → models}/machine_template.rb +0 -0
  51. data/lib/cimi/{model → models}/machine_template_collection.rb +2 -2
  52. data/lib/cimi/models/network.rb +109 -0
  53. data/lib/cimi/{model → models}/network_collection.rb +2 -2
  54. data/lib/cimi/{model → models}/network_configuration.rb +3 -4
  55. data/lib/cimi/{model → models}/network_configuration_collection.rb +2 -2
  56. data/lib/cimi/models/network_template.rb +36 -0
  57. data/lib/cimi/models/network_template_collection.rb +35 -0
  58. data/lib/cimi/models/routing_group.rb +34 -0
  59. data/lib/cimi/models/routing_group_collection.rb +34 -0
  60. data/lib/cimi/models/routing_group_template.rb +34 -0
  61. data/lib/cimi/models/routing_group_template_collection.rb +35 -0
  62. data/lib/cimi/{model → models}/schema.rb +0 -0
  63. data/lib/cimi/{model → models}/volume.rb +4 -4
  64. data/lib/cimi/{model → models}/volume_collection.rb +2 -2
  65. data/lib/cimi/{model → models}/volume_configuration.rb +1 -1
  66. data/lib/cimi/{model → models}/volume_configuration_collection.rb +2 -2
  67. data/lib/cimi/{model → models}/volume_image.rb +1 -1
  68. data/lib/cimi/{model → models}/volume_image_collection.rb +2 -2
  69. data/lib/cimi/{model → models}/volume_template.rb +0 -0
  70. data/lib/cimi/{model → models}/volume_template_collection.rb +2 -2
  71. data/lib/cimi/models/vsp.rb +102 -0
  72. data/lib/cimi/models/vsp_collection.rb +34 -0
  73. data/lib/cimi/models/vsp_configuration.rb +40 -0
  74. data/lib/cimi/models/vsp_configuration_collection.rb +34 -0
  75. data/lib/cimi/models/vsp_template.rb +34 -0
  76. data/lib/cimi/models/vsp_template_collection.rb +34 -0
  77. data/lib/cimi/server.rb +27 -549
  78. data/lib/deltacloud/api.rb +79 -0
  79. data/lib/deltacloud/collections.rb +54 -0
  80. data/lib/deltacloud/collections/addresses.rb +91 -0
  81. data/lib/deltacloud/collections/buckets.rb +273 -0
  82. data/lib/deltacloud/collections/drivers.rb +51 -0
  83. data/lib/deltacloud/collections/firewalls.rb +116 -0
  84. data/lib/deltacloud/collections/hardware_profiles.rb +29 -0
  85. data/lib/deltacloud/collections/images.rb +73 -0
  86. data/lib/deltacloud/collections/instance_states.rb +59 -0
  87. data/lib/deltacloud/collections/instances.rb +113 -0
  88. data/lib/deltacloud/collections/keys.rb +61 -0
  89. data/lib/deltacloud/collections/load_balancers.rb +102 -0
  90. data/lib/deltacloud/collections/metrics.rb +28 -0
  91. data/lib/deltacloud/collections/realms.rb +28 -0
  92. data/lib/deltacloud/collections/storage_snapshots.rb +51 -0
  93. data/lib/deltacloud/collections/storage_volumes.rb +99 -0
  94. data/lib/deltacloud/core_ext.rb +14 -6
  95. data/lib/deltacloud/core_ext/string.rb +17 -5
  96. data/lib/deltacloud/drivers.rb +6 -42
  97. data/lib/deltacloud/drivers/azure/azure_driver.rb +0 -4
  98. data/lib/deltacloud/{base_driver → drivers}/base_driver.rb +56 -18
  99. data/lib/deltacloud/drivers/condor/condor_driver.rb +1 -8
  100. data/lib/deltacloud/drivers/ec2/ec2_driver.rb +142 -33
  101. data/lib/deltacloud/drivers/eucalyptus/eucalyptus_driver.rb +2 -6
  102. data/lib/deltacloud/{base_driver → drivers}/exceptions.rb +25 -2
  103. data/lib/deltacloud/drivers/features.rb +154 -0
  104. data/lib/deltacloud/drivers/fgcp/fgcp_client.rb +387 -0
  105. data/lib/deltacloud/drivers/fgcp/fgcp_driver.rb +1435 -0
  106. data/lib/deltacloud/drivers/gogrid/gogrid_driver.rb +8 -11
  107. data/lib/deltacloud/drivers/google/google_driver.rb +2 -5
  108. data/lib/deltacloud/drivers/mock/data/keys/test-key.yml +28 -0
  109. data/lib/deltacloud/drivers/mock/mock_client.rb +2 -2
  110. data/lib/deltacloud/drivers/mock/mock_driver.rb +58 -40
  111. data/lib/deltacloud/drivers/mock/mock_driver_cimi_methods.rb +145 -0
  112. data/lib/deltacloud/drivers/opennebula/cloud_client.rb +107 -73
  113. data/lib/deltacloud/drivers/opennebula/occi_client.rb +285 -145
  114. data/lib/deltacloud/drivers/opennebula/opennebula_driver.rb +189 -126
  115. data/lib/deltacloud/drivers/openstack/openstack_driver.rb +427 -8
  116. data/lib/deltacloud/drivers/rackspace/rackspace_driver.rb +7 -9
  117. data/lib/deltacloud/drivers/rhevm/rhevm_driver.rb +48 -66
  118. data/lib/deltacloud/drivers/rimuhosting/rimuhosting_client.rb +44 -51
  119. data/lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb +7 -8
  120. data/lib/deltacloud/drivers/sbc/sbc_client.rb +1 -1
  121. data/lib/deltacloud/drivers/sbc/sbc_driver.rb +3 -3
  122. data/lib/deltacloud/drivers/terremark/terremark_driver.rb +8 -8
  123. data/lib/deltacloud/drivers/vsphere/vsphere_driver.rb +39 -13
  124. data/lib/deltacloud/drivers/vsphere/vsphere_filemanager.rb +1 -0
  125. data/lib/deltacloud/helpers.rb +79 -7
  126. data/lib/{sinatra/lazy_auth.rb → deltacloud/helpers/auth_helper.rb} +5 -9
  127. data/lib/deltacloud/helpers/{blob_stream.rb → blob_stream_helper.rb} +7 -7
  128. data/lib/deltacloud/helpers/deltacloud_helper.rb +286 -0
  129. data/lib/deltacloud/helpers/driver_helper.rb +58 -0
  130. data/lib/deltacloud/helpers/rabbit_helper.rb +34 -0
  131. data/lib/{sinatra/url_for.rb → deltacloud/helpers/url_helper.rb} +31 -9
  132. data/lib/deltacloud/models.rb +19 -17
  133. data/lib/deltacloud/models/bucket.rb +4 -0
  134. data/lib/deltacloud/{hardware_profile.rb → models/hardware_profile.rb} +4 -2
  135. data/lib/deltacloud/models/image.rb +1 -0
  136. data/lib/deltacloud/models/instance.rb +4 -2
  137. data/lib/deltacloud/models/instance_address.rb +4 -0
  138. data/lib/deltacloud/models/key.rb +4 -0
  139. data/lib/deltacloud/models/metric.rb +40 -0
  140. data/lib/deltacloud/{state_machine.rb → models/state_machine.rb} +18 -1
  141. data/lib/deltacloud/server.rb +41 -1222
  142. data/lib/deltacloud_rack.rb +79 -0
  143. data/lib/{cimi/model/network_template.rb → ec2/helpers.rb} +7 -10
  144. data/lib/{deltacloud/backend_capability.rb → ec2/helpers/errors.rb} +24 -29
  145. data/lib/ec2/helpers/result.rb +31 -0
  146. data/lib/ec2/query_parser.rb +152 -0
  147. data/lib/ec2/server.rb +70 -0
  148. data/lib/{deltacloud.rb → sinatra.rb} +7 -12
  149. data/lib/sinatra/rack_accept.rb +13 -7
  150. data/lib/sinatra/rack_driver_select.rb +1 -1
  151. data/lib/sinatra/rack_matrix_params.rb +1 -3
  152. data/public/images/metric.png +0 -0
  153. data/public/javascripts/jquery.mobile-1.0.1.min.js +177 -0
  154. data/public/stylesheets/jquery.mobile-1.0.1.min.css +2 -0
  155. data/public/stylesheets/new.css +10 -0
  156. data/support/fedora/deltacloud-core.spec +1 -1
  157. data/tests/api/common.rb +1 -0
  158. data/tests/api/driver_test.rb +79 -0
  159. data/tests/api/library_test.rb +48 -0
  160. data/tests/cimi/features/step_definitions/common_steps.rb +2 -2
  161. data/tests/cimi/features/step_definitions/machines_steps.rb +5 -4
  162. data/tests/cimi/features/step_definitions/volumes_steps.rb +8 -8
  163. data/tests/cimi/features/support/env.rb +33 -11
  164. data/tests/common.rb +7 -8
  165. data/tests/drivers/ec2/api_test.rb +19 -0
  166. data/tests/drivers/ec2/common.rb +23 -0
  167. data/tests/drivers/ec2/drivers_test.rb +120 -0
  168. data/tests/drivers/ec2/hardware_profiles_test.rb +224 -0
  169. data/tests/drivers/ec2/images_test.rb +230 -0
  170. data/tests/drivers/ec2/instances_test.rb +356 -0
  171. data/tests/drivers/ec2/keys_test.rb +181 -0
  172. data/tests/drivers/ec2/realms_test.rb +146 -0
  173. data/tests/drivers/fgcp/api_test.rb +47 -0
  174. data/tests/drivers/fgcp/hardware_profiles_test.rb +54 -0
  175. data/tests/drivers/fgcp/realms_test.rb +42 -0
  176. data/tests/drivers/{rackspace → fgcp}/setup.rb +5 -6
  177. data/tests/drivers/google/api_test.rb +10 -26
  178. data/tests/drivers/google/buckets_test.rb +79 -95
  179. data/tests/drivers/google/common.rb +54 -0
  180. data/tests/drivers/mock/api_test.rb +4 -127
  181. data/tests/drivers/mock/buckets_test.rb +195 -0
  182. data/tests/drivers/mock/common.rb +7 -0
  183. data/tests/drivers/mock/drivers_test.rb +123 -0
  184. data/tests/drivers/mock/hardware_profiles_test.rb +190 -100
  185. data/tests/drivers/mock/images_test.rb +162 -103
  186. data/tests/drivers/mock/instances_test.rb +310 -220
  187. data/tests/drivers/mock/keys_test.rb +161 -0
  188. data/tests/drivers/mock/realms_test.rb +109 -70
  189. data/tests/drivers/mock/storage_snapshots_test.rb +114 -0
  190. data/tests/drivers/mock/storage_volumes_test.rb +122 -0
  191. data/tests/drivers/openstack/api_test.rb +8 -3
  192. data/tests/drivers/openstack/common.rb +21 -0
  193. data/tests/drivers/openstack/hardware_profiles_test.rb +20 -9
  194. data/tests/drivers/openstack/images_test.rb +11 -5
  195. data/tests/drivers/openstack/instances_test.rb +61 -16
  196. data/tests/drivers/openstack/realms_test.rb +11 -7
  197. data/tests/drivers/rackspace/api_test.rb +7 -2
  198. data/tests/drivers/rackspace/buckets_test.rb +7 -2
  199. data/tests/drivers/rackspace/common.rb +16 -0
  200. data/tests/drivers/rackspace/hardware_profiles_test.rb +7 -2
  201. data/tests/drivers/rackspace/images_test.rb +7 -2
  202. data/tests/drivers/rackspace/instances_test.rb +10 -5
  203. data/tests/drivers/rackspace/realms_test.rb +7 -2
  204. data/tests/drivers/rhevm/api_test.rb +12 -6
  205. data/tests/drivers/rhevm/{setup.rb → common.rb} +8 -1
  206. data/tests/drivers/rhevm/hardware_profiles_test.rb +7 -2
  207. data/tests/drivers/rhevm/images_test.rb +8 -2
  208. data/tests/drivers/rhevm/instances_test.rb +7 -2
  209. data/tests/drivers/rhevm/realms_test.rb +7 -2
  210. data/tests/minitest_common.rb +58 -0
  211. data/tests/minitest_common_api_test.rb +115 -0
  212. data/views/addresses/associate.html.haml +1 -1
  213. data/views/addresses/index.html.haml +1 -1
  214. data/views/addresses/show.html.haml +2 -3
  215. data/views/api/show.html.haml +22 -9
  216. data/views/api/show.xml.haml +8 -7
  217. data/views/blobs/show.xml.haml +7 -4
  218. data/views/buckets/new.html.haml +2 -2
  219. data/views/cimi/errors/401.xml.haml +1 -1
  220. data/views/error.html.haml +3 -3
  221. data/views/errors/400.html.haml +1 -1
  222. data/views/errors/400.xml.haml +1 -2
  223. data/views/errors/401.html.haml +8 -7
  224. data/views/errors/401.xml.haml +1 -1
  225. data/views/errors/404.xml.haml +1 -0
  226. data/views/errors/500.xml.haml +4 -2
  227. data/views/{cimi/errors/403.html.haml → errors/501.html.haml} +4 -2
  228. data/views/errors/501.xml.haml +1 -0
  229. data/views/errors/502.xml.haml +1 -7
  230. data/views/{cimi/errors/500.html.haml → errors/504.html.haml} +0 -0
  231. data/views/errors/504.xml.haml +1 -0
  232. data/views/firewalls/new.html.haml +2 -2
  233. data/views/firewalls/new_rule.html.haml +1 -1
  234. data/views/firewalls/show.html.haml +1 -1
  235. data/views/hardware_profiles/index.html.haml +3 -1
  236. data/views/hardware_profiles/index.xml.haml +2 -2
  237. data/views/hardware_profiles/show.html.haml +3 -3
  238. data/views/hardware_profiles/show.xml.haml +3 -3
  239. data/views/images/show.html.haml +5 -0
  240. data/views/images/show.xml.haml +6 -1
  241. data/views/instance_states/show.html.haml +1 -1
  242. data/views/instances/index.html.haml +1 -1
  243. data/views/instances/new.html.haml +54 -39
  244. data/views/instances/run_command.html.haml +24 -15
  245. data/views/instances/show.html.haml +7 -3
  246. data/views/instances/show.xml.haml +2 -2
  247. data/views/keys/show.xml.haml +1 -0
  248. data/views/layout.html.haml +5 -9
  249. data/views/load_balancers/show.html.haml +12 -6
  250. data/views/metrics/index.html.haml +13 -0
  251. data/views/metrics/index.xml.haml +5 -0
  252. data/views/metrics/show.html.haml +23 -0
  253. data/views/metrics/show.xml.haml +9 -0
  254. data/views/realms/show.xml.haml +2 -1
  255. data/views/root/index.html.haml +1 -1
  256. data/views/storage_snapshots/show.html.haml +1 -1
  257. data/views/storage_snapshots/show.xml.haml +1 -0
  258. data/views/storage_volumes/attach.html.haml +1 -2
  259. data/views/storage_volumes/index.html.haml +1 -1
  260. data/views/storage_volumes/new.html.haml +22 -16
  261. data/views/storage_volumes/show.html.haml +10 -4
  262. data/views/storage_volumes/show.xml.haml +3 -4
  263. metadata +547 -519
  264. data/DISCLAIMER +0 -8
  265. data/lib/cimi/model.rb +0 -52
  266. data/lib/cimi/model/network.rb +0 -69
  267. data/lib/deltacloud/base_driver.rb +0 -18
  268. data/lib/deltacloud/base_driver/features.rb +0 -262
  269. data/lib/deltacloud/base_driver/mock_driver.rb +0 -78
  270. data/lib/deltacloud/drivers/ec2/ec2_mock_driver.rb +0 -186
  271. data/lib/deltacloud/drivers/rhevm/rhevm_client.rb +0 -521
  272. data/lib/deltacloud/helpers/application_helper.rb +0 -267
  273. data/lib/deltacloud/helpers/hardware_profiles_helper.rb +0 -50
  274. data/lib/deltacloud/helpers/json_helper.rb +0 -31
  275. data/lib/deltacloud/method_serializer.rb +0 -83
  276. data/lib/deltacloud/validation.rb +0 -107
  277. data/lib/sinatra/rabbit.rb +0 -441
  278. data/lib/sinatra/rack_runtime.rb +0 -47
  279. data/lib/sinatra/rack_syslog.rb +0 -86
  280. data/lib/sinatra/sinatra_verbose.rb +0 -73
  281. data/lib/sinatra/static_assets.rb +0 -99
  282. data/public/javascripts/jquery.mobile-1.0rc1.min.js +0 -170
  283. data/public/stylesheets/jquery.mobile-1.0rc1.min.css +0 -12
  284. data/tests/drivers/google/setup.rb +0 -38
  285. data/tests/drivers/mock/instance_states_test.rb +0 -71
  286. data/tests/drivers/mock/setup.rb +0 -3
  287. data/tests/drivers/mock/url_for_test.rb +0 -67
  288. data/tests/drivers/openstack/setup.rb +0 -20
  289. data/views/cimi/errors/400.html.haml +0 -41
  290. data/views/cimi/errors/401.html.haml +0 -41
  291. data/views/cimi/errors/404.html.haml +0 -29
  292. data/views/cimi/errors/405.html.haml +0 -29
  293. data/views/cimi/errors/502.html.haml +0 -43
  294. data/views/cimi/errors/backend_capability_failure.html.haml +0 -29
@@ -1,138 +1,197 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one or more
2
- # contributor license agreements. See the NOTICE file distributed with
3
- # this work for additional information regarding copyright ownership. The
4
- # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
- # "License"); you may not use this file except in compliance with the
6
- # License. You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
- # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
- # License for the specific language governing permissions and limitations
14
- # under the License.
15
- #
16
-
17
1
  $:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
18
- require 'tests/common'
2
+ require 'tests/drivers/mock/common'
19
3
 
20
- module DeltacloudUnitTest
21
- class HardwareProfilesTest < Test::Unit::TestCase
22
- include Rack::Test::Methods
4
+ describe 'Deltacloud API Images' do
5
+ include Deltacloud::Test
23
6
 
24
- def app
25
- Sinatra::Application
26
- end
7
+ it 'must advertise have the images collection in API entrypoint' do
8
+ get root_url
9
+ (xml_response/'api/link[@rel=images]').wont_be_empty
10
+ end
27
11
 
28
- def test_it_require_authentication
29
- require_authentication?('/api/images').should == true
30
- end
12
+ it 'must require authentication to access the "image" collection' do
13
+ get collection_url(:images)
14
+ last_response.status.must_equal 401
15
+ end
31
16
 
32
- def test_it_returns_images
33
- get_auth_url '/api/images', {}
34
- (last_xml_response/'images/image').length.should > 0
35
- end
17
+ it 'should respond with HTTP_OK when accessing the :images collection with authentication' do
18
+ authenticate
19
+ get collection_url(:images)
20
+ last_response.status.must_equal 200
21
+ end
36
22
 
37
- def test_it_has_correct_attributes_set
38
- get_auth_url '/api/images', {}
39
- (last_xml_response/'images/image').each do |image|
40
- image.attributes.keys.sort.should == [ 'href', 'id' ]
41
- end
23
+ it 'should support the JSON media type' do
24
+ authenticate
25
+ header 'Accept', 'application/json'
26
+ get collection_url(:images)
27
+ last_response.status.must_equal 200
28
+ last_response.headers['Content-Type'].must_equal 'application/json'
29
+ end
30
+
31
+ it 'must include the ETag in HTTP headers' do
32
+ authenticate
33
+ get collection_url(:images)
34
+ last_response.headers['ETag'].wont_be_nil
35
+ end
36
+
37
+ it 'must have the "images" element on top level' do
38
+ authenticate
39
+ get collection_url(:images)
40
+ xml_response.root.name.must_equal 'images'
41
+ end
42
+
43
+ it 'must have some "image" elements inside "images"' do
44
+ authenticate
45
+ get collection_url(:images)
46
+ (xml_response/'images/image').wont_be_empty
47
+ end
48
+
49
+ it 'must provide the :id attribute for each image in collection' do
50
+ authenticate
51
+ get collection_url(:images)
52
+ (xml_response/'images/image').each do |r|
53
+ r[:id].wont_be_nil
42
54
  end
55
+ end
43
56
 
44
- def test_img1_has_correct_attributes
45
- get_auth_url '/api/images', {}
46
- image = (last_xml_response/'images/image[@id="img1"]')
47
- test_image_attributes(image)
57
+ it 'must include the :href attribute for each "image" element in collection' do
58
+ authenticate
59
+ get collection_url(:images)
60
+ (xml_response/'images/image').each do |r|
61
+ r[:href].wont_be_nil
48
62
  end
63
+ end
49
64
 
50
- def test_it_returns_valid_image
51
- get_auth_url '/api/images/img1', {}
52
- image = (last_xml_response/'image')
53
- test_image_attributes(image)
65
+ it 'must use the absolute URL in each :href attribute' do
66
+ authenticate
67
+ get collection_url(:images)
68
+ (xml_response/'images/image').each do |r|
69
+ r[:href].must_match /^http/
54
70
  end
71
+ end
55
72
 
56
- def test_it_has_unique_ids
57
- get_auth_url '/api/images', {}
58
- ids = []
59
- (last_xml_response/'images/image').each do |image|
60
- ids << image['id'].to_s
61
- end
62
- ids.sort.should == ids.sort.uniq
73
+ it 'must have the URL ending with the :id of the image' do
74
+ authenticate
75
+ get collection_url(:images)
76
+ (xml_response/'images/image').each do |r|
77
+ r[:href].must_match /#{r[:id]}$/
63
78
  end
79
+ end
64
80
 
65
- def test_it_has_valid_urls
66
- get_auth_url '/api/images', {}
67
- ids = []
68
- images = (last_xml_response/'images/image')
69
- images.each do |image|
70
- get_auth_url image['href'].to_s, {}
71
- (last_xml_response/'image').first['href'].should == image['href'].to_s
72
- end
81
+ it 'must return the list of valid parameters for the :index action' do
82
+ authenticate
83
+ options collection_url(:images) + '/index'
84
+ last_response.headers['Allow'].wont_be_nil
85
+ end
86
+
87
+ it 'must have the "name" element defined for each image in collection' do
88
+ authenticate
89
+ get collection_url(:images)
90
+ (xml_response/'images/image').each do |r|
91
+ (r/'name').wont_be_empty
73
92
  end
93
+ end
74
94
 
75
- def test_it_can_filter_using_owner_id
76
- get_auth_url '/api/images', { :owner_id => 'mockuser' }
77
- (last_xml_response/'images/image').length.should == 1
78
- (last_xml_response/'images/image/owner_id').first.text.should == 'mockuser'
95
+ it 'must have the "state" element defined for each image in collection' do
96
+ authenticate
97
+ get collection_url(:images)
98
+ (xml_response/'images/image').each do |r|
99
+ (r/'state').wont_be_empty
79
100
  end
101
+ end
80
102
 
81
- def test_it_can_filter_using_unknown_owner_id
82
- get_auth_url '/api/images', { :architecture => 'unknown_user' }
83
- (last_xml_response/'images/image').length.should == 0
103
+ it 'must return the full "image" when following the URL in image element' do
104
+ authenticate
105
+ get collection_url(:images)
106
+ (xml_response/'images/image').each do |r|
107
+ get collection_url(:images) + '/' + r[:id]
108
+ last_response.status.must_equal 200
84
109
  end
110
+ end
85
111
 
86
- def test_it_can_filter_using_architecture
87
- get_auth_url '/api/images', { :architecture => 'x86_64' }
88
- (last_xml_response/'images/image').length.should == 1
89
- (last_xml_response/'images/image/architecture').first.text.should == 'x86_64'
112
+ it 'must have the "name" element for the image and it should match with the one in collection' do
113
+ authenticate
114
+ get collection_url(:images)
115
+ (xml_response/'images/image').each do |r|
116
+ get collection_url(:images) + '/' + r[:id]
117
+ (xml_response/'name').wont_be_empty
118
+ (xml_response/'name').first.text.must_equal((r/'name').first.text)
90
119
  end
120
+ end
91
121
 
92
- def test_it_can_filter_using_unknown_architecture
93
- get_auth_url '/api/images', { :architecture => 'unknown_arch' }
94
- (last_xml_response/'images/image').length.should == 0
122
+ it 'must have the "name" element for the image and it should match with the one in collection' do
123
+ authenticate
124
+ get collection_url(:images)
125
+ (xml_response/'images/image').each do |r|
126
+ get collection_url(:images) + '/' + r[:id]
127
+ (xml_response/'state').wont_be_empty
128
+ (xml_response/'state').first.text.must_equal((r/'state').first.text)
95
129
  end
130
+ end
96
131
 
97
- def test_it_responses_to_json
98
- get_auth_url '/api/images', {}, { :format => :json }
99
- JSON::parse(last_response.body).class.should == Hash
100
- JSON::parse(last_response.body)['images'].class.should == Array
101
- get_auth_url '/api/images/img1', {}, { :format => :json }
102
- last_response.status.should == 200
103
- JSON::parse(last_response.body).class.should == Hash
104
- JSON::parse(last_response.body)['image'].class.should == Hash
132
+ it 'should have the "owner_id" element for each image' do
133
+ authenticate
134
+ get collection_url(:images)
135
+ (xml_response/'images/image').each do |r|
136
+ get collection_url(:images) + '/' + r[:id]
137
+ (xml_response/'owner_id').wont_be_empty
105
138
  end
139
+ end
106
140
 
107
- def test_it_responses_to_html
108
- get_auth_url '/api/images', {}, { :format => :html }
109
- last_response.status.should == 200
110
- Nokogiri::HTML(last_response.body).search('html').first.name.should == 'html'
111
- get_auth_url '/api/images/img1', {}, { :format => :html }
112
- last_response.status.should == 200
113
- Nokogiri::HTML(last_response.body).search('html').first.name.should == 'html'
141
+ it 'should have the "description" element for each image' do
142
+ authenticate
143
+ get collection_url(:images)
144
+ (xml_response/'images/image').each do |r|
145
+ get collection_url(:images) + '/' + r[:id]
146
+ (xml_response/'description').wont_be_empty
114
147
  end
148
+ end
115
149
 
116
- def test_it_creates_and_destroys_image_from_instance
117
- post_url "/api/images", { :name => "img4", :description => "Test::Unit image", :instance_id => "inst1"}
118
- last_response.status.should == 201
119
- last_response.headers['Location'].should_not == nil
120
- get_auth_url last_response.headers['Location'], {}
121
- (last_xml_response/'instance/name').should_not == nil
122
- delete_url "/api/images/img4", {}
123
- last_response.status.should == 204
124
- get_auth_url "/api/images/img4", {}
125
- last_response.status.should == 404
150
+ it 'should have the "architecture" element for each image' do
151
+ authenticate
152
+ get collection_url(:images)
153
+ (xml_response/'images/image').each do |r|
154
+ get collection_url(:images) + '/' + r[:id]
155
+ (xml_response/'architecture').wont_be_empty
126
156
  end
157
+ end
127
158
 
128
- private
159
+ it 'should include the list of compatible hardware_profiles for each image' do
160
+ authenticate
161
+ get collection_url(:images)
162
+ (xml_response/'images/image').each do |r|
163
+ get collection_url(:images) + '/' + r[:id]
164
+ (xml_response/'hardware_profiles/hardware_profile').wont_be_empty
165
+ (xml_response/'hardware_profiles/hardware_profile').each do |hwp|
166
+ hwp[:href].wont_be_nil
167
+ hwp[:href].must_match /^http/
168
+ hwp[:id].wont_be_nil
169
+ hwp[:href].must_match /\/#{hwp[:id]}$/
170
+ hwp[:rel].must_equal 'hardware_profile'
171
+ end
172
+ end
173
+ end
129
174
 
130
- def test_image_attributes(image)
131
- (image/'name').text.should_not nil
132
- (image/'owner_id').text.should_not nil
133
- (image/'description').text.should_not nil
134
- (image/'architecture').text.should_not nil
175
+ it 'should advertise the list of actions that can be executed for each image' do
176
+ authenticate
177
+ get collection_url(:images)
178
+ (xml_response/'images/image').each do |r|
179
+ get collection_url(:images) + '/' + r[:id]
180
+ (xml_response/'actions/link').wont_be_empty
181
+ (xml_response/'actions/link').each do |l|
182
+ l[:href].wont_be_nil
183
+ l[:href].must_match /^http/
184
+ l[:method].wont_be_nil
185
+ l[:rel].wont_be_nil
186
+ end
135
187
  end
188
+ end
136
189
 
190
+ it 'should give client HTML form to create new image' do
191
+ authenticate
192
+ header 'Accept', 'text/html'
193
+ get collection_url(:images) + '/new'
194
+ last_response.status.must_equal 200
137
195
  end
196
+
138
197
  end
@@ -1,253 +1,343 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one or more
2
- # contributor license agreements. See the NOTICE file distributed with
3
- # this work for additional information regarding copyright ownership. The
4
- # ASF licenses this file to you under the Apache License, Version 2.0 (the
5
- # "License"); you may not use this file except in compliance with the
6
- # License. You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
- # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
- # License for the specific language governing permissions and limitations
14
- # under the License.
15
- #
16
-
17
1
  $:.unshift File.join(File.dirname(__FILE__), '..', '..', '..')
18
- require 'tests/common'
2
+ require 'tests/drivers/mock/common'
3
+
4
+ describe 'Deltacloud API instances' do
5
+ include Deltacloud::Test
6
+
7
+ it 'must advertise have the instances collection in API entrypoint' do
8
+ get root_url
9
+ (xml_response/'api/link[@rel=instances]').wont_be_empty
10
+ end
11
+
12
+ it 'must require authentication to access the "instance" collection' do
13
+ get collection_url(:instances)
14
+ last_response.status.must_equal 401
15
+ end
16
+
17
+ it 'should respond with HTTP_OK when accessing the :instances collection with authentication' do
18
+ authenticate
19
+ get collection_url(:instances)
20
+ last_response.status.must_equal 200
21
+ end
19
22
 
20
- module DeltacloudUnitTest
21
- class InstancesTest < Test::Unit::TestCase
22
- include Rack::Test::Methods
23
+ it 'should support the JSON media type' do
24
+ authenticate
25
+ header 'Accept', 'application/json'
26
+ get collection_url(:instances)
27
+ last_response.status.must_equal 200
28
+ last_response.headers['Content-Type'].must_equal 'application/json'
29
+ end
30
+
31
+ it 'must include the ETag in HTTP headers' do
32
+ authenticate
33
+ get collection_url(:instances)
34
+ last_response.headers['ETag'].wont_be_nil
35
+ end
36
+
37
+ it 'must have the "instances" element on top level' do
38
+ authenticate
39
+ get collection_url(:instances)
40
+ xml_response.root.name.must_equal 'instances'
41
+ end
42
+
43
+ it 'must have some "instance" elements inside "instances"' do
44
+ authenticate
45
+ get collection_url(:instances)
46
+ (xml_response/'instances/instance').wont_be_empty
47
+ end
23
48
 
24
- def app
25
- Sinatra::Application
49
+ it 'must provide the :id attribute for each instance in collection' do
50
+ authenticate
51
+ get collection_url(:instances)
52
+ (xml_response/'instances/instance').each do |r|
53
+ r[:id].wont_be_nil
26
54
  end
55
+ end
27
56
 
28
- def test_it_require_authentication
29
- require_authentication?('/api/instances').should == true
57
+ it 'must include the :href attribute for each "instance" element in collection' do
58
+ authenticate
59
+ get collection_url(:instances)
60
+ (xml_response/'instances/instance').each do |r|
61
+ r[:href].wont_be_nil
30
62
  end
63
+ end
31
64
 
32
- def test_it_returns_instances
33
- get_auth_url '/api/instances', {}
34
- (last_xml_response/'instances/instance').length.should > 0
65
+ it 'must use the absolute URL in each :href attribute' do
66
+ authenticate
67
+ get collection_url(:instances)
68
+ (xml_response/'instances/instance').each do |r|
69
+ r[:href].must_match /^http/
35
70
  end
71
+ end
36
72
 
37
- def test_it_has_correct_attributes_set
38
- get_auth_url '/api/images', {}
39
- (last_xml_response/'images/image').each do |image|
40
- image.attributes.keys.sort.should == [ 'href', 'id' ]
41
- end
73
+ it 'must have the URL ending with the :id of the instance' do
74
+ authenticate
75
+ get collection_url(:instances)
76
+ (xml_response/'instances/instance').each do |r|
77
+ r[:href].must_match /#{r[:id]}$/
42
78
  end
79
+ end
43
80
 
44
- def test_it_has_unique_ids
45
- get_auth_url '/api/instances', {}
46
- ids = []
47
- (last_xml_response/'instances/instance').each do |image|
48
- ids << image['id'].to_s
49
- end
50
- ids.sort.should == ids.sort.uniq
51
- end
52
-
53
- def test_inst1_has_correct_attributes
54
- get_auth_url '/api/instances', {}
55
- instance = (last_xml_response/'instances/instance[@id="inst1"]')
56
- test_instance_attributes(instance)
57
- end
58
-
59
- def test_it_returns_valid_realm
60
- get_auth_url '/api/instances/inst1', {}
61
- instance = (last_xml_response/'instance')
62
- test_instance_attributes(instance)
63
- end
64
-
65
- def test_it_responses_to_json
66
- get_auth_url '/api/instances', {}, { :format => :json }
67
- JSON::parse(last_response.body).class.should == Hash
68
- JSON::parse(last_response.body)['instances'].class.should == Array
69
-
70
- get_auth_url '/api/instances/inst1', {}, { :format => :json }
71
- last_response.status.should == 200
72
- JSON::parse(last_response.body).class.should == Hash
73
- JSON::parse(last_response.body)['instance'].class.should == Hash
74
- end
75
-
76
- def test_it_responses_to_html
77
- get_auth_url '/api/instances', {}, { :format => :html }
78
- last_response.status.should == 200
79
- Nokogiri::HTML(last_response.body).search('html').first.name.should == 'html'
80
- get_auth_url '/api/instances/inst1', {}, { :format => :html }
81
- last_response.status.should == 200
82
- Nokogiri::HTML(last_response.body).search('html').first.name.should == 'html'
83
- end
84
-
85
- def test_it_create_a_new_instance_using_image_id
86
- params = {
87
- :image_id => 'img1'
88
- }
89
- post_url '/api/instances', params
90
- last_response.status.should == 201
91
- last_response.headers['Location'].should_not == nil
92
- get_auth_url last_response.headers['Location'], {}
93
- (last_xml_response/'instance/name').should_not == nil
94
- add_created_instance (last_xml_response/'instance').first['id']
95
- test_instance_attributes(last_xml_response/'instance')
96
- end
97
-
98
- def test_it_create_a_new_instance_using_image_id_and_name
99
- params = {
100
- :image_id => 'img1',
101
- :name => "unit_test_instance1"
102
- }
103
- post_url '/api/instances', params
104
- last_response.status.should == 201
105
- last_response.headers['Location'].should_not == nil
106
- get_auth_url last_response.headers['Location'], {}
107
- (last_xml_response/'instance/name').text.should == 'unit_test_instance1'
108
- add_created_instance (last_xml_response/'instance').first['id']
109
- test_instance_attributes(last_xml_response/'instance')
110
- end
111
-
112
- def test_it_create_a_new_instance_using_image_id_and_name_and_hwp_storage_and_hwp_cpu
113
- params = {
114
- :image_id => 'img1',
115
- :realm_id => '',
116
- :name => "unit_test_instance3",
117
- :hwp_id => "m1-large",
118
- :hwp_storage => '850',
119
- :hwp_memory => '7680.0',
120
- :hwp_cpu => "1.0",
121
- }
122
- post_url '/api/instances', params
123
- last_response.status.should == 400
124
- end
125
-
126
- def test_it_create_a_new_instance_using_image_id_and_name_and_hwp_storage
127
- params = {
128
- :image_id => 'img1',
129
- :name => "unit_test_instance2",
130
- :hwp_id => "m1-small",
131
- :hwp_storage => "160"
132
- }
133
- post_url '/api/instances', params
134
- last_response.status.should == 201
135
- last_response.headers['Location'].should_not == nil
136
- get_auth_url last_response.headers['Location'], {}
137
- (last_xml_response/'instance/name').text.should == 'unit_test_instance2'
138
- (last_xml_response/'instance/hardware_profile').first['id'].should == 'm1-small'
139
- add_created_instance (last_xml_response/'instance').first['id']
140
- test_instance_attributes(last_xml_response/'instance')
141
- end
142
-
143
- def test_it_z0_stop_and_start_instance
144
- $created_instances.each do |instance_id|
145
- get_auth_url "/api/instances/#{instance_id}", {}
146
- stop_url = (last_xml_response/'actions/link[@rel="stop"]').first['href']
147
- stop_url.should_not == nil
148
- post_url stop_url
149
- last_response.status.should == 200
150
- instance = Nokogiri::XML(last_response.body)
151
- test_instance_attributes(instance)
152
- (instance/'state').text.should == 'STOPPED'
153
- get_auth_url "/api/instances/#{instance_id}", {}
154
- start_url = (last_xml_response/'actions/link[@rel="start"]').first['href']
155
- start_url.should_not == nil
156
- post_url start_url
157
- last_response.status.should == 200
158
- instance = Nokogiri::XML(last_response.body)
159
- test_instance_attributes(instance)
160
- (instance/'state').text.should == 'RUNNING'
161
- end
81
+ it 'must return the list of valid parameters for the :index action' do
82
+ authenticate
83
+ options collection_url(:instances) + '/index'
84
+ last_response.headers['Allow'].wont_be_nil
85
+ end
86
+
87
+ it 'must have the "name" element defined for each instance in collection' do
88
+ authenticate
89
+ get collection_url(:instances)
90
+ (xml_response/'instances/instance').each do |r|
91
+ (r/'name').wont_be_empty
162
92
  end
93
+ end
163
94
 
164
- def test_z0_reboot_instance
165
- $created_instances.each do |instance_id|
166
- get_auth_url "/api/instances/#{instance_id}", {}
167
- reboot_url = (last_xml_response/'actions/link[@rel="reboot"]').first['href']
168
- reboot_url.should_not == nil
169
- post_url reboot_url
170
- last_response.status.should == 200
171
- instance = Nokogiri::XML(last_response.body)
172
- test_instance_attributes(instance)
173
- (instance/'state').text.should == 'RUNNING'
174
- end
95
+ it 'must have the "state" element defined for each instance in collection' do
96
+ authenticate
97
+ get collection_url(:instances)
98
+ (xml_response/'instances/instance').each do |r|
99
+ (r/'state').wont_be_empty
100
+ (r/'state').first.must_match /(RUNNING|STOPPED|PENDING)/
175
101
  end
102
+ end
176
103
 
177
- def test_z1_stop_created_instances
178
- $created_instances.each do |instance_id|
179
- get_auth_url "/api/instances/#{instance_id}", {}
180
- stop_url = (last_xml_response/'actions/link[@rel="stop"]').first['href']
181
- stop_url.should_not == nil
182
- post_url stop_url, {}
183
- last_response.status.should == 200
184
- instance = Nokogiri::XML(last_response.body)
185
- test_instance_attributes(instance)
186
- (instance/'state').text.should == 'STOPPED'
187
- end
104
+ it 'must return the full "instance" when following the URL in instance element' do
105
+ authenticate
106
+ get collection_url(:instances)
107
+ (xml_response/'instances/instance').each do |r|
108
+ get collection_url(:instances) + '/' + r[:id]
109
+ last_response.status.must_equal 200
188
110
  end
111
+ end
189
112
 
190
- def test_z2_destroy_created_instances
191
- $created_instances.each do |instance_id|
192
- get_auth_url "/api/instances/#{instance_id}", {}
193
- destroy_url = (last_xml_response/'actions/link[@rel="destroy"]').first['href']
194
- destroy_url.should_not == nil
195
- delete_url destroy_url, {}
196
- last_response.status.should == 204
197
- end
113
+ it 'must have the "name" element for the instance and it should match with the one in collection' do
114
+ authenticate
115
+ get collection_url(:instances)
116
+ (xml_response/'instances/instance').each do |r|
117
+ get collection_url(:instances) + '/' + r[:id]
118
+ (xml_response/'name').wont_be_empty
119
+ (xml_response/'name').first.text.must_equal((r/'name').first.text)
120
+ end
121
+ end
122
+
123
+ it 'must have the "name" element for the instance and it should match with the one in collection' do
124
+ authenticate
125
+ get collection_url(:instances)
126
+ (xml_response/'instances/instance').each do |r|
127
+ get collection_url(:instances) + '/' + r[:id]
128
+ (xml_response/'state').wont_be_empty
129
+ (xml_response/'state').first.text.must_equal((r/'state').first.text)
130
+ end
131
+ end
132
+
133
+ it 'must have the "owner_id" element for the instance and it should match with the one in collection' do
134
+ authenticate
135
+ get collection_url(:instances)
136
+ (xml_response/'instances/instance').each do |r|
137
+ get collection_url(:instances) + '/' + r[:id]
138
+ (xml_response/'owner_id').wont_be_empty
139
+ (xml_response/'owner_id').first.text.must_equal((r/'owner_id').first.text)
198
140
  end
141
+ end
199
142
 
200
- def test_create_key_returns_201
201
- post_url '/api/keys', {:name => Time.now.to_f.to_s}
202
- last_response.status.should == 201
143
+ it 'must link to the realm that was used to during instance creation' do
144
+ authenticate
145
+ get collection_url(:instances)
146
+ (xml_response/'instances/instance').each do |r|
147
+ get collection_url(:instances) + '/' + r[:id]
148
+ (xml_response/'realm').wont_be_empty
149
+ (xml_response/'realm').size.must_equal 1
150
+ (xml_response/'realm').first[:id].wont_be_nil
151
+ (xml_response/'realm').first[:href].wont_be_nil
152
+ (xml_response/'realm').first[:href].must_match /\/#{(xml_response/'realm').first[:id]}$/
203
153
  end
154
+ end
204
155
 
205
- private
156
+ it 'must link to the image that was used to during instance creation' do
157
+ authenticate
158
+ get collection_url(:instances)
159
+ (xml_response/'instances/instance').each do |r|
160
+ get collection_url(:instances) + '/' + r[:id]
161
+ (xml_response/'image').wont_be_empty
162
+ (xml_response/'image').size.must_equal 1
163
+ (xml_response/'image').first[:id].wont_be_nil
164
+ (xml_response/'image').first[:href].wont_be_nil
165
+ (xml_response/'image').first[:href].must_match /\/#{(xml_response/'image').first[:id]}$/
166
+ end
167
+ end
206
168
 
207
- def test_instance_attributes(instance)
208
- (instance/'name').should_not == nil
209
- (instance/'owner_id').should_not == nil
210
- ['RUNNING', 'STOPPED'].include?((instance/'state').text).should == true
169
+ it 'must link to the hardware_profile that was used to during instance creation' do
170
+ authenticate
171
+ get collection_url(:instances)
172
+ (xml_response/'instances/instance').each do |r|
173
+ get collection_url(:instances) + '/' + r[:id]
174
+ (xml_response/'hardware_profile').wont_be_empty
175
+ (xml_response/'hardware_profile').size.must_equal 1
176
+ (xml_response/'hardware_profile').first[:id].wont_be_nil
177
+ (xml_response/'hardware_profile').first[:href].wont_be_nil
178
+ (xml_response/'hardware_profile').first[:href].must_match /\/#{(xml_response/'hardware_profile').first[:id]}$/
179
+ end
180
+ end
211
181
 
212
- (instance/'public_addreses').should_not == nil
213
- (instance/'public_addresses/address').to_a.size.should > 0
214
- (instance/'public_addresses/address').first.text.should_not == ""
215
- (instance/'public_addresses/address').first[:type].should == "hostname"
182
+ it 'should advertise the public and private addresses of the instance' do
183
+ authenticate
184
+ get collection_url(:instances)
185
+ (xml_response/'instances/instance').each do |r|
186
+ get collection_url(:instances) + '/' + r[:id]
187
+ (xml_response/'public_addresses').wont_be_empty
188
+ (xml_response/'public_addresses').size.must_equal 1
189
+ (xml_response/'public_addresses/address').each do |a|
190
+ a[:type].wont_be_nil
191
+ a.text.strip.wont_be_empty
192
+ end
193
+ (xml_response/'private_addresses').wont_be_empty
194
+ (xml_response/'private_addresses').size.must_equal 1
195
+ (xml_response/'private_addresses/address').each do |a|
196
+ a[:type].wont_be_nil
197
+ a.text.strip.wont_be_empty
198
+ end
199
+ end
200
+ end
216
201
 
217
- (instance/'private_addresses').should_not == nil
218
- (instance/'private_addresses/address').to_a.size.should > 0
219
- (instance/'private_addresses/address').first.text.should_not == ""
220
- (instance/'private_addresses/address').first[:type].should == "hostname"
202
+ it 'should advertise the storage volumes used by the instance' do
203
+ authenticate
204
+ get collection_url(:instances)
205
+ (xml_response/'instances/instance').each do |r|
206
+ get collection_url(:instances) + '/' + r[:id]
207
+ (xml_response/'storage_volumes').wont_be_empty
208
+ end
209
+ end
221
210
 
222
- (instance/'actions/link').to_a.size.should > 0
223
- (instance/'actions/link').each do |link|
224
- link['href'].should_not == ""
225
- link['rel'].should_not == ""
226
- link['method'].should_not == ""
227
- ['get', 'post', 'delete', 'put'].include?(link['method']).should == true
211
+ it 'should advertise the list of actions that can be executed for each instance' do
212
+ authenticate
213
+ get collection_url(:instances)
214
+ (xml_response/'instances/instance').each do |r|
215
+ get collection_url(:instances) + '/' + r[:id]
216
+ (xml_response/'actions/link').wont_be_empty
217
+ (xml_response/'actions/link').each do |l|
218
+ l[:href].wont_be_nil
219
+ l[:href].must_match /^http/
220
+ l[:method].wont_be_nil
221
+ l[:rel].wont_be_nil
228
222
  end
223
+ end
224
+ end
229
225
 
230
- (instance/'image').size.should > 0
231
- (instance/'image').first['href'].should_not == ""
232
- (instance/'image').first['id'].should_not == ""
233
- get_auth_url (instance/'image').first['href'], {}
234
- (last_xml_response/'image').should_not == nil
235
- (last_xml_response/'image').first['href'] == (instance/'image').first['href']
226
+ it 'should allow to create and destroy new instance using the first available image without realm' do
227
+ authenticate
228
+ get collection_url(:images)
229
+ image_id = (xml_response/'images/image').first[:id]
230
+ image_id.wont_be_nil
231
+ post collection_url(:instances), {
232
+ :image_id => image_id
233
+ }
234
+ last_response.status.must_equal 201 # HTTP_CREATED
235
+ last_response.headers['Location'].wont_be_nil # Location header must be set, pointing to new the instance
236
+ instance_id = last_response.headers['Location'].split('/').last
237
+ # Get the instance and check if ID and image is set correctly
238
+ get collection_url(:instances) + '/' + instance_id
239
+ last_response.status.must_equal 200 # HTTP_OK
240
+ (xml_response/'instance').first[:id].must_equal instance_id
241
+ (xml_response/'instance/image').first[:id].must_equal image_id
242
+ # If instance is RUNNING then stop it
243
+ if (xml_response/'instance/state').first.text == 'RUNNING'
244
+ post collection_url(:instances) + '/' + instance_id + '/stop'
245
+ last_response.status.must_equal 202 # HTTP_NO_CONTENT
246
+ end
247
+ # Delete created instance
248
+ delete collection_url(:instances) + '/' + instance_id
249
+ last_response.status.must_equal 204 # HTTP_NO_CONTENT
250
+ end
236
251
 
237
- (instance/'realm').size.should > 0
238
- (instance/'realm').first['href'].should_not == ""
239
- (instance/'realm').first['id'].should_not == ""
240
- get_auth_url (instance/'realm').first['href']
241
- (last_xml_response/'realm').should_not == nil
242
- (last_xml_response/'realm').first['href'] == (instance/'realm').first['href']
252
+ it 'should allow to create and destroy new instance using the first available image within first realm' do
253
+ authenticate
254
+ get collection_url(:images)
255
+ image_id = (xml_response/'images/image').first[:id]
256
+ get collection_url(:realms)
257
+ realm_id = (xml_response/'realms/realm').first[:id]
258
+ image_id.wont_be_nil
259
+ realm_id.wont_be_nil
260
+ post collection_url(:instances), {
261
+ :image_id => image_id,
262
+ :realm_id => realm_id,
263
+ }
264
+ last_response.status.must_equal 201 # HTTP_CREATED
265
+ last_response.headers['Location'].wont_be_nil # Location header must be set, pointing to new the instance
266
+ instance_id = last_response.headers['Location'].split('/').last
267
+ # Get the instance and check if ID and image is set correctly
268
+ get collection_url(:instances) + '/' + instance_id
269
+ last_response.status.must_equal 200 # HTTP_OK
270
+ (xml_response/'instance').first[:id].must_equal instance_id
271
+ (xml_response/'instance/image').first[:id].must_equal image_id
272
+ (xml_response/'instance/realm').first[:id].must_equal realm_id
273
+ # If instance is RUNNING then stop it
274
+ if (xml_response/'instance/state').first.text == 'RUNNING'
275
+ post collection_url(:instances) + '/' + instance_id + '/stop'
276
+ last_response.status.must_equal 202 # HTTP_NO_CONTENT
277
+ end
278
+ # Delete created instance
279
+ delete collection_url(:instances) + '/' + instance_id
280
+ last_response.status.must_equal 204 # HTTP_NO_CONTENT
281
+ end
243
282
 
244
- (instance/'hardware_profile').size.should > 0
245
- (instance/'hardware_profile').first['href'].should_not == ""
246
- (instance/'hardware_profile').first['id'].should_not == ""
247
- get_auth_url (instance/'hardware_profile').first['href']
248
- (last_xml_response/'hardware_profile').should_not == nil
249
- (last_xml_response/'hardware_profile').first['href'] == (instance/'hardware_profile').first['href']
283
+ it 'should allow to create and destroy new instance using the first available image with user defined name' do
284
+ authenticate
285
+ get collection_url(:images)
286
+ image_id = (xml_response/'images/image').first[:id]
287
+ image_id.wont_be_nil
288
+ name = "i#{Time.now.to_i}"
289
+ post collection_url(:instances), {
290
+ :image_id => image_id,
291
+ :name => name
292
+ }
293
+ last_response.status.must_equal 201 # HTTP_CREATED
294
+ last_response.headers['Location'].wont_be_nil # Location header must be set, pointing to new the instance
295
+ instance_id = last_response.headers['Location'].split('/').last
296
+ # Get the instance and check if ID and image is set correctly
297
+ get collection_url(:instances) + '/' + instance_id
298
+ last_response.status.must_equal 200 # HTTP_OK
299
+ (xml_response/'instance').first[:id].must_equal instance_id
300
+ (xml_response/'instance/image').first[:id].must_equal image_id
301
+ (xml_response/'instance/name').first.text.must_equal name
302
+ # If instance is RUNNING then stop it
303
+ if (xml_response/'instance/state').first.text == 'RUNNING'
304
+ post collection_url(:instances) + '/' + instance_id + '/stop'
305
+ last_response.status.must_equal 202 # HTTP_NO_CONTENT
250
306
  end
307
+ # Delete created instance
308
+ delete collection_url(:instances) + '/' + instance_id
309
+ last_response.status.must_equal 204 # HTTP_NO_CONTENT
310
+ end
251
311
 
312
+ it 'should allow to create and destroy new instance using the first available image and first hardware_profile' do
313
+ authenticate
314
+ get collection_url(:images)
315
+ image_id = (xml_response/'images/image').first[:id]
316
+ get collection_url(:hardware_profiles)
317
+ hwp_id = (xml_response/'hardware_profiles/hardware_profile').first[:id]
318
+ image_id.wont_be_nil
319
+ name = "i#{Time.now.to_i}"
320
+ post collection_url(:instances), {
321
+ :image_id => image_id,
322
+ :hwp_id => hwp_id
323
+ }
324
+ last_response.status.must_equal 201 # HTTP_CREATED
325
+ last_response.headers['Location'].wont_be_nil # Location header must be set, pointing to new the instance
326
+ instance_id = last_response.headers['Location'].split('/').last
327
+ # Get the instance and check if ID and image is set correctly
328
+ get collection_url(:instances) + '/' + instance_id
329
+ last_response.status.must_equal 200 # HTTP_OK
330
+ (xml_response/'instance').first[:id].must_equal instance_id
331
+ (xml_response/'instance/image').first[:id].must_equal image_id
332
+ (xml_response/'instance/hardware_profile').first[:id].must_equal hwp_id
333
+ # If instance is RUNNING then stop it
334
+ if (xml_response/'instance/state').first.text == 'RUNNING'
335
+ post collection_url(:instances) + '/' + instance_id + '/stop'
336
+ last_response.status.must_equal 202 # HTTP_NO_CONTENT
337
+ end
338
+ # Delete created instance
339
+ delete collection_url(:instances) + '/' + instance_id
340
+ last_response.status.must_equal 204 # HTTP_NO_CONTENT
252
341
  end
342
+
253
343
  end