Instead of recreating a dispatcher in the server
and executor objects use a common dispatcher that
is shared between them. It will dispatch based on
the message type received into a provided dict of
dispatch handler callbacks.
It also can generically requeue messages and can
reject messages if they are missing key required
message properties ('type' in the current case).
Part of blueprint wbe-message-validation
Change-Id: I8320f4707183f36e6a69f0552cf62f99a5467b7e
81 lines
2.4 KiB
Python
81 lines
2.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (C) 2014 Yahoo! Inc. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import threading
|
|
|
|
import mock
|
|
|
|
from taskflow.engines.worker_based import protocol as pr
|
|
from taskflow.engines.worker_based import proxy
|
|
from taskflow import test
|
|
|
|
|
|
class TestMessagePump(test.MockTestCase):
|
|
def test_notify(self):
|
|
barrier = threading.Event()
|
|
|
|
on_notify = mock.MagicMock()
|
|
on_notify.side_effect = lambda *args, **kwargs: barrier.set()
|
|
|
|
handlers = {pr.NOTIFY: on_notify}
|
|
p = proxy.Proxy("test", "test", handlers,
|
|
transport='memory',
|
|
transport_options={
|
|
'polling_interval': 0.01,
|
|
})
|
|
|
|
t = threading.Thread(target=p.start)
|
|
t.daemon = True
|
|
t.start()
|
|
p.wait()
|
|
p.publish(pr.Notify(), 'test')
|
|
|
|
barrier.wait(1.0)
|
|
self.assertTrue(barrier.is_set())
|
|
p.stop()
|
|
t.join()
|
|
|
|
self.assertTrue(on_notify.called)
|
|
on_notify.assert_called_with({}, mock.ANY)
|
|
|
|
def test_response(self):
|
|
barrier = threading.Event()
|
|
|
|
on_response = mock.MagicMock()
|
|
on_response.side_effect = lambda *args, **kwargs: barrier.set()
|
|
|
|
handlers = {pr.RESPONSE: on_response}
|
|
p = proxy.Proxy("test", "test", handlers,
|
|
transport='memory',
|
|
transport_options={
|
|
'polling_interval': 0.01,
|
|
})
|
|
|
|
t = threading.Thread(target=p.start)
|
|
t.daemon = True
|
|
t.start()
|
|
p.wait()
|
|
resp = pr.Response(pr.RUNNING)
|
|
p.publish(resp, 'test')
|
|
|
|
barrier.wait(1.0)
|
|
self.assertTrue(barrier.is_set())
|
|
p.stop()
|
|
t.join()
|
|
|
|
self.assertTrue(on_response.called)
|
|
on_response.assert_called_with(resp.to_dict(), mock.ANY)
|