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,475 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://localhost:3001/api
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - application/xml
12
+ Authorization:
13
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
14
+ User-Agent:
15
+ - Faraday v0.8.6
16
+ response:
17
+ status:
18
+ code: 200
19
+ message:
20
+ headers:
21
+ content-type:
22
+ - application/xml
23
+ server:
24
+ - Apache-Deltacloud/1.1.1
25
+ x-deltacloud-driver:
26
+ - mock
27
+ content-length:
28
+ - '1368'
29
+ x-content-type-options:
30
+ - nosniff
31
+ etag:
32
+ - e43d25244dc2b8ce1da6fa91131507ee
33
+ cache-control:
34
+ - max-age=0, private, must-revalidate
35
+ date:
36
+ - Wed, 06 Mar 2013 08:56:16 GMT
37
+ connection:
38
+ - close
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ! "<api driver='mock' version='1.1.1'>\n <link href='http://localhost:3001/api/instance_states'
42
+ rel='instance_states'>\n </link>\n <link href='http://localhost:3001/api/storage_volumes'
43
+ rel='storage_volumes'>\n </link>\n <link href='http://localhost:3001/api/metrics'
44
+ rel='metrics'>\n </link>\n <link href='http://localhost:3001/api/hardware_profiles'
45
+ rel='hardware_profiles'>\n </link>\n <link href='http://localhost:3001/api/instances'
46
+ rel='instances'>\n <feature name='metrics' rel='create'>\n <param
47
+ name='metrics' />\n </feature>\n <feature name='realm_filter' rel='index'>\n
48
+ \ <param name='realm_id' />\n </feature>\n <feature name='user_name'
49
+ rel='create'>\n <param name='name' />\n </feature>\n <feature name='authentication_key'
50
+ rel='create'>\n <param name='keyname' />\n </feature>\n </link>\n
51
+ \ <link href='http://localhost:3001/api/realms' rel='realms'>\n </link>\n
52
+ \ <link href='http://localhost:3001/api/storage_snapshots' rel='storage_snapshots'>\n
53
+ \ </link>\n <link href='http://localhost:3001/api/images' rel='images'>\n
54
+ \ </link>\n <link href='http://localhost:3001/api/addresses' rel='addresses'>\n
55
+ \ </link>\n <link href='http://localhost:3001/api/drivers' rel='drivers'>\n
56
+ \ </link>\n <link href='http://localhost:3001/api/buckets' rel='buckets'>\n
57
+ \ </link>\n <link href='http://localhost:3001/api/keys' rel='keys'>\n </link>\n</api>\n"
58
+ http_version:
59
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
60
+ - request:
61
+ method: get
62
+ uri: http://localhost:3001/api/buckets/bucket1
63
+ body:
64
+ encoding: US-ASCII
65
+ string: ''
66
+ headers:
67
+ Accept:
68
+ - application/xml
69
+ Authorization:
70
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
71
+ User-Agent:
72
+ - Faraday v0.8.6
73
+ response:
74
+ status:
75
+ code: 200
76
+ message:
77
+ headers:
78
+ content-type:
79
+ - application/xml
80
+ x-backend-runtime:
81
+ - '0.0054171085357666016'
82
+ server:
83
+ - Apache-Deltacloud/1.1.1
84
+ x-deltacloud-driver:
85
+ - mock
86
+ content-length:
87
+ - '407'
88
+ x-content-type-options:
89
+ - nosniff
90
+ etag:
91
+ - d1130db2fb1a271d67e7d69ac1bd604e
92
+ cache-control:
93
+ - max-age=0, private, must-revalidate
94
+ date:
95
+ - Wed, 06 Mar 2013 08:56:16 GMT
96
+ connection:
97
+ - close
98
+ body:
99
+ encoding: US-ASCII
100
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<bucket href='http://localhost:3001/api/buckets/bucket1'
101
+ id='bucket1'>\n <name>bucket1</name>\n <size>3</size>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob1'
102
+ id='blob1'></blob>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob3'
103
+ id='blob3'></blob>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob2'
104
+ id='blob2'></blob>\n</bucket>\n"
105
+ http_version:
106
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
107
+ - request:
108
+ method: get
109
+ uri: http://localhost:3001/api/buckets/bucket1/blob1
110
+ body:
111
+ encoding: US-ASCII
112
+ string: ''
113
+ headers:
114
+ Accept:
115
+ - application/xml
116
+ Authorization:
117
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
118
+ User-Agent:
119
+ - Faraday v0.8.6
120
+ response:
121
+ status:
122
+ code: 200
123
+ message:
124
+ headers:
125
+ content-type:
126
+ - application/xml
127
+ server:
128
+ - Apache-Deltacloud/1.1.1
129
+ x-deltacloud-driver:
130
+ - mock
131
+ content-length:
132
+ - '485'
133
+ x-content-type-options:
134
+ - nosniff
135
+ etag:
136
+ - 6ffb9a8c697a593bc98fed727e98f855
137
+ cache-control:
138
+ - max-age=0, private, must-revalidate
139
+ date:
140
+ - Wed, 06 Mar 2013 08:56:16 GMT
141
+ connection:
142
+ - close
143
+ body:
144
+ encoding: US-ASCII
145
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<blob href='http://localhost:3001/api/buckets/bucket1/blob1'
146
+ id='blob1'>\n <bucket>bucket1</bucket>\n <content_length>17</content_length>\n
147
+ \ <content_type>text/plain</content_type>\n <last_modified>2010-09-23 17:44:54
148
+ +0200</last_modified>\n <user_metadata>\n <entry key='SOMENEWKEY'><![CDATA[NEWVALUE]]></entry>\n
149
+ \ </user_metadata>\n <content href='http://localhost:3001/api/buckets/bucket1/blob1/content'
150
+ rel='blob_content'></content>\n</blob>\n"
151
+ http_version:
152
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
153
+ - request:
154
+ method: get
155
+ uri: http://localhost:3001/api/buckets/bucket1/blob3
156
+ body:
157
+ encoding: US-ASCII
158
+ string: ''
159
+ headers:
160
+ Accept:
161
+ - application/xml
162
+ Authorization:
163
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
164
+ User-Agent:
165
+ - Faraday v0.8.6
166
+ response:
167
+ status:
168
+ code: 200
169
+ message:
170
+ headers:
171
+ content-type:
172
+ - application/xml
173
+ server:
174
+ - Apache-Deltacloud/1.1.1
175
+ x-deltacloud-driver:
176
+ - mock
177
+ content-length:
178
+ - '428'
179
+ x-content-type-options:
180
+ - nosniff
181
+ etag:
182
+ - f5c6bcf8a055f57b9f69ac36ef07626f
183
+ cache-control:
184
+ - max-age=0, private, must-revalidate
185
+ date:
186
+ - Wed, 06 Mar 2013 08:56:16 GMT
187
+ connection:
188
+ - close
189
+ body:
190
+ encoding: US-ASCII
191
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<blob href='http://localhost:3001/api/buckets/bucket1/blob3'
192
+ id='blob3'>\n <bucket>bucket1</bucket>\n <content_length>17</content_length>\n
193
+ \ <content_type>text/plain</content_type>\n <last_modified>2010-08-14 03:14:31
194
+ +0200</last_modified>\n <user_metadata>\n </user_metadata>\n <content href='http://localhost:3001/api/buckets/bucket1/blob3/content'
195
+ rel='blob_content'></content>\n</blob>\n"
196
+ http_version:
197
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
198
+ - request:
199
+ method: get
200
+ uri: http://localhost:3001/api/buckets/bucket1/blob2
201
+ body:
202
+ encoding: US-ASCII
203
+ string: ''
204
+ headers:
205
+ Accept:
206
+ - application/xml
207
+ Authorization:
208
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
209
+ User-Agent:
210
+ - Faraday v0.8.6
211
+ response:
212
+ status:
213
+ code: 200
214
+ message:
215
+ headers:
216
+ content-type:
217
+ - application/xml
218
+ server:
219
+ - Apache-Deltacloud/1.1.1
220
+ x-deltacloud-driver:
221
+ - mock
222
+ content-length:
223
+ - '476'
224
+ x-content-type-options:
225
+ - nosniff
226
+ etag:
227
+ - c4aec8663f7a6df184a8253d5d13142a
228
+ cache-control:
229
+ - max-age=0, private, must-revalidate
230
+ date:
231
+ - Wed, 06 Mar 2013 08:56:16 GMT
232
+ connection:
233
+ - close
234
+ body:
235
+ encoding: US-ASCII
236
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<blob href='http://localhost:3001/api/buckets/bucket1/blob2'
237
+ id='blob2'>\n <bucket>bucket1</bucket>\n <content_length>56</content_length>\n
238
+ \ <content_type>text/html</content_type>\n <last_modified>2010-09-23 17:55:05
239
+ +0200</last_modified>\n <user_metadata>\n <entry key='VERSION'><![CDATA[1.2]]></entry>\n
240
+ \ </user_metadata>\n <content href='http://localhost:3001/api/buckets/bucket1/blob2/content'
241
+ rel='blob_content'></content>\n</blob>\n"
242
+ http_version:
243
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
244
+ - request:
245
+ method: get
246
+ uri: http://localhost:3001/api/buckets/bucket1
247
+ body:
248
+ encoding: US-ASCII
249
+ string: ''
250
+ headers:
251
+ Accept:
252
+ - application/xml
253
+ Authorization:
254
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
255
+ User-Agent:
256
+ - Faraday v0.8.6
257
+ response:
258
+ status:
259
+ code: 200
260
+ message:
261
+ headers:
262
+ content-type:
263
+ - application/xml
264
+ x-backend-runtime:
265
+ - '0.0033838748931884766'
266
+ server:
267
+ - Apache-Deltacloud/1.1.1
268
+ x-deltacloud-driver:
269
+ - mock
270
+ content-length:
271
+ - '407'
272
+ x-content-type-options:
273
+ - nosniff
274
+ etag:
275
+ - d1130db2fb1a271d67e7d69ac1bd604e
276
+ cache-control:
277
+ - max-age=0, private, must-revalidate
278
+ date:
279
+ - Wed, 06 Mar 2013 08:56:16 GMT
280
+ connection:
281
+ - close
282
+ body:
283
+ encoding: US-ASCII
284
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<bucket href='http://localhost:3001/api/buckets/bucket1'
285
+ id='bucket1'>\n <name>bucket1</name>\n <size>3</size>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob1'
286
+ id='blob1'></blob>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob3'
287
+ id='blob3'></blob>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob2'
288
+ id='blob2'></blob>\n</bucket>\n"
289
+ http_version:
290
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
291
+ - request:
292
+ method: get
293
+ uri: http://localhost:3001/api/buckets/bucket1/blob1
294
+ body:
295
+ encoding: US-ASCII
296
+ string: ''
297
+ headers:
298
+ Accept:
299
+ - application/xml
300
+ Authorization:
301
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
302
+ User-Agent:
303
+ - Faraday v0.8.6
304
+ response:
305
+ status:
306
+ code: 200
307
+ message:
308
+ headers:
309
+ content-type:
310
+ - application/xml
311
+ server:
312
+ - Apache-Deltacloud/1.1.1
313
+ x-deltacloud-driver:
314
+ - mock
315
+ content-length:
316
+ - '485'
317
+ x-content-type-options:
318
+ - nosniff
319
+ etag:
320
+ - 6ffb9a8c697a593bc98fed727e98f855
321
+ cache-control:
322
+ - max-age=0, private, must-revalidate
323
+ date:
324
+ - Wed, 06 Mar 2013 08:56:16 GMT
325
+ connection:
326
+ - close
327
+ body:
328
+ encoding: US-ASCII
329
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<blob href='http://localhost:3001/api/buckets/bucket1/blob1'
330
+ id='blob1'>\n <bucket>bucket1</bucket>\n <content_length>17</content_length>\n
331
+ \ <content_type>text/plain</content_type>\n <last_modified>2010-09-23 17:44:54
332
+ +0200</last_modified>\n <user_metadata>\n <entry key='SOMENEWKEY'><![CDATA[NEWVALUE]]></entry>\n
333
+ \ </user_metadata>\n <content href='http://localhost:3001/api/buckets/bucket1/blob1/content'
334
+ rel='blob_content'></content>\n</blob>\n"
335
+ http_version:
336
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
337
+ - request:
338
+ method: get
339
+ uri: http://localhost:3001/api/buckets/bucket1/blob3
340
+ body:
341
+ encoding: US-ASCII
342
+ string: ''
343
+ headers:
344
+ Accept:
345
+ - application/xml
346
+ Authorization:
347
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
348
+ User-Agent:
349
+ - Faraday v0.8.6
350
+ response:
351
+ status:
352
+ code: 200
353
+ message:
354
+ headers:
355
+ content-type:
356
+ - application/xml
357
+ server:
358
+ - Apache-Deltacloud/1.1.1
359
+ x-deltacloud-driver:
360
+ - mock
361
+ content-length:
362
+ - '428'
363
+ x-content-type-options:
364
+ - nosniff
365
+ etag:
366
+ - f5c6bcf8a055f57b9f69ac36ef07626f
367
+ cache-control:
368
+ - max-age=0, private, must-revalidate
369
+ date:
370
+ - Wed, 06 Mar 2013 08:56:16 GMT
371
+ connection:
372
+ - close
373
+ body:
374
+ encoding: US-ASCII
375
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<blob href='http://localhost:3001/api/buckets/bucket1/blob3'
376
+ id='blob3'>\n <bucket>bucket1</bucket>\n <content_length>17</content_length>\n
377
+ \ <content_type>text/plain</content_type>\n <last_modified>2010-08-14 03:14:31
378
+ +0200</last_modified>\n <user_metadata>\n </user_metadata>\n <content href='http://localhost:3001/api/buckets/bucket1/blob3/content'
379
+ rel='blob_content'></content>\n</blob>\n"
380
+ http_version:
381
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
382
+ - request:
383
+ method: get
384
+ uri: http://localhost:3001/api/buckets/bucket1/blob2
385
+ body:
386
+ encoding: US-ASCII
387
+ string: ''
388
+ headers:
389
+ Accept:
390
+ - application/xml
391
+ Authorization:
392
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
393
+ User-Agent:
394
+ - Faraday v0.8.6
395
+ response:
396
+ status:
397
+ code: 200
398
+ message:
399
+ headers:
400
+ content-type:
401
+ - application/xml
402
+ server:
403
+ - Apache-Deltacloud/1.1.1
404
+ x-deltacloud-driver:
405
+ - mock
406
+ content-length:
407
+ - '476'
408
+ x-content-type-options:
409
+ - nosniff
410
+ etag:
411
+ - c4aec8663f7a6df184a8253d5d13142a
412
+ cache-control:
413
+ - max-age=0, private, must-revalidate
414
+ date:
415
+ - Wed, 06 Mar 2013 08:56:16 GMT
416
+ connection:
417
+ - close
418
+ body:
419
+ encoding: US-ASCII
420
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<blob href='http://localhost:3001/api/buckets/bucket1/blob2'
421
+ id='blob2'>\n <bucket>bucket1</bucket>\n <content_length>56</content_length>\n
422
+ \ <content_type>text/html</content_type>\n <last_modified>2010-09-23 17:55:05
423
+ +0200</last_modified>\n <user_metadata>\n <entry key='VERSION'><![CDATA[1.2]]></entry>\n
424
+ \ </user_metadata>\n <content href='http://localhost:3001/api/buckets/bucket1/blob2/content'
425
+ rel='blob_content'></content>\n</blob>\n"
426
+ http_version:
427
+ recorded_at: Wed, 06 Mar 2013 08:56:16 GMT
428
+ - request:
429
+ method: get
430
+ uri: http://localhost:3001/api/buckets/bucket1
431
+ body:
432
+ encoding: US-ASCII
433
+ string: ''
434
+ headers:
435
+ Accept:
436
+ - application/xml
437
+ Authorization:
438
+ - Basic bW9ja3VzZXI6bW9ja3Bhc3N3b3Jk
439
+ User-Agent:
440
+ - Faraday v0.8.6
441
+ response:
442
+ status:
443
+ code: 200
444
+ message:
445
+ headers:
446
+ content-type:
447
+ - application/xml
448
+ x-backend-runtime:
449
+ - '0.0020835399627685547'
450
+ server:
451
+ - Apache-Deltacloud/1.1.1
452
+ x-deltacloud-driver:
453
+ - mock
454
+ content-length:
455
+ - '407'
456
+ x-content-type-options:
457
+ - nosniff
458
+ etag:
459
+ - c3d2ba8fdf26ef08f573e94239a15b9e
460
+ cache-control:
461
+ - max-age=0, private, must-revalidate
462
+ date:
463
+ - Wed, 06 Mar 2013 15:56:31 GMT
464
+ connection:
465
+ - close
466
+ body:
467
+ encoding: US-ASCII
468
+ string: ! "<?xml version='1.0' encoding='utf-8' ?>\n<bucket href='http://localhost:3001/api/buckets/bucket1'
469
+ id='bucket1'>\n <name>bucket1</name>\n <size>4</size>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob1'
470
+ id='blob1'></blob>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob3'
471
+ id='blob3'></blob>\n <blob href='http://localhost:3001/api/buckets/bucket1/blob2'
472
+ id='blob2'></blob>\n</bucket>\n"
473
+ http_version:
474
+ recorded_at: Wed, 06 Mar 2013 15:56:31 GMT
475
+ recorded_with: VCR 2.4.0