1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/vcloud_director/models/compute/helper.rb
Paul Thornthwaite ec8b940b2c Standardise on collection methods
Done with `rubocop --auto-correct --only CollectionMethods`
2014-05-26 16:22:07 +01:00

60 lines
1 KiB
Ruby

require 'fog/vcloud_director/compute'
def boolean?(item)
[TrueClass, FalseClass].include?(item.class)
end
def vcloud_director
@vcloud_director ||= Fog::Compute::VcloudDirector.new(
:connection_options => {
:ssl_verify_peer => false,
:connect_timeout => 200,
:read_timeout => 200
}
)
end
def organizations
@organizations ||= vcloud_director.organizations
end
def organization
@organization ||= organizations.get_by_name(vcloud_director.org_name)
end
def catalogs
@catalogs ||= organization.catalogs
end
def catalog
catalogs.first
end
def vdcs
@vdcs ||= organization.vdcs
end
def vdc
vdcs.first
end
def vapps
@vapps ||= vdc.vapps
end
def vapp
vapps.find {|vapp| vapp.vms.size >= 1 }
end
def the_network
@network ||= organization.networks.get_by_name(NETWORK_NAME)
end
def the_catalog
@catalog ||= organization.catalogs.get_by_name(CATALOG_NAME)
end
def the_catalog_item
return nil unless the_catalog
@catalog_item ||= the_catalog.catalog_items.get_by_name(CATALOG_ITEM_NAME)
end