Sha256: d331a22dfe36afbb89c9a4d312156ddc5c69b17ce8dcf5abb521d75106366c1c

Contents?: true

Size: 1022 Bytes

Versions: 38

Compression:

Stored size: 1022 Bytes

Contents

def test
  connection = Fog::Compute.new({ :provider => "Google" })

  # puts 'Listing images in all projects...'
  # puts '---------------------------------'
  images = connection.images.all
  raise 'Could not LIST the images' unless images
  # puts images.inspect

  # puts 'Fetching a single image from a global project...'
  # puts '------------------------------------------------'
  img = connection.images.get('debian-6-squeeze-v20130515')
  raise 'Could not GET the image' unless img
  # puts img.inspect

  # First, get the name of an image that is in the users 'project' (not global)
  custom_img_name = images.detect { |img| img.project == img.service.project }
  # Run the next test only if there is a custom image available
  if custom_img_name
    # puts 'Fetching a single image from the custom project'
    # puts '----------------------------------------------'
    img = connection.images.get(custom_img_name.name)
    raise 'Could not GET the (custom) image' unless img
    # puts img.inspect
  end
end

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/google/examples/get_list_images.rb
fog-1.21.0 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/google/examples/get_list_images.rb
fog-1.20.0 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/google/examples/get_list_images.rb
fog-1.19.0 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/google/examples/get_list_images.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/google/examples/get_list_images.rb