Sha256: 028bb881bb639b2be178e13a7863dd4f39e18601e911aed8695385010e3bf5b9

Contents?: true

Size: 1.54 KB

Versions: 17

Compression:

Stored size: 1.54 KB

Contents

module Fog
  class Vcloud

    class Real
      basic_request :get_organization
    end

    class Mock

      def get_organization(organization_uri)
        #
        # Based off of:
        # http://support.theenterprisecloud.com/kb/default.asp?id=540&Lang=1&SID=
        # 
        # vCloud API Guide v0.9 - Page 26
        #
        organization_uri = ensure_unparsed(organization_uri)
        if org = mock_data[:organizations].detect { |org| org[:info][:href] == organization_uri }
          xml = Builder::XmlMarkup.new

          mock_it 200,
            xml.Org(xmlns.merge(:href => org[:info][:href], :name => org[:info][:name])) {

              org[:vdcs].each do |vdc|
                xml.Link(:rel => "down",
                         :href => vdc[:href],
                         :type => "application/vnd.vmware.vcloud.vdc+xml",
                         :name => vdc[:name])
                xml.Link(:rel => "down",
                         :href => "#{vdc[:href]}/catalog",
                         :type => "application/vnd.vmware.vcloud.catalog+xml",
                         :name => "#{vdc[:name]} Catalog")
                xml.Link(:rel => "down",
                         :href => "#{vdc[:href]}/tasksList",
                         :type => "application/vnd.vmware.vcloud.tasksList+xml",
                         :name => "#{vdc[:name]} Tasks List")
              end
            },
            {'Content-Type' => "application/vnd.vmware.vcloud.org+xml" }
        else
          mock_error 200, "401 Unauthorized"
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
fog-0.3.16 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.15 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.14 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.13 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.12 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.11 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.10 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.9 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.8 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.7 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.6 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.5 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.4 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.3 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.2 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.1 lib/fog/vcloud/requests/get_organization.rb
fog-0.3.0 lib/fog/vcloud/requests/get_organization.rb