Unofficial ruby bindings for VMware® vCloud Director's rest APIs.
Note: at this stage both v.1.5 and v.5.1 are supported. It defaults to v.5.1 but it's possible to specify _api_version="1.5".
See vCloud API for details.
This plugin is distributed as a Ruby Gem. To install it, run:
gem install vcloud-rest
Depending on your system's configuration, you may need to run this command with root privileges.
vcloud-rest is tested against ruby 2.1.2, 2.0.0, 1.9.3 and ruby-head.
(see vcloud_rest.gemspec for details)
For testing purpose:
require 'vcloud-rest/connection'
conn = VCloudClient::Connection.new(HOST, USER, PASSWORD, ORG_NAME, VERSION)
conn.login
conn.get_organizations
A (mostly complete) example can be found in
examples/example.rb
Debug can be enabled setting the following environment variables:
Simply run:
rake
Or:
ruby spec/connection_spec.rb
Note: in order to run tests with ruby 1.8.x you need to export RUBYOPT="rubygems"
Tests are now managed using VCR and thus real interactions are recorded and replayed.
In order to write new tests the following steps are required:
Note: values in test_credentials.yml are automatically anonymized.
Examples:
=> test_credentials.yml
:host: https://vcloud_instance_url
:username: test_username
:password: test_password
:org: test_organization
=> Test entry in connection_spec.rb
it "should power off a given vapp" do
VCR.use_cassette('vapps/poweroff_vapp') do
connection.login
task_id = connection.poweroff_vapp("65b4dbc9-b0b1-46e4-a420-8f8147369f8b")
expect(task_id).to eq "ae791b59-4c9f-4fe2-9916-703f1fc3cbd5"
end
end
=> Recorded fixture (credentials auto-anonymized)
---
http_interactions:
- request:
method: post
uri: https://testuser%40testorg:testpass@testurl.local/api/sessions
body:
encoding: UTF-8
...
Author:: Stefano Tortarolo stefano.tortarolo@gmail.com
Copyright:: Copyright (c) 2012-2015 License:: Apache License, Version 2.0
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
This code was inspired by knife-cloudstack.