Skip to content

Commit

Permalink
Attempt to get 'Topic.publish()' working with GAX.
Browse files Browse the repository at this point in the history
See #1869 for remaining issue.
  • Loading branch information
tseaver committed Jun 20, 2016
1 parent cebd7d2 commit 701d0ce
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 5 deletions.
6 changes: 4 additions & 2 deletions gcloud/pubsub/_gax.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,14 @@ def topic_publish(self, topic_path, messages):
message_pbs = [_message_pb_from_dict(message)
for message in messages]
try:
response = self._gax_api.publish(topic_path, message_pbs)
event = self._gax_api.publish(topic_path, message_pbs)
if not event.is_set():
event.wait()
except GaxError as exc:
if exc_to_code(exc.cause) == StatusCode.NOT_FOUND:
raise NotFound(topic_path)
raise
return response.message_ids
return event.result.message_ids

def topic_list_subscriptions(self, topic_path, page_size=0,
page_token=None):
Expand Down
41 changes: 38 additions & 3 deletions gcloud/pubsub/test__gax.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,30 @@ def test_topic_publish_hit(self):
MSGID = 'DEADBEEF'
MESSAGE = {'data': B64, 'attributes': {}}
response = _PublishResponsePB([MSGID])
gax_api = _GAXPublisherAPI(_publish_response=response)
event = _Event(response)
event.wait() # already received result
gax_api = _GAXPublisherAPI(_publish_response=event)
api = self._makeOne(gax_api)

resource = api.topic_publish(self.TOPIC_PATH, [MESSAGE])

self.assertEqual(resource, [MSGID])
topic_path, message_pbs, options = gax_api._publish_called_with
self.assertEqual(topic_path, self.TOPIC_PATH)
message_pb, = message_pbs
self.assertEqual(message_pb.data, B64)
self.assertEqual(message_pb.attributes, {})
self.assertEqual(options, None)

def test_topic_publish_hit_with_wait(self):
import base64
PAYLOAD = b'This is the message text'
B64 = base64.b64encode(PAYLOAD).decode('ascii')
MSGID = 'DEADBEEF'
MESSAGE = {'data': B64, 'attributes': {}}
response = _PublishResponsePB([MSGID])
event = _Event(response)
gax_api = _GAXPublisherAPI(_publish_response=event)
api = self._makeOne(gax_api)

resource = api.topic_publish(self.TOPIC_PATH, [MESSAGE])
Expand Down Expand Up @@ -897,12 +920,24 @@ def __init__(self, items, page_token):
self.page_token = page_token

def next(self):
if self._items is None:
raise StopIteration()
items, self._items = self._items, None
return items


class _Event(object):

result = None

def __init__(self, result):
self._result = result

def is_set(self):
return self.result is not None

def wait(self, *_):
self.result = self._result


class _TopicPB(object):

def __init__(self, name):
Expand Down

0 comments on commit 701d0ce

Please sign in to comment.