Sha256: fa7effc7f6afc96ebe98ae5da8ab57cd7a06b4744ede338c83f71880fbedbec7

Contents?: true

Size: 1.6 KB

Versions: 54

Compression:

Stored size: 1.6 KB

Contents

# All examples presume that you have a ~/.fog credentials file set up.
# # More info on it can be found here: http://fog.io/about/getting_started.html
#
require "bundler"
Bundler.require(:default, :development)
# Uncomment this if you want to make real requests to GCE (you _will_ be billed!)
# WebMock.disable!

def test
  connection = Fog::Google::Pubsub.new

  puts "Creating a topic to subscribe to"
  puts "--------------------------------"
  topic = connection.topics.create(:name => "projects/#{connection.project}/topics/#{Fog::Mock.random_letters(16)}")

  puts "Creating a subscription"
  puts "-----------------------"
  subscription = connection.subscriptions.create(:name => "projects/#{connection.project}/subscriptions/#{Fog::Mock.random_letters(16)}", :topic => topic)

  puts "Getting a subscription"
  puts "----------------------"
  connection.subscriptions.get(subscription.name)

  puts "Listing all subscriptions"
  puts "-------------------------"
  connection.subscriptions.all

  puts "Publishing to topic"
  puts "-------------------"
  topic.publish(["test message"])

  puts "Pulling from subscription"
  puts "-------------------------"

  msgs = []
  msgs = subscription.pull while msgs.empty?

  puts "Acknowledging pulled messages"
  puts "-----------------------------"
  subscription.acknowledge(msgs)

  # Alternatively, received messages themselves can be acknowledged
  msgs.each(&:acknowledge)

  puts "Deleting the subscription"
  puts "-------------------------"
  subscription.destroy

  puts "Deleting the topic subscribed to"
  puts "--------------------------------"
  topic.destroy
end

test

Version data entries

54 entries across 54 versions & 2 rubygems

Version Path
fog-google-1.24.1 examples/pubsub/subscriptions.rb
fog-google-1.24.0 examples/pubsub/subscriptions.rb
fog-google-1.23.0 examples/pubsub/subscriptions.rb
fog-google-1.22.0 examples/pubsub/subscriptions.rb
fog-google-1.21.1 examples/pubsub/subscriptions.rb
fog-google-1.21.0 examples/pubsub/subscriptions.rb
fog-google-1.20.0 examples/pubsub/subscriptions.rb
fog-google-1.19.0 examples/pubsub/subscriptions.rb
fog-google-1.18.0 examples/pubsub/subscriptions.rb
fog-google-1.17.0 examples/pubsub/subscriptions.rb
fog-google-1.16.1 examples/pubsub/subscriptions.rb
fog-google-1.16.0 examples/pubsub/subscriptions.rb
fog-google-1.15.0 examples/pubsub/subscriptions.rb
fog-google-1.14.0 examples/pubsub/subscriptions.rb
gitlab-fog-google-1.14.0 examples/pubsub/subscriptions.rb
fog-google-1.13.0 examples/pubsub/subscriptions.rb
gitlab-fog-google-1.13.0 examples/pubsub/subscriptions.rb
fog-google-1.12.1 examples/pubsub/subscriptions.rb
fog-google-1.12.0 examples/pubsub/subscriptions.rb
fog-google-1.11.0 examples/pubsub/subscriptions.rb