stacker_bee 2.1.1.pre324 → 2.1.1
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 +5 -13
 - data/.rspec +0 -1
 - data/.travis.yml +1 -0
 - data/Gemfile +1 -8
 - data/README.md +8 -43
 - data/bin/stacker_bee +3 -4
 - data/config.default.yml +1 -1
 - data/lib/stacker_bee/client.rb +2 -8
 - data/lib/stacker_bee/configuration.rb +2 -22
 - data/lib/stacker_bee/middleware/adapter.rb +2 -18
 - data/lib/stacker_bee/middleware/cloud_stack_api.rb +2 -1
 - data/lib/stacker_bee/middleware/console_access.rb +2 -1
 - data/lib/stacker_bee/rash.rb +2 -25
 - data/lib/stacker_bee/request_error.rb +1 -1
 - data/spec/cassettes/A_request_sent_to_CloudStack_for_console_access/returns_html_for_console_access.yml +1 -1
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/.yml +5 -5
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/a_nil_request_parameter/properly_executes_the_request.yml +6 -6
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/a_request_parameter_with_a_map/can_create_an_object.yml +60 -30
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/a_request_parameter_with_an_Array/.yml +9 -9
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/a_request_parameter_with_and_empty_string/properly_executes_the_request.yml +6 -6
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/a_request_that_triggers_an_error/properly_signs_the_request.yml +3 -3
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/containing_an_error/.yml +37 -0
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/containing_an_error/should_log_response_as_error.yml +37 -0
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/first/.yml +33 -0
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/first_item/.yml +6 -6
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/first_item/_account_type_/.yml +6 -6
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/first_item/_accounttype_/.yml +6 -6
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/middleware/a_middleware_that_doesn_t_match_the_content_type/uses_the_middleware.yml +4 -4
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/middleware/a_middleware_that_matches_the_content_type/uses_the_middleware.yml +4 -4
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/should_log_request.yml +33 -0
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/should_not_log_response_as_error.yml +33 -0
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/space_character_in_a_request_parameter/properly_signs_the_request.yml +4 -4
 - data/spec/integration/configure_middleware_spec.rb +2 -0
 - data/spec/integration/console_spec.rb +5 -4
 - data/spec/integration/request_spec.rb +10 -26
 - data/spec/spec_helper.rb +7 -0
 - data/spec/units/stacker_bee/api_spec.rb +2 -0
 - data/spec/units/stacker_bee/client_spec.rb +1 -0
 - data/spec/units/stacker_bee/configuration_spec.rb +2 -30
 - data/spec/units/stacker_bee/connection_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/adapter_spec.rb +3 -9
 - data/spec/units/stacker_bee/middleware/base_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/cloud_stack_api_spec.rb +15 -6
 - data/spec/units/stacker_bee/middleware/console_access_spec.rb +5 -6
 - data/spec/units/stacker_bee/middleware/dictionary_flattener_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/endpoint_normalizer_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/error_message_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/format_keys_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/format_values_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/http_status_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/log_response_spec.rb +1 -0
 - data/spec/units/stacker_bee/middleware/raise_on_http_errors_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/remove_empty_strings_spec.rb +2 -0
 - data/spec/units/stacker_bee/middleware/remove_nils_spec.rb +2 -0
 - data/spec/units/stacker_bee/rash_spec.rb +4 -18
 - data/spec/units/stacker_bee/request_error_spec.rb +2 -0
 - data/spec/units/stacker_bee/utilities_spec.rb +2 -0
 - data/spec/units/stacker_bee_spec.rb +2 -0
 - data/stacker_bee.gemspec +5 -4
 - metadata +41 -18
 - data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/with_a_nonexistant_path/raises_a_client_error.yml +0 -47
 
| 
         @@ -2,13 +2,13 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listHosts&details=events,stats&page=1&pagesize=1&response=json&signature=YO7r8REbwAoQVCRYRQEbs6s9tmQ=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
       9 
9 
     | 
    
         
             
                headers:
         
     | 
| 
       10 
10 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
       11 
     | 
    
         
            -
                  - Faraday v0.8. 
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
       12 
12 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       14 
14 
     | 
    
         
             
                  Accept:
         
     | 
| 
         @@ -21,15 +21,15 @@ http_interactions: 
     | 
|
| 
       21 
21 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       22 
22 
     | 
    
         
             
                  - text/javascript; charset=UTF-8
         
     | 
| 
       23 
23 
     | 
    
         
             
                  Content-Length:
         
     | 
| 
       24 
     | 
    
         
            -
                  - ' 
     | 
| 
      
 24 
     | 
    
         
            +
                  - '986'
         
     | 
| 
       25 
25 
     | 
    
         
             
                  Server:
         
     | 
| 
       26 
26 
     | 
    
         
             
                  - Jetty(6.1.26)
         
     | 
| 
       27 
27 
     | 
    
         
             
                body:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
     | 
    
         
            -
                  string: '{ "listhostsresponse" : { "count": 
     | 
| 
       30 
     | 
    
         
            -
                    ShutdownRequested;  
     | 
| 
       31 
     | 
    
         
            -
                     
     | 
| 
       32 
     | 
    
         
            -
                     
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listhostsresponse" : { "count":13 ,"host" : [  {"id":"15d73753-1d1e-49f8-ab5a-c3715c383541","name":"SimulatedAgent.d424bb6c-85b2-484a-9d91-578582f8acc8","state":"Up","disconnected":"2013-10-27T15:59:54-0400","type":"Routing","ipaddress":"172.16.15.0","zoneid":"2add4990-f5d4-4dbf-96ce-9d17e02a00ee","zonename":"Sandbox-simulator","podid":"84b42e1a-276b-4671-9f7b-92775927295d","podname":"POD0","version":"4.2.0","hypervisor":"Simulator","cpunumber":4,"cpuspeed":8000,"cpuused":"0%","networkkbsread":32768,"networkkbswrite":16384,"memoryused":0,"capabilities":"hvm","lastpinged":"1970-01-16T10:08:12-0500","managementserverid":235662889581471,"clusterid":"198f6715-e63b-48a4-a609-1845bcdcce99","clustername":"C0","clustertype":"CloudManaged","islocalstorageactive":false,"created":"2013-09-18T03:40:55-0400","events":"AgentConnected;
         
     | 
| 
      
 30 
     | 
    
         
            +
                    ShutdownRequested; AgentDisconnected; Remove; HostDown; PingTimeout; Ping;
         
     | 
| 
      
 31 
     | 
    
         
            +
                    ManagementServerDown; StartAgentRebalance","resourcestate":"Enabled"} ] }
         
     | 
| 
      
 32 
     | 
    
         
            +
                    }'
         
     | 
| 
       33 
33 
     | 
    
         
             
                http_version: 
         
     | 
| 
       34 
     | 
    
         
            -
              recorded_at: Mon,  
     | 
| 
       35 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 34 
     | 
    
         
            +
              recorded_at: Mon, 28 Oct 2013 18:20:00 GMT
         
     | 
| 
      
 35 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -2,13 +2,13 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
       9 
9 
     | 
    
         
             
                headers:
         
     | 
| 
       10 
10 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
       11 
     | 
    
         
            -
                  - Faraday v0.8. 
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
       12 
12 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       14 
14 
     | 
    
         
             
                  Accept:
         
     | 
| 
         @@ -21,13 +21,13 @@ http_interactions: 
     | 
|
| 
       21 
21 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       22 
22 
     | 
    
         
             
                  - text/javascript; charset=UTF-8
         
     | 
| 
       23 
23 
     | 
    
         
             
                  Content-Length:
         
     | 
| 
       24 
     | 
    
         
            -
                  - ' 
     | 
| 
      
 24 
     | 
    
         
            +
                  - '1778'
         
     | 
| 
       25 
25 
     | 
    
         
             
                  Server:
         
     | 
| 
       26 
26 
     | 
    
         
             
                  - Jetty(6.1.26)
         
     | 
| 
       27 
27 
     | 
    
         
             
                body:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
     | 
    
         
            -
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":" 
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"ce45d9a0-41f5-11e3-aaa7-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"ce4585b8-41f5-11e3-aaa7-d6558ad1fb9f","domain":"ROOT","receivedbytes":100,"sentbytes":100,"vmlimit":"Unlimited","vmtotal":1,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":1,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":1,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","vmrunning":1,"projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":1,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":1,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":32,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":2,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"ce46057e-41f5-11e3-aaa7-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-10-30T22:29:33-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"ce4585b8-41f5-11e3-aaa7-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"ce45d9a0-41f5-11e3-aaa7-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
       30 
30 
     | 
    
         
             
                    ] } }'
         
     | 
| 
       31 
31 
     | 
    
         
             
                http_version: 
         
     | 
| 
       32 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       33 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Thu, 31 Oct 2013 17:50:08 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -2,7 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&domainId=666&response=json&signature=xsXEaSNzlFQjI3%2B4EVBOV%2BwFrbM=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
         @@ -31,5 +31,5 @@ http_interactions: 
     | 
|
| 
       31 
31 
     | 
    
         
             
                  string: '{ "listaccountsresponse" : {"uuidList":[],"errorcode":431,"cserrorcode":4350,"errortext":"Domain
         
     | 
| 
       32 
32 
     | 
    
         
             
                    id=666 doesn''t exist"} }'
         
     | 
| 
       33 
33 
     | 
    
         
             
                http_version: 
         
     | 
| 
       34 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       35 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 34 
     | 
    
         
            +
              recorded_at: Tue, 11 Feb 2014 02:48:17 GMT
         
     | 
| 
      
 35 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
    
        data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/containing_an_error/.yml
    ADDED
    
    | 
         @@ -0,0 +1,37 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=deployVirtualMachine&response=json&signature=3hI1nOEaCluyLOqvfIkEkvGM1HY=
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - '*/*'
         
     | 
| 
      
 16 
     | 
    
         
            +
              response:
         
     | 
| 
      
 17 
     | 
    
         
            +
                status:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  code: 431
         
     | 
| 
      
 19 
     | 
    
         
            +
                  message: '431'
         
     | 
| 
      
 20 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  X-Description:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - Unable to execute API command deployvirtualmachine due to missing parameter
         
     | 
| 
      
 23 
     | 
    
         
            +
                    zoneid
         
     | 
| 
      
 24 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - text/javascript; charset=UTF-8
         
     | 
| 
      
 26 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 27 
     | 
    
         
            +
                  - '184'
         
     | 
| 
      
 28 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 29 
     | 
    
         
            +
                  - Jetty(6.1.26)
         
     | 
| 
      
 30 
     | 
    
         
            +
                body:
         
     | 
| 
      
 31 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 32 
     | 
    
         
            +
                  string: '{ "deployvirtualmachineresponse" : {"uuidList":[],"errorcode":431,"cserrorcode":9999,"errortext":"Unable
         
     | 
| 
      
 33 
     | 
    
         
            +
                    to execute API command deployvirtualmachine due to missing parameter zoneid"}
         
     | 
| 
      
 34 
     | 
    
         
            +
                    }'
         
     | 
| 
      
 35 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 36 
     | 
    
         
            +
              recorded_at: Thu, 24 Oct 2013 18:42:16 GMT
         
     | 
| 
      
 37 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -0,0 +1,37 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=deployVirtualMachine&response=json&signature=3hI1nOEaCluyLOqvfIkEkvGM1HY=
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - '*/*'
         
     | 
| 
      
 16 
     | 
    
         
            +
              response:
         
     | 
| 
      
 17 
     | 
    
         
            +
                status:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  code: 431
         
     | 
| 
      
 19 
     | 
    
         
            +
                  message: '431'
         
     | 
| 
      
 20 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  X-Description:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - Unable to execute API command deployvirtualmachine due to missing parameter
         
     | 
| 
      
 23 
     | 
    
         
            +
                    zoneid
         
     | 
| 
      
 24 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - text/javascript; charset=UTF-8
         
     | 
| 
      
 26 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 27 
     | 
    
         
            +
                  - '184'
         
     | 
| 
      
 28 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 29 
     | 
    
         
            +
                  - Jetty(6.1.26)
         
     | 
| 
      
 30 
     | 
    
         
            +
                body:
         
     | 
| 
      
 31 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 32 
     | 
    
         
            +
                  string: '{ "deployvirtualmachineresponse" : {"uuidList":[],"errorcode":431,"cserrorcode":9999,"errortext":"Unable
         
     | 
| 
      
 33 
     | 
    
         
            +
                    to execute API command deployvirtualmachine due to missing parameter zoneid"}
         
     | 
| 
      
 34 
     | 
    
         
            +
                    }'
         
     | 
| 
      
 35 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 36 
     | 
    
         
            +
              recorded_at: Thu, 24 Oct 2013 18:42:16 GMT
         
     | 
| 
      
 37 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -0,0 +1,33 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - '*/*'
         
     | 
| 
      
 16 
     | 
    
         
            +
              response:
         
     | 
| 
      
 17 
     | 
    
         
            +
                status:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 19 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 20 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - text/javascript; charset=UTF-8
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - '1727'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - Jetty(6.1.26)
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","vmlimit":"Unlimited","vmtotal":0,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":0,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":0,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":0,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":0,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":0,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":0,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"fdc03456-2034-11e3-a44b-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-09-17T23:36:11-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
      
 30 
     | 
    
         
            +
                    ] } }'
         
     | 
| 
      
 31 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Thu, 24 Oct 2013 18:42:16 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -2,13 +2,13 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
       9 
9 
     | 
    
         
             
                headers:
         
     | 
| 
       10 
10 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
       11 
     | 
    
         
            -
                  - Faraday v0.8. 
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
       12 
12 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       14 
14 
     | 
    
         
             
                  Accept:
         
     | 
| 
         @@ -21,13 +21,13 @@ http_interactions: 
     | 
|
| 
       21 
21 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       22 
22 
     | 
    
         
             
                  - text/javascript; charset=UTF-8
         
     | 
| 
       23 
23 
     | 
    
         
             
                  Content-Length:
         
     | 
| 
       24 
     | 
    
         
            -
                  - ' 
     | 
| 
      
 24 
     | 
    
         
            +
                  - '1778'
         
     | 
| 
       25 
25 
     | 
    
         
             
                  Server:
         
     | 
| 
       26 
26 
     | 
    
         
             
                  - Jetty(6.1.26)
         
     | 
| 
       27 
27 
     | 
    
         
             
                body:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
     | 
    
         
            -
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":" 
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","receivedbytes":100,"sentbytes":100,"vmlimit":"Unlimited","vmtotal":1,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":1,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":1,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","vmrunning":1,"projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":1,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":1,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":32,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":2,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"fdc03456-2034-11e3-a44b-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-09-17T23:36:11-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
       30 
30 
     | 
    
         
             
                    ] } }'
         
     | 
| 
       31 
31 
     | 
    
         
             
                http_version: 
         
     | 
| 
       32 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       33 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Tue, 29 Oct 2013 20:20:10 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -2,13 +2,13 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
       9 
9 
     | 
    
         
             
                headers:
         
     | 
| 
       10 
10 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
       11 
     | 
    
         
            -
                  - Faraday v0.8. 
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
       12 
12 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       14 
14 
     | 
    
         
             
                  Accept:
         
     | 
| 
         @@ -21,13 +21,13 @@ http_interactions: 
     | 
|
| 
       21 
21 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       22 
22 
     | 
    
         
             
                  - text/javascript; charset=UTF-8
         
     | 
| 
       23 
23 
     | 
    
         
             
                  Content-Length:
         
     | 
| 
       24 
     | 
    
         
            -
                  - ' 
     | 
| 
      
 24 
     | 
    
         
            +
                  - '1778'
         
     | 
| 
       25 
25 
     | 
    
         
             
                  Server:
         
     | 
| 
       26 
26 
     | 
    
         
             
                  - Jetty(6.1.26)
         
     | 
| 
       27 
27 
     | 
    
         
             
                body:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
     | 
    
         
            -
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":" 
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","receivedbytes":100,"sentbytes":100,"vmlimit":"Unlimited","vmtotal":1,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":1,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":1,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","vmrunning":1,"projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":1,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":1,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":32,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":2,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"fdc03456-2034-11e3-a44b-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-09-17T23:36:11-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
       30 
30 
     | 
    
         
             
                    ] } }'
         
     | 
| 
       31 
31 
     | 
    
         
             
                http_version: 
         
     | 
| 
       32 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       33 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Tue, 29 Oct 2013 20:20:11 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
    
        data/spec/cassettes/A_response_to_a_request_sent_to_the_CloudStack_API/first_item/_accounttype_/.yml
    CHANGED
    
    | 
         @@ -2,13 +2,13 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
       9 
9 
     | 
    
         
             
                headers:
         
     | 
| 
       10 
10 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
       11 
     | 
    
         
            -
                  - Faraday v0.8. 
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
       12 
12 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       14 
14 
     | 
    
         
             
                  Accept:
         
     | 
| 
         @@ -21,13 +21,13 @@ http_interactions: 
     | 
|
| 
       21 
21 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       22 
22 
     | 
    
         
             
                  - text/javascript; charset=UTF-8
         
     | 
| 
       23 
23 
     | 
    
         
             
                  Content-Length:
         
     | 
| 
       24 
     | 
    
         
            -
                  - ' 
     | 
| 
      
 24 
     | 
    
         
            +
                  - '1778'
         
     | 
| 
       25 
25 
     | 
    
         
             
                  Server:
         
     | 
| 
       26 
26 
     | 
    
         
             
                  - Jetty(6.1.26)
         
     | 
| 
       27 
27 
     | 
    
         
             
                body:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
     | 
    
         
            -
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":" 
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","receivedbytes":100,"sentbytes":100,"vmlimit":"Unlimited","vmtotal":1,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":1,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":1,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","vmrunning":1,"projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":1,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":1,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":32,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":2,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"fdc03456-2034-11e3-a44b-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-09-17T23:36:11-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
       30 
30 
     | 
    
         
             
                    ] } }'
         
     | 
| 
       31 
31 
     | 
    
         
             
                http_version: 
         
     | 
| 
       32 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       33 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Tue, 29 Oct 2013 20:20:11 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -2,7 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
         @@ -26,8 +26,8 @@ http_interactions: 
     | 
|
| 
       26 
26 
     | 
    
         
             
                  - Jetty(6.1.26)
         
     | 
| 
       27 
27 
     | 
    
         
             
                body:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
     | 
    
         
            -
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":" 
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"ce45d9a0-41f5-11e3-aaa7-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"ce4585b8-41f5-11e3-aaa7-d6558ad1fb9f","domain":"ROOT","vmlimit":"Unlimited","vmtotal":0,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":0,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":0,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":0,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":0,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":0,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":0,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"ce46057e-41f5-11e3-aaa7-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-10-30T22:29:33-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"ce4585b8-41f5-11e3-aaa7-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"ce45d9a0-41f5-11e3-aaa7-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
       30 
30 
     | 
    
         
             
                    ] } }'
         
     | 
| 
       31 
31 
     | 
    
         
             
                http_version: 
         
     | 
| 
       32 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       33 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Sat, 15 Feb 2014 20:42:23 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -2,7 +2,7 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
         @@ -26,8 +26,8 @@ http_interactions: 
     | 
|
| 
       26 
26 
     | 
    
         
             
                  - Jetty(6.1.26)
         
     | 
| 
       27 
27 
     | 
    
         
             
                body:
         
     | 
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
     | 
    
         
            -
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":" 
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"ce45d9a0-41f5-11e3-aaa7-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"ce4585b8-41f5-11e3-aaa7-d6558ad1fb9f","domain":"ROOT","vmlimit":"Unlimited","vmtotal":0,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":0,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":0,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":0,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":0,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":0,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":0,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"ce46057e-41f5-11e3-aaa7-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-10-30T22:29:33-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"ce4585b8-41f5-11e3-aaa7-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"ce45d9a0-41f5-11e3-aaa7-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
       30 
30 
     | 
    
         
             
                    ] } }'
         
     | 
| 
       31 
31 
     | 
    
         
             
                http_version: 
         
     | 
| 
       32 
     | 
    
         
            -
              recorded_at:  
     | 
| 
       33 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Sat, 15 Feb 2014 20:39:56 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.8.0
         
     | 
| 
         @@ -0,0 +1,33 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - '*/*'
         
     | 
| 
      
 16 
     | 
    
         
            +
              response:
         
     | 
| 
      
 17 
     | 
    
         
            +
                status:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 19 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 20 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - text/javascript; charset=UTF-8
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - '1727'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - Jetty(6.1.26)
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","vmlimit":"Unlimited","vmtotal":0,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":0,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":0,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":0,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":0,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":0,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":0,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"fdc03456-2034-11e3-a44b-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-09-17T23:36:11-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
      
 30 
     | 
    
         
            +
                    ] } }'
         
     | 
| 
      
 31 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Thu, 24 Oct 2013 18:42:15 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -0,0 +1,33 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: get
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&response=json&signature=oftBcJm8kFc%2Buxul8pAL2%2Bh0bdU=
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: ''
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Accept-Encoding:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - '*/*'
         
     | 
| 
      
 16 
     | 
    
         
            +
              response:
         
     | 
| 
      
 17 
     | 
    
         
            +
                status:
         
     | 
| 
      
 18 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 19 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 20 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 21 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - text/javascript; charset=UTF-8
         
     | 
| 
      
 23 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - '1727'
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - Jetty(6.1.26)
         
     | 
| 
      
 27 
     | 
    
         
            +
                body:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  encoding: UTF-8
         
     | 
| 
      
 29 
     | 
    
         
            +
                  string: '{ "listaccountsresponse" : { "count":1 ,"account" : [  {"id":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","name":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","vmlimit":"Unlimited","vmtotal":0,"vmavailable":"Unlimited","iplimit":"Unlimited","iptotal":0,"ipavailable":"Unlimited","volumelimit":"Unlimited","volumetotal":0,"volumeavailable":"Unlimited","snapshotlimit":"Unlimited","snapshottotal":0,"snapshotavailable":"Unlimited","templatelimit":"Unlimited","templatetotal":0,"templateavailable":"Unlimited","projectlimit":"Unlimited","projecttotal":0,"projectavailable":"Unlimited","networklimit":"Unlimited","networktotal":0,"networkavailable":"Unlimited","vpclimit":"Unlimited","vpctotal":0,"vpcavailable":"Unlimited","cpulimit":"Unlimited","cputotal":0,"cpuavailable":"Unlimited","memorylimit":"Unlimited","memorytotal":0,"memoryavailable":"Unlimited","primarystoragelimit":"Unlimited","primarystoragetotal":0,"primarystorageavailable":"Unlimited","secondarystoragelimit":"Unlimited","secondarystoragetotal":0,"secondarystorageavailable":"Unlimited","state":"enabled","user":[{"id":"fdc03456-2034-11e3-a44b-d6558ad1fb9f","username":"admin","firstname":"Admin","lastname":"User","email":"admin@mailprovider.com","created":"2013-09-17T23:36:11-0400","state":"enabled","account":"admin","accounttype":1,"domainid":"fdbfec94-2034-11e3-a44b-d6558ad1fb9f","domain":"ROOT","apikey":"<CLOUD_STACK_API_KEY>","secretkey":"<CLOUD_STACK_SECRET_KEY>","accountid":"fdc009b8-2034-11e3-a44b-d6558ad1fb9f","iscallerchilddomain":false,"isdefault":true}],"isdefault":true}
         
     | 
| 
      
 30 
     | 
    
         
            +
                    ] } }'
         
     | 
| 
      
 31 
     | 
    
         
            +
                http_version: 
         
     | 
| 
      
 32 
     | 
    
         
            +
              recorded_at: Thu, 24 Oct 2013 18:42:15 GMT
         
     | 
| 
      
 33 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -2,13 +2,13 @@ 
     | 
|
| 
       2 
2 
     | 
    
         
             
            http_interactions:
         
     | 
| 
       3 
3 
     | 
    
         
             
            - request:
         
     | 
| 
       4 
4 
     | 
    
         
             
                method: get
         
     | 
| 
       5 
     | 
    
         
            -
                uri: < 
     | 
| 
      
 5 
     | 
    
         
            +
                uri: <CLOUD_STACK_URL>?apiKey=<CLOUD_STACK_API_KEY>&command=listAccounts&name=stacker%20bee&response=json&signature=uAHazDwdFrvlPK9JgZjNZvsojfI=
         
     | 
| 
       6 
6 
     | 
    
         
             
                body:
         
     | 
| 
       7 
7 
     | 
    
         
             
                  encoding: US-ASCII
         
     | 
| 
       8 
8 
     | 
    
         
             
                  string: ''
         
     | 
| 
       9 
9 
     | 
    
         
             
                headers:
         
     | 
| 
       10 
10 
     | 
    
         
             
                  User-Agent:
         
     | 
| 
       11 
     | 
    
         
            -
                  - Faraday v0.8. 
     | 
| 
      
 11 
     | 
    
         
            +
                  - Faraday v0.8.8
         
     | 
| 
       12 
12 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       14 
14 
     | 
    
         
             
                  Accept:
         
     | 
| 
         @@ -28,5 +28,5 @@ http_interactions: 
     | 
|
| 
       28 
28 
     | 
    
         
             
                  encoding: UTF-8
         
     | 
| 
       29 
29 
     | 
    
         
             
                  string: '{ "listaccountsresponse" : { } }'
         
     | 
| 
       30 
30 
     | 
    
         
             
                http_version: 
         
     | 
| 
       31 
     | 
    
         
            -
              recorded_at: Mon,  
     | 
| 
       32 
     | 
    
         
            -
            recorded_with: VCR 2. 
     | 
| 
      
 31 
     | 
    
         
            +
              recorded_at: Mon, 28 Oct 2013 15:24:49 GMT
         
     | 
| 
      
 32 
     | 
    
         
            +
            recorded_with: VCR 2.6.0
         
     | 
| 
         @@ -1,3 +1,5 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'spec_helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
       1 
3 
     | 
    
         
             
            describe 'A request sent to CloudStack for console access', :vcr do
         
     | 
| 
       2 
4 
     | 
    
         
             
              subject(:console_access) { client.console_access(vm: vm) }
         
     | 
| 
       3 
5 
     | 
    
         | 
| 
         @@ -5,10 +7,9 @@ describe 'A request sent to CloudStack for console access', :vcr do 
     | 
|
| 
       5 
7 
     | 
    
         
             
              let(:client) { StackerBee::Client.new(config_hash) }
         
     | 
| 
       6 
8 
     | 
    
         
             
              let(:config_hash) do
         
     | 
| 
       7 
9 
     | 
    
         
             
                {
         
     | 
| 
       8 
     | 
    
         
            -
                  url: 
     | 
| 
       9 
     | 
    
         
            -
                   
     | 
| 
       10 
     | 
    
         
            -
                   
     | 
| 
       11 
     | 
    
         
            -
                  secret_key:   CONFIG['secret_key']
         
     | 
| 
      
 10 
     | 
    
         
            +
                  url:        CONFIG['url'],
         
     | 
| 
      
 11 
     | 
    
         
            +
                  api_key:    CONFIG['api_key'],
         
     | 
| 
      
 12 
     | 
    
         
            +
                  secret_key: CONFIG['secret_key']
         
     | 
| 
       12 
13 
     | 
    
         
             
                }
         
     | 
| 
       13 
14 
     | 
    
         
             
              end
         
     | 
| 
       14 
15 
     | 
    
         |