deltacloud-client 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (205) hide show
  1. data/README.md +73 -0
  2. data/Rakefile +88 -5
  3. data/lib/deltacloud/client.rb +79 -0
  4. data/lib/deltacloud/client/base_error.rb +80 -0
  5. data/lib/deltacloud/client/connection.rb +139 -0
  6. data/lib/deltacloud/client/helpers/model_helper.rb +69 -0
  7. data/lib/deltacloud/client/helpers/property_helper.rb +103 -0
  8. data/lib/deltacloud/client/helpers/xml_helper.rb +33 -0
  9. data/lib/deltacloud/client/methods.rb +33 -0
  10. data/lib/deltacloud/client/methods/address.rb +67 -0
  11. data/lib/deltacloud/client/methods/api.rb +96 -0
  12. data/lib/deltacloud/client/methods/backward_compatiblity.rb +72 -0
  13. data/lib/deltacloud/client/methods/blob.rb +91 -0
  14. data/lib/deltacloud/client/methods/bucket.rb +55 -0
  15. data/lib/deltacloud/client/methods/common.rb +46 -0
  16. data/lib/deltacloud/client/methods/driver.rb +53 -0
  17. data/lib/deltacloud/client/methods/firewall.rb +67 -0
  18. data/lib/deltacloud/client/methods/hardware_profile.rb +41 -0
  19. data/lib/deltacloud/client/methods/image.rb +61 -0
  20. data/lib/deltacloud/client/methods/instance.rb +141 -0
  21. data/lib/deltacloud/client/methods/instance_state.rb +41 -0
  22. data/lib/deltacloud/client/methods/key.rb +58 -0
  23. data/lib/deltacloud/client/methods/load_balancer.rb +96 -0
  24. data/lib/deltacloud/client/methods/metric.rb +54 -0
  25. data/lib/deltacloud/client/methods/realm.rb +42 -0
  26. data/lib/deltacloud/client/methods/storage_snapshot.rb +61 -0
  27. data/lib/deltacloud/client/methods/storage_volume.rb +94 -0
  28. data/lib/deltacloud/client/models.rb +32 -0
  29. data/lib/deltacloud/client/models/address.rb +57 -0
  30. data/lib/deltacloud/client/models/base.rb +153 -0
  31. data/lib/deltacloud/client/models/blob.rb +56 -0
  32. data/lib/deltacloud/client/models/bucket.rb +65 -0
  33. data/lib/deltacloud/client/models/driver.rb +87 -0
  34. data/lib/deltacloud/client/models/firewall.rb +64 -0
  35. data/lib/deltacloud/client/models/hardware_profile.rb +68 -0
  36. data/lib/deltacloud/client/models/image.rb +60 -0
  37. data/lib/deltacloud/client/models/instance.rb +142 -0
  38. data/lib/deltacloud/client/models/instance_address.rb +40 -0
  39. data/lib/{instance_state.rb → deltacloud/client/models/instance_state.rb} +11 -3
  40. data/lib/deltacloud/client/models/key.rb +52 -0
  41. data/lib/deltacloud/client/models/load_balancer.rb +55 -0
  42. data/lib/deltacloud/client/models/metric.rb +72 -0
  43. data/lib/deltacloud/client/models/realm.rb +29 -0
  44. data/lib/deltacloud/client/models/storage_snapshot.rb +54 -0
  45. data/lib/deltacloud/client/models/storage_volume.rb +96 -0
  46. data/lib/deltacloud/core_ext.rb +19 -0
  47. data/lib/deltacloud/core_ext/element.rb +32 -0
  48. data/lib/deltacloud/core_ext/fixnum.rb +30 -0
  49. data/lib/deltacloud/core_ext/nil.rb +22 -0
  50. data/lib/{string.rb → deltacloud/core_ext/string.rb} +16 -26
  51. data/lib/deltacloud/error_response.rb +93 -0
  52. data/tests/client/client_test.rb +51 -0
  53. data/tests/client/connection_test.rb +77 -0
  54. data/tests/core_ext/element_test.rb +40 -0
  55. data/tests/core_ext/fixnum_test.rb +35 -0
  56. data/tests/core_ext/nil.rb +27 -0
  57. data/tests/core_ext/string_test.rb +47 -0
  58. data/tests/fixtures/instances_cleanup.yml +681 -0
  59. data/tests/fixtures/test_0001_connects_to_Deltacloud_API.yml +60 -0
  60. data/tests/fixtures/test_0001_support_cpu.yml +444 -0
  61. data/tests/fixtures/test_0001_support_original_body.yml +116 -0
  62. data/tests/fixtures/test_0001_supports_addresses.yml +178 -0
  63. data/tests/fixtures/test_0001_supports_api_host.yml +60 -0
  64. data/tests/fixtures/test_0001_supports_attached_.yml +282 -0
  65. data/tests/fixtures/test_0001_supports_blobs.yml +475 -0
  66. data/tests/fixtures/test_0001_supports_bucket.yml +200 -0
  67. data/tests/fixtures/test_0001_supports_buckets.yml +160 -0
  68. data/tests/fixtures/test_0001_supports_drivers.yml +202 -0
  69. data/tests/fixtures/test_0001_supports_firewalls.yml +399 -0
  70. data/tests/fixtures/test_0001_supports_hardware_profiles.yml +262 -0
  71. data/tests/fixtures/test_0001_supports_images.yml +224 -0
  72. data/tests/fixtures/test_0001_supports_instance_states.yml +156 -0
  73. data/tests/fixtures/test_0001_supports_instances.yml +486 -0
  74. data/tests/fixtures/test_0001_supports_keys.yml +198 -0
  75. data/tests/fixtures/test_0001_supports_path.yml +60 -0
  76. data/tests/fixtures/test_0001_supports_realms.yml +152 -0
  77. data/tests/fixtures/test_0001_supports_storage_snapshots.yml +164 -0
  78. data/tests/fixtures/test_0001_supports_storage_volumes.yml +176 -0
  79. data/tests/fixtures/test_0001_supports_to_get_providers.yml +410 -0
  80. data/tests/fixtures/test_0002_support_blob.yml +148 -0
  81. data/tests/fixtures/test_0002_support_instance_state.yml +204 -0
  82. data/tests/fixtures/test_0002_support_memory.yml +444 -0
  83. data/tests/fixtures/test_0002_support_on_Provider.yml +130 -0
  84. data/tests/fixtures/test_0002_supports_api_port.yml +60 -0
  85. data/tests/fixtures/test_0002_supports_api_uri.yml +60 -0
  86. data/tests/fixtures/test_0002_supports_driver.yml +219 -0
  87. data/tests/fixtures/test_0002_supports_extract_xml_body_using_faraday_connection.yml +117 -0
  88. data/tests/fixtures/test_0002_supports_filtering_addresses_by_id_param.yml +156 -0
  89. data/tests/fixtures/test_0002_supports_filtering_buckets_by_id_param.yml +156 -0
  90. data/tests/fixtures/test_0002_supports_filtering_firewalls_by_id_param.yml +207 -0
  91. data/tests/fixtures/test_0002_supports_filtering_hardware_profiles_by_id_param.yml +158 -0
  92. data/tests/fixtures/test_0002_supports_filtering_images_by_id_param.yml +165 -0
  93. data/tests/fixtures/test_0002_supports_filtering_instances_by_id_param.yml +164 -0
  94. data/tests/fixtures/test_0002_supports_filtering_keys_by_id_param.yml +178 -0
  95. data/tests/fixtures/test_0002_supports_filtering_realms_by_id.yml +104 -0
  96. data/tests/fixtures/test_0002_supports_filtering_storage_snapshots_by_id_param.yml +155 -0
  97. data/tests/fixtures/test_0002_supports_filtering_storage_volumes_by_id_param.yml +157 -0
  98. data/tests/fixtures/test_0002_supports_hardware_profiles.yml +262 -0
  99. data/tests/fixtures/test_0002_supports_is_compatible_.yml +116 -0
  100. data/tests/fixtures/test_0002_supports_snapshot_.yml +202 -0
  101. data/tests/fixtures/test_0002_supports_version.yml +60 -0
  102. data/tests/fixtures/test_0003_caches_the_API_entrypoint.yml +60 -0
  103. data/tests/fixtures/test_0003_support_address.yml +197 -0
  104. data/tests/fixtures/test_0003_support_bucket.yml +198 -0
  105. data/tests/fixtures/test_0003_support_create_blob.yml +105 -0
  106. data/tests/fixtures/test_0003_support_create_blob_and_destroy_blob.yml +138 -0
  107. data/tests/fixtures/test_0003_support_firewall.yml +768 -0
  108. data/tests/fixtures/test_0003_support_hardware_profile.yml +199 -0
  109. data/tests/fixtures/test_0003_support_image.yml +207 -0
  110. data/tests/fixtures/test_0003_support_instance.yml +206 -0
  111. data/tests/fixtures/test_0003_support_key.yml +220 -0
  112. data/tests/fixtures/test_0003_support_realm.yml +195 -0
  113. data/tests/fixtures/test_0003_support_storage.yml +444 -0
  114. data/tests/fixtures/test_0003_support_storage_snapshot.yml +196 -0
  115. data/tests/fixtures/test_0003_support_storage_volume.yml +197 -0
  116. data/tests/fixtures/test_0003_support_to_change_driver_with_Client.yml +72 -0
  117. data/tests/fixtures/test_0003_supports_connect.yml +60 -0
  118. data/tests/fixtures/test_0003_supports_extract_xml_body_using_nokogiri_document.yml +117 -0
  119. data/tests/fixtures/test_0003_supports_instance.yml +396 -0
  120. data/tests/fixtures/test_0003_supports_is_compatible_.yml +116 -0
  121. data/tests/fixtures/test_0003_supports_lunch_image.yml +367 -0
  122. data/tests/fixtures/test_0003_supports_providers.yml +102 -0
  123. data/tests/fixtures/test_0003_supports_version.yml +60 -0
  124. data/tests/fixtures/test_0004_support_architecture.yml +444 -0
  125. data/tests/fixtures/test_0004_support_create_address.yml +197 -0
  126. data/tests/fixtures/test_0004_support_create_blob_and_destroy_blob_with_meta_params.yml +139 -0
  127. data/tests/fixtures/test_0004_support_create_bucket.yml +180 -0
  128. data/tests/fixtures/test_0004_support_create_bucket_and_destroy_bucket.yml +180 -0
  129. data/tests/fixtures/test_0004_support_create_firewall_and_destroy_firewall.yml +496 -0
  130. data/tests/fixtures/test_0004_support_create_image_and_destroy_image.yml +1527 -0
  131. data/tests/fixtures/test_0004_support_create_instance.yml +115 -0
  132. data/tests/fixtures/test_0004_support_create_key_and_destroy_key.yml +206 -0
  133. data/tests/fixtures/test_0004_support_create_volume.yml +105 -0
  134. data/tests/fixtures/test_0004_support_create_volume_and_destroy_volume.yml +181 -0
  135. data/tests/fixtures/test_0004_support_to_test_of_valid_DC_connection.yml +60 -0
  136. data/tests/fixtures/test_0004_supports_current_driver.yml +60 -0
  137. data/tests/fixtures/test_0004_supports_extract_xml_body_using_nokogiri_element.yml +117 -0
  138. data/tests/fixtures/test_0004_supports_lunch_image.yml +312 -0
  139. data/tests/fixtures/test_0004_supports_valid_credentials_.yml +215 -0
  140. data/tests/fixtures/test_0004_supports_with_config.yml +129 -0
  141. data/tests/fixtures/test_0005_support_attach_storage_volume.yml +102 -0
  142. data/tests/fixtures/test_0005_support_attach_storage_volume_and_detach_storage_volume.yml +142 -0
  143. data/tests/fixtures/test_0005_support_create_instance_with_hwp_id.yml +115 -0
  144. data/tests/fixtures/test_0005_support_opaque_.yml +152 -0
  145. data/tests/fixtures/test_0005_supports_current_provider.yml +134 -0
  146. data/tests/fixtures/test_0005_supports_id.yml +116 -0
  147. data/tests/fixtures/test_0005_supports_switching_drivers_per_instance.yml +129 -0
  148. data/tests/fixtures/test_0005_supports_use_driver.yml +60 -0
  149. data/tests/fixtures/test_0006_support_create_instance_with_realm_id.yml +115 -0
  150. data/tests/fixtures/test_0006_supports_discovered_.yml +60 -0
  151. data/tests/fixtures/test_0006_supports_supported_collections.yml +60 -0
  152. data/tests/fixtures/test_0006_supports_switching_providers_per_instance.yml +208 -0
  153. data/tests/fixtures/test_0007_support_create_instance_with_name.yml +115 -0
  154. data/tests/fixtures/test_0007_support_switching_provider_without_credentials.yml +208 -0
  155. data/tests/fixtures/test_0007_supports_support_.yml +60 -0
  156. data/tests/fixtures/test_0007_supports_valid_credentials_on_class.yml +370 -0
  157. data/tests/fixtures/test_0008_support_stop_instance.yml +166 -0
  158. data/tests/fixtures/test_0008_supports_must_support_.yml +60 -0
  159. data/tests/fixtures/test_0009_support_start_instance.yml +217 -0
  160. data/tests/fixtures/test_0009_supports_features.yml +60 -0
  161. data/tests/fixtures/test_0010_support_reboot_instance.yml +166 -0
  162. data/tests/fixtures/test_0010_supports_feature_.yml +60 -0
  163. data/tests/helpers/model_test.rb +33 -0
  164. data/tests/helpers/xml_test.rb +56 -0
  165. data/tests/methods/address_test.rb +64 -0
  166. data/tests/methods/api_test.rb +97 -0
  167. data/tests/methods/backward_compatibility_test.rb +87 -0
  168. data/tests/methods/blob_test.rb +64 -0
  169. data/tests/methods/bucket_test.rb +62 -0
  170. data/tests/methods/driver_test.rb +48 -0
  171. data/tests/methods/firewall_test.rb +84 -0
  172. data/tests/methods/hardware_profile_test.rb +53 -0
  173. data/tests/methods/image_test.rb +64 -0
  174. data/tests/methods/instance_state_test.rb +43 -0
  175. data/tests/methods/instance_test.rb +126 -0
  176. data/tests/methods/key_test.rb +63 -0
  177. data/tests/methods/realm_test.rb +50 -0
  178. data/tests/methods/storage_snapshot_test.rb +53 -0
  179. data/tests/methods/storage_volume_test.rb +81 -0
  180. data/tests/models/blob_test.rb +40 -0
  181. data/tests/models/bucket_test.rb +37 -0
  182. data/tests/models/driver_test.rb +42 -0
  183. data/tests/models/hardware_profile_test.rb +80 -0
  184. data/tests/models/image_test.rb +65 -0
  185. data/tests/models/storage_volume_test.rb +52 -0
  186. data/tests/test_helper.rb +59 -11
  187. metadata +392 -41
  188. data/lib/base_object.rb +0 -386
  189. data/lib/client_bucket_methods.rb +0 -69
  190. data/lib/deltacloud.rb +0 -486
  191. data/lib/documentation.rb +0 -59
  192. data/lib/errors.rb +0 -140
  193. data/lib/hwp_properties.rb +0 -61
  194. data/tests/buckets_test.rb +0 -141
  195. data/tests/client_test.rb +0 -59
  196. data/tests/content_negotiation_test.rb +0 -127
  197. data/tests/errors_test.rb +0 -57
  198. data/tests/hardware_profiles_test.rb +0 -75
  199. data/tests/images_test.rb +0 -102
  200. data/tests/instance_states_test.rb +0 -66
  201. data/tests/instances_test.rb +0 -203
  202. data/tests/keys_test.rb +0 -81
  203. data/tests/realms_test.rb +0 -64
  204. data/tests/storage_snapshot_test.rb +0 -76
  205. data/tests/storage_volume_test.rb +0 -86
@@ -0,0 +1,43 @@
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
+ require_relative '../test_helper'
17
+
18
+ describe Deltacloud::Client::Methods::InstanceState do
19
+
20
+ before do
21
+ VCR.insert_cassette(__name__)
22
+ @client = new_client
23
+ end
24
+
25
+ after do
26
+ VCR.eject_cassette
27
+ end
28
+
29
+ it 'supports #instance_states' do
30
+ @client.must_respond_to :instance_states
31
+ @client.instance_states.must_be_kind_of Array
32
+ @client.instance_states.each { |r| r.must_be_instance_of Deltacloud::Client::InstanceState::State }
33
+ end
34
+
35
+ it 'support #instance_state' do
36
+ @client.must_respond_to :instance_state
37
+ result = @client.instance_state('start')
38
+ result.must_be_instance_of Deltacloud::Client::InstanceState::State
39
+ @client.instance_state(nil).must_be_nil
40
+ @client.instance_state('foo').must_be_nil
41
+ end
42
+
43
+ end
@@ -0,0 +1,126 @@
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
+ require_relative '../test_helper'
17
+
18
+ describe Deltacloud::Client::Methods::Instance do
19
+
20
+ before do
21
+ VCR.insert_cassette(__name__)
22
+ @client = new_client
23
+ @created_instances = []
24
+ end
25
+
26
+ after do
27
+ VCR.eject_cassette
28
+ VCR.use_cassette('instances_cleanup') do
29
+ cleanup_instances(@created_instances)
30
+ end
31
+ end
32
+
33
+ it 'supports #instances' do
34
+ @client.must_respond_to :instances
35
+ @client.instances.must_be_kind_of Array
36
+ @client.instances.each { |r| r.must_be_instance_of Deltacloud::Client::Instance }
37
+ end
38
+
39
+ it 'supports filtering #instances by :id param' do
40
+ result = @client.instances(:id => 'inst1')
41
+ result.must_be_kind_of Array
42
+ result.size.must_equal 1
43
+ result.first.must_be_instance_of Deltacloud::Client::Instance
44
+ result = @client.instances(:id => 'unknown')
45
+ result.must_be_kind_of Array
46
+ result.size.must_equal 0
47
+ end
48
+
49
+ it 'support #instance' do
50
+ @client.must_respond_to :instance
51
+ result = @client.instance('inst1')
52
+ result.must_be_instance_of Deltacloud::Client::Instance
53
+ result.public_addresses.wont_be_empty
54
+ result.public_addresses.first[:type].must_equal :hostname
55
+ result.public_addresses.first.type.must_equal :hostname
56
+ result.public_addresses.first[:value].must_equal 'img1.inst1.public.com'
57
+ result.public_addresses.first.value.must_equal 'img1.inst1.public.com'
58
+ result.public_addresses.first.to_s.must_equal 'img1.inst1.public.com'
59
+ lambda { @client.instance(nil) }.must_raise Deltacloud::Client::NotFound
60
+ lambda { @client.instance('foo') }.must_raise Deltacloud::Client::NotFound
61
+ end
62
+
63
+ it 'support #create_instance' do
64
+ @client.must_respond_to :create_instance
65
+ inst = @client.create_instance('img1')
66
+ inst.must_be_instance_of Deltacloud::Client::Instance
67
+ inst.image_id.must_equal 'img1'
68
+ @created_instances << inst
69
+ end
70
+
71
+ it 'support #create_instance with hwp_id' do
72
+ @client.must_respond_to :create_instance
73
+ inst = @client.create_instance('img1', :hwp_id => 'm1-large')
74
+ inst.must_be_instance_of Deltacloud::Client::Instance
75
+ inst.image_id.must_equal 'img1'
76
+ inst.hardware_profile_id.must_equal 'm1-large'
77
+ @created_instances << inst
78
+ end
79
+
80
+ it 'support #create_instance with realm_id' do
81
+ @client.must_respond_to :create_instance
82
+ inst = @client.create_instance('img1', :realm_id => 'eu')
83
+ inst.must_be_instance_of Deltacloud::Client::Instance
84
+ inst.realm_id.must_equal 'eu'
85
+ @created_instances << inst
86
+ end
87
+
88
+ it 'support #create_instance with name' do
89
+ @client.must_respond_to :create_instance
90
+ inst = @client.create_instance('img1', :realm_id => 'eu', :name => 'test_instance')
91
+ inst.must_be_instance_of Deltacloud::Client::Instance
92
+ inst.name.must_equal 'test_instance'
93
+ inst.realm_id.must_equal 'eu'
94
+ @created_instances << inst
95
+ end
96
+
97
+ it 'support #stop_instance' do
98
+ @client.must_respond_to :stop_instance
99
+ inst = @client.create_instance('img1')
100
+ inst.must_be_instance_of Deltacloud::Client::Instance
101
+ inst = @client.stop_instance(inst._id)
102
+ inst.state.must_equal 'STOPPED'
103
+ @created_instances << inst
104
+ end
105
+
106
+ it 'support #start_instance' do
107
+ @client.must_respond_to :start_instance
108
+ inst = @client.create_instance('img1')
109
+ inst.must_be_instance_of Deltacloud::Client::Instance
110
+ inst = @client.stop_instance(inst._id)
111
+ inst.state.must_equal 'STOPPED'
112
+ inst = inst.start_instance(inst._id)
113
+ inst.state.must_equal 'RUNNING'
114
+ @created_instances << inst
115
+ end
116
+
117
+ it 'support #reboot_instance' do
118
+ @client.must_respond_to :reboot_instance
119
+ inst = @client.create_instance('img1')
120
+ inst.must_be_instance_of Deltacloud::Client::Instance
121
+ inst = @client.reboot_instance(inst._id)
122
+ inst.state.must_equal 'RUNNING'
123
+ @created_instances << inst
124
+ end
125
+
126
+ end
@@ -0,0 +1,63 @@
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
+ require_relative '../test_helper'
17
+
18
+ describe Deltacloud::Client::Methods::Key do
19
+
20
+ before do
21
+ VCR.insert_cassette(__name__)
22
+ @client = new_client
23
+ end
24
+
25
+ after do
26
+ VCR.eject_cassette
27
+ end
28
+
29
+ it 'supports #keys' do
30
+ @client.must_respond_to :keys
31
+ @client.keys.must_be_kind_of Array
32
+ @client.keys.each { |r| r.must_be_instance_of Deltacloud::Client::Key }
33
+ end
34
+
35
+ it 'supports filtering #keys by :id param' do
36
+ result = @client.keys(:id => 'test-key')
37
+ result.must_be_kind_of Array
38
+ result.size.must_equal 1
39
+ result.first.must_be_instance_of Deltacloud::Client::Key
40
+ result = @client.keys(:id => 'unknown')
41
+ result.must_be_kind_of Array
42
+ result.size.must_equal 0
43
+ end
44
+
45
+ it 'support #key' do
46
+ @client.must_respond_to :key
47
+ result = @client.key('test-key')
48
+ result.must_be_instance_of Deltacloud::Client::Key
49
+ lambda { @client.key(nil) }.must_raise Deltacloud::Client::NotFound
50
+ lambda { @client.key('foo') }.must_raise Deltacloud::Client::NotFound
51
+ end
52
+
53
+ it 'support #create_key and #destroy_key' do
54
+ @client.must_respond_to :create_key
55
+ result = @client.create_key('foo')
56
+ result.must_be_instance_of Deltacloud::Client::Key
57
+ result.name.must_equal 'foo'
58
+ result.public_key.wont_be_nil
59
+ @client.must_respond_to :destroy_key
60
+ @client.destroy_key(result._id)
61
+ end
62
+
63
+ end
@@ -0,0 +1,50 @@
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
+ require_relative '../test_helper'
17
+
18
+ describe Deltacloud::Client::Methods::Realm do
19
+
20
+ before do
21
+ VCR.insert_cassette(__name__)
22
+ @client = new_client
23
+ end
24
+
25
+ after do
26
+ VCR.eject_cassette
27
+ end
28
+
29
+ it 'supports #realms' do
30
+ @client.must_respond_to :realms
31
+ @client.realms.must_be_kind_of Array
32
+ @client.realms.each { |r| r.must_be_instance_of Deltacloud::Client::Realm }
33
+ end
34
+
35
+ it 'supports filtering #realms by :id' do
36
+ result = @client.realms(:id => 'eu')
37
+ result.must_be_kind_of Array
38
+ result.size.must_equal 1
39
+ result.first.must_be_instance_of Deltacloud::Client::Realm
40
+ end
41
+
42
+ it 'support #realm' do
43
+ @client.must_respond_to :realm
44
+ result = @client.realm('eu')
45
+ result.must_be_instance_of Deltacloud::Client::Realm
46
+ lambda { @client.realm(nil) }.must_raise Deltacloud::Client::NotFound
47
+ lambda { @client.realm('foo') }.must_raise Deltacloud::Client::NotFound
48
+ end
49
+
50
+ end
@@ -0,0 +1,53 @@
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
+ require_relative '../test_helper'
17
+
18
+ describe Deltacloud::Client::Methods::StorageSnapshot do
19
+
20
+ before do
21
+ VCR.insert_cassette(__name__)
22
+ @client = new_client
23
+ end
24
+
25
+ after do
26
+ VCR.eject_cassette
27
+ end
28
+
29
+ it 'supports #storage_snapshots' do
30
+ @client.must_respond_to :storage_snapshots
31
+ @client.storage_snapshots.must_be_kind_of Array
32
+ @client.storage_snapshots.each { |r| r.must_be_instance_of Deltacloud::Client::StorageSnapshot }
33
+ end
34
+
35
+ it 'supports filtering #storage_snapshots by :id param' do
36
+ result = @client.storage_snapshots(:id => 'snap1')
37
+ result.must_be_kind_of Array
38
+ result.size.must_equal 1
39
+ result.first.must_be_instance_of Deltacloud::Client::StorageSnapshot
40
+ result = @client.storage_snapshots(:id => 'unknown')
41
+ result.must_be_kind_of Array
42
+ result.size.must_equal 0
43
+ end
44
+
45
+ it 'support #storage_snapshot' do
46
+ @client.must_respond_to :storage_snapshot
47
+ result = @client.storage_snapshot('snap1')
48
+ result.must_be_instance_of Deltacloud::Client::StorageSnapshot
49
+ lambda { @client.storage_snapshot(nil) }.must_raise Deltacloud::Client::NotFound
50
+ lambda { @client.storage_snapshot('foo') }.must_raise Deltacloud::Client::NotFound
51
+ end
52
+
53
+ end
@@ -0,0 +1,81 @@
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
+ require_relative '../test_helper'
17
+
18
+ describe Deltacloud::Client::Methods::StorageVolume do
19
+
20
+ before do
21
+ VCR.insert_cassette(__name__)
22
+ @client = new_client
23
+ end
24
+
25
+ after do
26
+ VCR.eject_cassette
27
+ end
28
+
29
+ it 'supports #storage_volumes' do
30
+ @client.must_respond_to :storage_volumes
31
+ @client.storage_volumes.must_be_kind_of Array
32
+ @client.storage_volumes.each { |r| r.must_be_instance_of Deltacloud::Client::StorageVolume }
33
+ end
34
+
35
+ it 'supports filtering #storage_volumes by :id param' do
36
+ result = @client.storage_volumes(:id => 'vol1')
37
+ result.must_be_kind_of Array
38
+ result.size.must_equal 1
39
+ result.first.must_be_instance_of Deltacloud::Client::StorageVolume
40
+ result = @client.storage_volumes(:id => 'unknown')
41
+ result.must_be_kind_of Array
42
+ result.size.must_equal 0
43
+ end
44
+
45
+ it 'support #storage_volume' do
46
+ @client.must_respond_to :storage_volume
47
+ result = @client.storage_volume('vol1')
48
+ result.must_be_instance_of Deltacloud::Client::StorageVolume
49
+ lambda { @client.storage_volume(nil) }.must_raise Deltacloud::Client::NotFound
50
+ lambda { @client.storage_volume('foo') }.must_raise Deltacloud::Client::NotFound
51
+ end
52
+
53
+ it 'support #create_volume and #destroy_volume' do
54
+ @client.must_respond_to :create_storage_volume
55
+ result = @client.create_storage_volume(:snapshot_id => 'snap1', :name => 'foo123', :capacity => '10')
56
+ result.must_be_instance_of Deltacloud::Client::StorageVolume
57
+ result.name.must_equal 'foo123'
58
+ result.capacity.must_equal '10'
59
+ @client.must_respond_to :destroy_storage_volume
60
+ @client.destroy_storage_volume(result._id).must_equal true
61
+ lambda { @client.storage_volume(result._id) }.must_raise Deltacloud::Client::NotFound
62
+ end
63
+
64
+ it 'support #attach_storage_volume and #detach_storage_volume' do
65
+ @client.must_respond_to :attach_storage_volume
66
+ result = @client.attach_storage_volume('vol1', 'inst1', '/dev/sdc')
67
+ result.must_be_instance_of Deltacloud::Client::StorageVolume
68
+ result.name.must_equal 'vol1'
69
+ result.state.must_equal 'IN-USE'
70
+ result.device.must_equal '/dev/sdc'
71
+ result.mount[:instance].must_equal 'inst1'
72
+ @client.must_respond_to :detach_storage_volume
73
+ result = @client.detach_storage_volume('vol1')
74
+ result.must_be_instance_of Deltacloud::Client::StorageVolume
75
+ result.name.must_equal 'vol1'
76
+ result.state.must_equal 'AVAILABLE'
77
+ result.device.must_be_nil
78
+ result.mount[:instance].must_be_nil
79
+ end
80
+
81
+ end
@@ -0,0 +1,40 @@
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
+ require_relative '../test_helper'
17
+
18
+ describe Deltacloud::Client::Blob do
19
+
20
+ before do
21
+ VCR.insert_cassette(__name__)
22
+ @client = new_client
23
+ end
24
+
25
+ after do
26
+ VCR.eject_cassette
27
+ end
28
+
29
+ it 'supports #bucket' do
30
+ blob = @client.blob('bucket1', 'blob1')
31
+ blob.bucket.must_be_instance_of Deltacloud::Client::Bucket
32
+ blob.bucket._id.must_equal 'bucket1'
33
+ end
34
+
35
+ it 'support #[] on Provider' do
36
+ drv = @client.driver(:ec2)
37
+ drv['eu-west-1']['s3'].wont_be_empty
38
+ end
39
+
40
+ end