aviator 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.travis.yml +1 -0
- data/README.md +35 -8
- data/README.md.orig +217 -0
- data/aviator.gemspec +3 -3
- data/lib/aviator/openstack/compute/v2/public/change_admin_password.rb +54 -0
- data/lib/aviator/openstack/compute/v2/public/create_image.rb +56 -0
- data/lib/aviator/openstack/compute/v2/public/create_server.rb +64 -0
- data/lib/aviator/openstack/compute/v2/public/delete_server.rb +39 -0
- data/lib/aviator/openstack/compute/v2/public/get_server.rb +39 -0
- data/lib/aviator/openstack/compute/v2/public/list_addresses.rb +48 -0
- data/lib/aviator/openstack/compute/v2/public/list_flavors.rb +55 -0
- data/lib/aviator/openstack/compute/v2/public/reboot_server.rb +51 -0
- data/lib/aviator/openstack/compute/v2/public/rebuild_server.rb +63 -0
- data/lib/aviator/openstack/compute/v2/public/root.rb +34 -0
- data/lib/aviator/openstack/compute/v2/public/update_server.rb +55 -0
- data/lib/aviator/version.rb +1 -1
- data/test/aviator/core/service_test.rb +3 -15
- data/test/aviator/core/session_test.rb +3 -3
- data/test/aviator/openstack/compute/v2/public/change_admin_password_test.rb +141 -0
- data/test/aviator/openstack/compute/v2/public/create_image_test.rb +146 -0
- data/test/aviator/openstack/compute/v2/public/create_server_test.rb +177 -0
- data/test/aviator/openstack/compute/v2/public/delete_server_test.rb +131 -0
- data/test/aviator/openstack/compute/v2/public/get_server_test.rb +138 -0
- data/test/aviator/openstack/compute/v2/public/list_addresses_test.rb +161 -0
- data/test/aviator/openstack/compute/v2/public/list_flavors_test.rb +160 -0
- data/test/aviator/openstack/compute/v2/public/list_images_test.rb +1 -1
- data/test/aviator/openstack/compute/v2/public/reboot_server_test.rb +137 -0
- data/test/aviator/openstack/compute/v2/public/rebuild_server_test.rb +183 -0
- data/test/aviator/openstack/compute/v2/public/root_test.rb +106 -0
- data/test/aviator/openstack/compute/v2/public/update_server_test.rb +144 -0
- data/test/aviator/openstack/identity/v2/admin/create_tenant_test.rb +1 -1
- data/test/cassettes/core/service/i_default_session_data_/sets_the_service_s_default_session_data.yml +18 -17
- data/test/cassettes/core/service/i_request/accepts_an_endpoint_type_option_for_selecting_a_specific_request.yml +31 -30
- data/test/cassettes/core/service/i_request/can_find_the_correct_request_based_on_bootstrapped_session_data.yml +18 -17
- data/test/cassettes/core/service/i_request/can_find_the_correct_request_based_on_non-bootstrapped_session_data.yml +29 -27
- data/test/cassettes/core/service/i_request/can_find_the_correct_request_if_api_version_is_not_defined_but_can_be_inferred_from_host_uri.yml +18 -17
- data/test/cassettes/core/service/i_request/uses_the_default_session_data_if_session_data_is_not_provided.yml +29 -27
- data/test/cassettes/core/session/c_load/creates_a_new_instance_from_the_given_session_dump.yml +18 -17
- data/test/cassettes/core/session/c_load/uses_the_loaded_auth_info_for_its_services.yml +18 -17
- data/test/cassettes/core/session/c_new/directs_log_entries_to_the_given_log_file.yml +18 -17
- data/test/cassettes/core/session/i_authenticate/authenticates_against_the_auth_service_indicated_in_the_config_file.yml +18 -17
- data/test/cassettes/core/session/i_authenticate/authenticates_against_the_auth_service_using_the_credentials_in_the_given_block.yml +10 -10
- data/test/cassettes/core/session/i_authenticate/raises_an_AuthenticationError_when_authentication_fails.yml +3 -3
- data/test/cassettes/core/session/i_authenticate/updates_the_session_data_of_its_service_objects.yml +36 -34
- data/test/cassettes/core/session/i_dump/serializes_the_session_data_for_caching.yml +18 -17
- data/test/cassettes/core/session/i_load/returns_itself.yml +18 -17
- data/test/cassettes/core/session/i_load/updates_the_session_data_of_its_service_objects.yml +36 -34
- data/test/cassettes/core/session/i_validate/returns_false_if_session_is_no_longer_valid.yml +20 -19
- data/test/cassettes/core/session/i_validate/returns_true_if_session_is_still_valid.yml +22 -21
- data/test/cassettes/core/session/i_xxx_service/returns_an_instance_of_the_indicated_service.yml +18 -17
- data/test/cassettes/openstack/compute/v2/public/change_admin_password/leads_to_a_valid_response_when_invalid_server_id_is_provided.yml +97 -0
- data/test/cassettes/openstack/compute/v2/public/change_admin_password/leads_to_a_valid_response_when_valid_params_are_provided.yml +132 -0
- data/test/cassettes/openstack/compute/v2/public/change_admin_password/returns_the_correct_value_for_body_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/change_admin_password/returns_the_correct_value_for_headers_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/change_admin_password/returns_the_correct_value_for_http_method_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/change_admin_password/returns_the_correct_value_for_url_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/create_image/leads_to_a_valid_response_when_invalid_server_id_is_provided.yml +97 -0
- data/test/cassettes/openstack/compute/v2/public/create_image/leads_to_a_valid_response_when_valid_params_are_provided.yml +132 -0
- data/test/cassettes/openstack/compute/v2/public/create_image/returns_the_correct_value_for_body_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/create_image/returns_the_correct_value_for_headers_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/create_image/returns_the_correct_value_for_http_method_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/create_image/returns_the_correct_value_for_url_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/create_server/leads_to_a_valid_response_when_parameters_are_provided.yml +182 -0
- data/test/cassettes/openstack/compute/v2/public/create_server/leads_to_a_valid_response_when_the_adminPass_parameter_is_provided.yml +182 -0
- data/test/cassettes/openstack/compute/v2/public/create_server/leads_to_a_valid_response_when_the_flavorRef_parameter_is_invalid.yml +135 -0
- data/test/cassettes/openstack/compute/v2/public/create_server/returns_the_correct_value_for_body_.yml +142 -0
- data/test/cassettes/openstack/compute/v2/public/create_server/returns_the_correct_value_for_headers_.yml +142 -0
- data/test/cassettes/openstack/compute/v2/public/create_server/returns_the_correct_value_for_http_method_.yml +142 -0
- data/test/cassettes/openstack/compute/v2/public/create_server/returns_the_correct_value_for_url_.yml +222 -0
- data/test/cassettes/openstack/compute/v2/public/delete_server/leads_to_a_valid_response_when_invalid_server_id_is_provided.yml +96 -0
- data/test/cassettes/openstack/compute/v2/public/delete_server/leads_to_a_valid_response_when_valid_server_id_is_provided.yml +131 -0
- data/test/cassettes/openstack/compute/v2/public/delete_server/returns_the_correct_value_for_body_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/delete_server/returns_the_correct_value_for_headers_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/delete_server/returns_the_correct_value_for_http_method_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/delete_server/returns_the_correct_value_for_url_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/get_server/leads_to_a_valid_response_when_a_valid_server_id_is_provided.yml +145 -0
- data/test/cassettes/openstack/compute/v2/public/get_server/leads_to_a_valid_response_when_an_invalid_server_id_is_provided.yml +96 -0
- data/test/cassettes/openstack/compute/v2/public/get_server/returns_the_correct_value_for_body_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/get_server/returns_the_correct_value_for_headers_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/get_server/returns_the_correct_value_for_http_method_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/get_server/returns_the_correct_value_for_url_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/list_addresses/leads_to_a_valid_response_when_a_networkID_parameter_is_provided.yml +167 -0
- data/test/cassettes/openstack/compute/v2/public/list_addresses/leads_to_a_valid_response_when_a_valid_server_id_is_provided.yml +132 -0
- data/test/cassettes/openstack/compute/v2/public/list_addresses/leads_to_a_valid_response_when_an_invalid_server_id_is_provided.yml +96 -0
- data/test/cassettes/openstack/compute/v2/public/list_addresses/returns_the_correct_value_for_body_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/list_addresses/returns_the_correct_value_for_headers_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/list_addresses/returns_the_correct_value_for_http_method_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/list_addresses/returns_the_correct_value_for_url_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/list_flavors/leads_to_a_valid_response_when_no_parameters_are_provided.yml +104 -0
- data/test/cassettes/openstack/compute/v2/public/list_flavors/leads_to_a_valid_response_when_the_details_filter_is_provided.yml +111 -0
- data/test/cassettes/openstack/compute/v2/public/list_flavors/leads_to_a_valid_response_when_the_minDisk_filter_is_provided.yml +146 -0
- data/test/cassettes/openstack/compute/v2/public/list_flavors/returns_the_correct_value_for_body_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/list_flavors/returns_the_correct_value_for_headers_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/list_flavors/returns_the_correct_value_for_http_method_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/list_flavors/returns_the_correct_value_for_url_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/list_images/leads_to_a_valid_response_when_no_parameters_are_provided.yml +32 -31
- data/test/cassettes/openstack/compute/v2/public/list_images/leads_to_a_valid_response_when_parameters_are_invalid.yml +23 -22
- data/test/cassettes/openstack/compute/v2/public/list_images/leads_to_a_valid_response_when_parameters_are_valid.yml +32 -31
- data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_body_.yml +18 -17
- data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_headers_.yml +18 -17
- data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_http_method_.yml +18 -17
- data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_url_.yml +18 -17
- data/test/cassettes/openstack/compute/v2/public/list_servers/leads_to_a_valid_response_when_no_parameters_are_provided.yml +39 -38
- data/test/cassettes/openstack/compute/v2/public/list_servers/leads_to_a_valid_response_when_parameters_are_invalid.yml +37 -35
- data/test/cassettes/openstack/compute/v2/public/list_servers/leads_to_a_valid_response_when_parameters_are_valid.yml +42 -39
- data/test/cassettes/openstack/compute/v2/public/list_servers/returns_the_correct_value_for_body_.yml +32 -30
- data/test/cassettes/openstack/compute/v2/public/list_servers/returns_the_correct_value_for_headers_.yml +32 -30
- data/test/cassettes/openstack/compute/v2/public/list_servers/returns_the_correct_value_for_http_method_.yml +32 -30
- data/test/cassettes/openstack/compute/v2/public/list_servers/returns_the_correct_value_for_url_.yml +32 -30
- data/test/cassettes/openstack/compute/v2/public/reboot_server/leads_to_a_valid_response_when_invalid_server_id_is_provided.yml +97 -0
- data/test/cassettes/openstack/compute/v2/public/reboot_server/leads_to_a_valid_response_when_valid_params_are_provided.yml +130 -0
- data/test/cassettes/openstack/compute/v2/public/reboot_server/returns_the_correct_value_for_body_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/reboot_server/returns_the_correct_value_for_headers_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/reboot_server/returns_the_correct_value_for_http_method_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/reboot_server/returns_the_correct_value_for_url_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/rebuild_server/leads_to_a_valid_response_when_invalid_image_id_is_provided.yml +133 -0
- data/test/cassettes/openstack/compute/v2/public/rebuild_server/leads_to_a_valid_response_when_invalid_server_id_is_provided.yml +167 -0
- data/test/cassettes/openstack/compute/v2/public/rebuild_server/leads_to_a_valid_response_when_valid_params_are_provided.yml +216 -0
- data/test/cassettes/openstack/compute/v2/public/rebuild_server/returns_the_correct_value_for_body_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/rebuild_server/returns_the_correct_value_for_headers_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/rebuild_server/returns_the_correct_value_for_http_method_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/rebuild_server/returns_the_correct_value_for_url_.yml +63 -0
- data/test/cassettes/openstack/compute/v2/public/root/leads_to_a_valid_response_when_no_parameters_are_provided.yml +101 -0
- data/test/cassettes/openstack/compute/v2/public/root/returns_the_correct_value_for_body_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/root/returns_the_correct_value_for_headers_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/root/returns_the_correct_value_for_http_method_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/root/returns_the_correct_value_for_url_.yml +62 -0
- data/test/cassettes/openstack/compute/v2/public/update_server/leads_to_a_valid_response_when_invalid_server_id_is_provided.yml +96 -0
- data/test/cassettes/openstack/compute/v2/public/update_server/leads_to_a_valid_response_when_valid_server_id_is_provided.yml +142 -0
- data/test/cassettes/openstack/compute/v2/public/update_server/returns_the_correct_value_for_body_.yml +142 -0
- data/test/cassettes/openstack/compute/v2/public/update_server/returns_the_correct_value_for_headers_.yml +142 -0
- data/test/cassettes/openstack/compute/v2/public/update_server/returns_the_correct_value_for_http_method_.yml +142 -0
- data/test/cassettes/openstack/compute/v2/public/update_server/returns_the_correct_value_for_url_.yml +142 -0
- data/test/cassettes/openstack/identity/v2/admin/create_tenant/leads_to_a_valid_response_when_params_are_invalid.yml +21 -20
- data/test/cassettes/openstack/identity/v2/admin/create_tenant/leads_to_a_valid_response_when_params_are_valid.yml +25 -24
- data/test/cassettes/openstack/identity/v2/public/create_token/leads_to_a_valid_response_when_parameters_are_invalid.yml +3 -3
- data/test/cassettes/openstack/identity/v2/public/create_token/leads_to_a_valid_response_when_parameters_are_valid.yml +10 -10
- data/test/cassettes/openstack/identity/v2/public/create_token/leads_to_a_valid_response_when_provided_with_a_token.yml +28 -27
- data/test/environment.yml.example +16 -9
- data/test/environment.yml.travis-ci +19 -14
- data/test/support/vcr_setup.rb +35 -10
- data/test/test_helper.rb +3 -1
- metadata +180 -52
- data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_body.yml +0 -63
- data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_headers.yml +0 -63
- data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_url.yml +0 -63
- data/test/cassettes/openstack/identity/v2/admin/create_tenant/leads_to_a_valid_response_when_provided_with_invalid_params.yml +0 -97
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
http_interactions:
|
|
3
|
-
- request:
|
|
4
|
-
method: post
|
|
5
|
-
uri: <HOST_URI>:5000/v2.0/tokens
|
|
6
|
-
body:
|
|
7
|
-
encoding: UTF-8
|
|
8
|
-
string: ! '{"auth":{"passwordCredentials":{"username":"<USERNAME>","password":"<PASSWORD>"},"tenantName":"<TENANT>"}}'
|
|
9
|
-
headers:
|
|
10
|
-
Content-Type:
|
|
11
|
-
- application/json
|
|
12
|
-
User-Agent:
|
|
13
|
-
- Faraday v0.8.8
|
|
14
|
-
response:
|
|
15
|
-
status:
|
|
16
|
-
code: 200
|
|
17
|
-
message:
|
|
18
|
-
headers:
|
|
19
|
-
vary:
|
|
20
|
-
- X-Auth-Token
|
|
21
|
-
content-type:
|
|
22
|
-
- application/json
|
|
23
|
-
content-length:
|
|
24
|
-
- '2648'
|
|
25
|
-
date:
|
|
26
|
-
- Thu, 29 Aug 2013 18:49:35 GMT
|
|
27
|
-
connection:
|
|
28
|
-
- close
|
|
29
|
-
body:
|
|
30
|
-
encoding: US-ASCII
|
|
31
|
-
string: ! '{"access": {"token": {"issued_at": "2013-08-29T18:49:35.442460",
|
|
32
|
-
"expires": "2013-08-30T18:49:35Z", "id": "fda7bb90288e4f8da0868650c1401255",
|
|
33
|
-
"tenant": {"description": null, "enabled": true, "id": "3cab25130620477b8b03f1bfa8741603",
|
|
34
|
-
"name": "admin"}}, "serviceCatalog": [{"endpoints": [{"adminURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603",
|
|
35
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603",
|
|
36
|
-
"id": "3b72a66bf2f0491bb8dba827cade0d48", "publicURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603"}],
|
|
37
|
-
"endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL":
|
|
38
|
-
"http://192.168.56.11:3333", "region": "RegionOne", "internalURL": "http://192.168.56.11:3333",
|
|
39
|
-
"id": "482f749b370c40eab8788d6d0bc47f48", "publicURL": "http://192.168.56.11:3333"}],
|
|
40
|
-
"endpoints_links": [], "type": "s3", "name": "s3"}, {"endpoints": [{"adminURL":
|
|
41
|
-
"http://192.168.56.11:9292", "region": "RegionOne", "internalURL": "http://192.168.56.11:9292",
|
|
42
|
-
"id": "0cd5d5d5a0c24721a0392b47c89e3640", "publicURL": "http://192.168.56.11:9292"}],
|
|
43
|
-
"endpoints_links": [], "type": "image", "name": "glance"}, {"endpoints": [{"adminURL":
|
|
44
|
-
"http://192.168.56.11:8777", "region": "RegionOne", "internalURL": "http://192.168.56.11:8777",
|
|
45
|
-
"id": "4eb4edec1d2647bfb8ba4f9a5757169d", "publicURL": "http://192.168.56.11:8777"}],
|
|
46
|
-
"endpoints_links": [], "type": "metering", "name": "ceilometer"}, {"endpoints":
|
|
47
|
-
[{"adminURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603",
|
|
48
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603",
|
|
49
|
-
"id": "009e8a41953d439f845b2a0c0dc28b73", "publicURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603"}],
|
|
50
|
-
"endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints":
|
|
51
|
-
[{"adminURL": "http://192.168.56.11:8773/services/Admin", "region": "RegionOne",
|
|
52
|
-
"internalURL": "http://192.168.56.11:8773/services/Cloud", "id": "6820836ec6834548bf7b54da0271dded",
|
|
53
|
-
"publicURL": "http://192.168.56.11:8773/services/Cloud"}], "endpoints_links":
|
|
54
|
-
[], "type": "ec2", "name": "ec2"}, {"endpoints": [{"adminURL": "http://192.168.56.11:35357/v2.0",
|
|
55
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:5000/v2.0", "id":
|
|
56
|
-
"24a95f51f67949e784971e97463ee4d8", "publicURL": "http://192.168.56.11:5000/v2.0"}],
|
|
57
|
-
"endpoints_links": [], "type": "identity", "name": "keystone"}], "user": {"username":
|
|
58
|
-
"admin", "roles_links": [], "id": "cbbcc4f7aef6435fa2da7e5f0b2f1e97", "roles":
|
|
59
|
-
[{"name": "admin"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles":
|
|
60
|
-
["01a81f2dbb3441f1aaa8fe68a7c6f546"]}}}'
|
|
61
|
-
http_version:
|
|
62
|
-
recorded_at: Thu, 29 Aug 2013 18:47:10 GMT
|
|
63
|
-
recorded_with: VCR 2.5.0
|
data/test/cassettes/openstack/compute/v2/public/list_images/returns_the_correct_value_for_url.yml
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
http_interactions:
|
|
3
|
-
- request:
|
|
4
|
-
method: post
|
|
5
|
-
uri: <HOST_URI>:5000/v2.0/tokens
|
|
6
|
-
body:
|
|
7
|
-
encoding: UTF-8
|
|
8
|
-
string: ! '{"auth":{"passwordCredentials":{"username":"<USERNAME>","password":"<PASSWORD>"},"tenantName":"<TENANT>"}}'
|
|
9
|
-
headers:
|
|
10
|
-
Content-Type:
|
|
11
|
-
- application/json
|
|
12
|
-
User-Agent:
|
|
13
|
-
- Faraday v0.8.8
|
|
14
|
-
response:
|
|
15
|
-
status:
|
|
16
|
-
code: 200
|
|
17
|
-
message:
|
|
18
|
-
headers:
|
|
19
|
-
vary:
|
|
20
|
-
- X-Auth-Token
|
|
21
|
-
content-type:
|
|
22
|
-
- application/json
|
|
23
|
-
content-length:
|
|
24
|
-
- '2648'
|
|
25
|
-
date:
|
|
26
|
-
- Thu, 29 Aug 2013 18:49:35 GMT
|
|
27
|
-
connection:
|
|
28
|
-
- close
|
|
29
|
-
body:
|
|
30
|
-
encoding: US-ASCII
|
|
31
|
-
string: ! '{"access": {"token": {"issued_at": "2013-08-29T18:49:35.035442",
|
|
32
|
-
"expires": "2013-08-30T18:49:34Z", "id": "84e87b5916c34eb5a79dd6e7b4e94068",
|
|
33
|
-
"tenant": {"description": null, "enabled": true, "id": "3cab25130620477b8b03f1bfa8741603",
|
|
34
|
-
"name": "admin"}}, "serviceCatalog": [{"endpoints": [{"adminURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603",
|
|
35
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603",
|
|
36
|
-
"id": "3b72a66bf2f0491bb8dba827cade0d48", "publicURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603"}],
|
|
37
|
-
"endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL":
|
|
38
|
-
"http://192.168.56.11:3333", "region": "RegionOne", "internalURL": "http://192.168.56.11:3333",
|
|
39
|
-
"id": "482f749b370c40eab8788d6d0bc47f48", "publicURL": "http://192.168.56.11:3333"}],
|
|
40
|
-
"endpoints_links": [], "type": "s3", "name": "s3"}, {"endpoints": [{"adminURL":
|
|
41
|
-
"http://192.168.56.11:9292", "region": "RegionOne", "internalURL": "http://192.168.56.11:9292",
|
|
42
|
-
"id": "0cd5d5d5a0c24721a0392b47c89e3640", "publicURL": "http://192.168.56.11:9292"}],
|
|
43
|
-
"endpoints_links": [], "type": "image", "name": "glance"}, {"endpoints": [{"adminURL":
|
|
44
|
-
"http://192.168.56.11:8777", "region": "RegionOne", "internalURL": "http://192.168.56.11:8777",
|
|
45
|
-
"id": "4eb4edec1d2647bfb8ba4f9a5757169d", "publicURL": "http://192.168.56.11:8777"}],
|
|
46
|
-
"endpoints_links": [], "type": "metering", "name": "ceilometer"}, {"endpoints":
|
|
47
|
-
[{"adminURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603",
|
|
48
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603",
|
|
49
|
-
"id": "009e8a41953d439f845b2a0c0dc28b73", "publicURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603"}],
|
|
50
|
-
"endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints":
|
|
51
|
-
[{"adminURL": "http://192.168.56.11:8773/services/Admin", "region": "RegionOne",
|
|
52
|
-
"internalURL": "http://192.168.56.11:8773/services/Cloud", "id": "6820836ec6834548bf7b54da0271dded",
|
|
53
|
-
"publicURL": "http://192.168.56.11:8773/services/Cloud"}], "endpoints_links":
|
|
54
|
-
[], "type": "ec2", "name": "ec2"}, {"endpoints": [{"adminURL": "http://192.168.56.11:35357/v2.0",
|
|
55
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:5000/v2.0", "id":
|
|
56
|
-
"24a95f51f67949e784971e97463ee4d8", "publicURL": "http://192.168.56.11:5000/v2.0"}],
|
|
57
|
-
"endpoints_links": [], "type": "identity", "name": "keystone"}], "user": {"username":
|
|
58
|
-
"admin", "roles_links": [], "id": "cbbcc4f7aef6435fa2da7e5f0b2f1e97", "roles":
|
|
59
|
-
[{"name": "admin"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles":
|
|
60
|
-
["01a81f2dbb3441f1aaa8fe68a7c6f546"]}}}'
|
|
61
|
-
http_version:
|
|
62
|
-
recorded_at: Thu, 29 Aug 2013 18:47:10 GMT
|
|
63
|
-
recorded_with: VCR 2.5.0
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
http_interactions:
|
|
3
|
-
- request:
|
|
4
|
-
method: post
|
|
5
|
-
uri: <HOST_URI>:5000/v2.0/tokens
|
|
6
|
-
body:
|
|
7
|
-
encoding: UTF-8
|
|
8
|
-
string: ! '{"auth":{"passwordCredentials":{"username":"<USERNAME>","password":"<PASSWORD>"},"tenantName":"<TENANT>"}}'
|
|
9
|
-
headers:
|
|
10
|
-
Content-Type:
|
|
11
|
-
- application/json
|
|
12
|
-
User-Agent:
|
|
13
|
-
- Faraday v0.8.8
|
|
14
|
-
response:
|
|
15
|
-
status:
|
|
16
|
-
code: 200
|
|
17
|
-
message:
|
|
18
|
-
headers:
|
|
19
|
-
vary:
|
|
20
|
-
- X-Auth-Token
|
|
21
|
-
content-type:
|
|
22
|
-
- application/json
|
|
23
|
-
content-length:
|
|
24
|
-
- '2648'
|
|
25
|
-
date:
|
|
26
|
-
- Tue, 27 Aug 2013 05:45:50 GMT
|
|
27
|
-
connection:
|
|
28
|
-
- close
|
|
29
|
-
body:
|
|
30
|
-
encoding: US-ASCII
|
|
31
|
-
string: ! '{"access": {"token": {"issued_at": "2013-08-27T05:45:50.518138",
|
|
32
|
-
"expires": "2013-08-28T05:45:50Z", "id": "fcaf407dced04ded88c46147e9eb85b8",
|
|
33
|
-
"tenant": {"description": null, "enabled": true, "id": "3cab25130620477b8b03f1bfa8741603",
|
|
34
|
-
"name": "admin"}}, "serviceCatalog": [{"endpoints": [{"adminURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603",
|
|
35
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603",
|
|
36
|
-
"id": "3b72a66bf2f0491bb8dba827cade0d48", "publicURL": "http://192.168.56.11:8774/v2/3cab25130620477b8b03f1bfa8741603"}],
|
|
37
|
-
"endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL":
|
|
38
|
-
"http://192.168.56.11:3333", "region": "RegionOne", "internalURL": "http://192.168.56.11:3333",
|
|
39
|
-
"id": "482f749b370c40eab8788d6d0bc47f48", "publicURL": "http://192.168.56.11:3333"}],
|
|
40
|
-
"endpoints_links": [], "type": "s3", "name": "s3"}, {"endpoints": [{"adminURL":
|
|
41
|
-
"http://192.168.56.11:9292", "region": "RegionOne", "internalURL": "http://192.168.56.11:9292",
|
|
42
|
-
"id": "0cd5d5d5a0c24721a0392b47c89e3640", "publicURL": "http://192.168.56.11:9292"}],
|
|
43
|
-
"endpoints_links": [], "type": "image", "name": "glance"}, {"endpoints": [{"adminURL":
|
|
44
|
-
"http://192.168.56.11:8777", "region": "RegionOne", "internalURL": "http://192.168.56.11:8777",
|
|
45
|
-
"id": "4eb4edec1d2647bfb8ba4f9a5757169d", "publicURL": "http://192.168.56.11:8777"}],
|
|
46
|
-
"endpoints_links": [], "type": "metering", "name": "ceilometer"}, {"endpoints":
|
|
47
|
-
[{"adminURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603",
|
|
48
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603",
|
|
49
|
-
"id": "009e8a41953d439f845b2a0c0dc28b73", "publicURL": "http://192.168.56.11:8776/v1/3cab25130620477b8b03f1bfa8741603"}],
|
|
50
|
-
"endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints":
|
|
51
|
-
[{"adminURL": "http://192.168.56.11:8773/services/Admin", "region": "RegionOne",
|
|
52
|
-
"internalURL": "http://192.168.56.11:8773/services/Cloud", "id": "6820836ec6834548bf7b54da0271dded",
|
|
53
|
-
"publicURL": "http://192.168.56.11:8773/services/Cloud"}], "endpoints_links":
|
|
54
|
-
[], "type": "ec2", "name": "ec2"}, {"endpoints": [{"adminURL": "http://192.168.56.11:35357/v2.0",
|
|
55
|
-
"region": "RegionOne", "internalURL": "http://192.168.56.11:5000/v2.0", "id":
|
|
56
|
-
"24a95f51f67949e784971e97463ee4d8", "publicURL": "http://192.168.56.11:5000/v2.0"}],
|
|
57
|
-
"endpoints_links": [], "type": "identity", "name": "keystone"}], "user": {"username":
|
|
58
|
-
"admin", "roles_links": [], "id": "cbbcc4f7aef6435fa2da7e5f0b2f1e97", "roles":
|
|
59
|
-
[{"name": "admin"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles":
|
|
60
|
-
["01a81f2dbb3441f1aaa8fe68a7c6f546"]}}}'
|
|
61
|
-
http_version:
|
|
62
|
-
recorded_at: Tue, 27 Aug 2013 05:44:40 GMT
|
|
63
|
-
- request:
|
|
64
|
-
method: post
|
|
65
|
-
uri: http://192.168.56.11:35357/v2.0/tenants
|
|
66
|
-
body:
|
|
67
|
-
encoding: UTF-8
|
|
68
|
-
string: ! '{"tenant":{"name":"","description":"","enabled":true}}'
|
|
69
|
-
headers:
|
|
70
|
-
Content-Type:
|
|
71
|
-
- application/json
|
|
72
|
-
User-Agent:
|
|
73
|
-
- Faraday v0.8.8
|
|
74
|
-
X-Auth-Token:
|
|
75
|
-
- fcaf407dced04ded88c46147e9eb85b8
|
|
76
|
-
response:
|
|
77
|
-
status:
|
|
78
|
-
code: 400
|
|
79
|
-
message:
|
|
80
|
-
headers:
|
|
81
|
-
vary:
|
|
82
|
-
- X-Auth-Token
|
|
83
|
-
content-type:
|
|
84
|
-
- application/json
|
|
85
|
-
content-length:
|
|
86
|
-
- '105'
|
|
87
|
-
date:
|
|
88
|
-
- Tue, 27 Aug 2013 05:45:50 GMT
|
|
89
|
-
connection:
|
|
90
|
-
- close
|
|
91
|
-
body:
|
|
92
|
-
encoding: US-ASCII
|
|
93
|
-
string: ! '{"error": {"message": "Name field is required and cannot be empty",
|
|
94
|
-
"code": 400, "title": "Bad Request"}}'
|
|
95
|
-
http_version:
|
|
96
|
-
recorded_at: Tue, 27 Aug 2013 05:44:40 GMT
|
|
97
|
-
recorded_with: VCR 2.5.0
|