本文整理汇总了Python中celery.worker.consumer.Gossip类的典型用法代码示例。如果您正苦于以下问题:Python Gossip类的具体用法?Python Gossip怎么用?Python Gossip使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Gossip类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_on_node_leave
def test_on_node_leave(self):
c = self.Consumer()
c.app.connection_for_read = _amqp_connection()
g = Gossip(c)
with patch("celery.worker.consumer.debug") as debug:
g.on_node_leave(c)
debug.assert_called_with("%s left", "[email protected]")
示例2: test_election
def test_election(self):
c = self.Consumer()
g = Gossip(c)
g.start(c)
g.election("id", "topic", "action")
self.assertListEqual(g.consensus_replies["id"], [])
g.dispatcher.send.assert_called_with("worker-elect", id="id", topic="topic", cver=1, action="action")
示例3: test_on_node_lost
def test_on_node_lost(self):
c = self.Consumer()
c.app.connection_for_read = _amqp_connection()
g = Gossip(c)
with patch("celery.worker.consumer.info") as info:
g.on_node_lost(c)
info.assert_called_with("missed heartbeat from %s", "[email protected]")
示例4: test_on_message__task
def test_on_message__task(self):
c = self.Consumer()
g = Gossip(c)
self.assertTrue(g.enabled)
message = Mock(name='message')
message.delivery_info = {'routing_key': 'task.failed'}
g.on_message(Mock(name='prepare'), message)
示例5: test_on_elect_ack_win_but_no_action
def test_on_elect_ack_win_but_no_action(self):
c = self.Consumer(hostname='[email protected]') # I will win
g = Gossip(c)
g.election_handlers = {}
with patch('celery.worker.consumer.error') as error:
self.setup_election(g, c)
self.assertTrue(error.called)
示例6: test_on_node_join
def test_on_node_join(self):
c = self.Consumer()
c.app.connection_for_read = _amqp_connection()
g = Gossip(c)
with patch('celery.worker.consumer.debug') as debug:
g.on_node_join(c)
debug.assert_called_with('%s joined the party', '[email protected]')
示例7: test_register_timer
def test_register_timer(self):
c = self.Consumer()
g = Gossip(c)
g.register_timer()
c.timer.call_repeatedly.assert_called_with(g.interval, g.periodic)
tref = g._tref
g.register_timer()
tref.cancel.assert_called_with()
示例8: test_on_message__task
def test_on_message__task(self):
c = self.Consumer()
c.app.connection_for_read = _amqp_connection()
g = Gossip(c)
self.assertTrue(g.enabled)
message = Mock(name="message")
message.delivery_info = {"routing_key": "task.failed"}
g.on_message(Mock(name="prepare"), message)
示例9: test_on_elect_ack_win_but_no_action
def test_on_elect_ack_win_but_no_action(self):
c = self.Consumer(hostname="[email protected]") # I will win
c.app.connection_for_read = _amqp_connection()
g = Gossip(c)
g.election_handlers = {}
with patch("celery.worker.consumer.error") as error:
self.setup_election(g, c)
self.assertTrue(error.called)
示例10: test_register_timer
def test_register_timer(self):
c = self.Consumer()
g = Gossip(c)
g.register_timer()
c.timer.apply_interval.assert_called_with(g.interval * 1000.0, g.periodic)
tref = g._tref
g.register_timer()
tref.cancel.assert_called_with()
示例11: test_election
def test_election(self):
c = self.Consumer()
g = Gossip(c)
g.start(c)
g.election('id', 'topic', 'action')
self.assertListEqual(g.consensus_replies['id'], [])
g.dispatcher.send.assert_called_with(
'worker-elect', id='id', topic='topic', cver=1, action='action',
)
示例12: test_on_elect
def test_on_elect(self):
c = self.Consumer()
g = Gossip(c)
g.start(c)
event = self.Event('id1')
g.on_elect(event)
in_heap = g.consensus_requests['id1']
self.assertTrue(in_heap)
g.dispatcher.send.assert_called_with('worker-elect-ack', id='id1')
event.pop('clock')
with patch('celery.worker.consumer.error') as error:
g.on_elect(event)
self.assertTrue(error.called)
示例13: test_call_task
def test_call_task(self):
c = self.Consumer()
g = Gossip(c)
g.start(c)
with patch('celery.worker.consumer.signature') as signature:
sig = signature.return_value = Mock()
task = Mock()
g.call_task(task)
signature.assert_called_with(task, app=c.app)
sig.apply_async.assert_called_with()
sig.apply_async.side_effect = MemoryError()
with patch('celery.worker.consumer.error') as error:
g.call_task(task)
self.assertTrue(error.called)
示例14: test_periodic
def test_periodic(self):
c = self.Consumer()
g = Gossip(c)
g.on_node_lost = Mock()
state = g.state = Mock()
worker = Mock()
state.workers = {'foo': worker}
worker.alive = True
worker.hostname = 'foo'
g.periodic()
worker.alive = False
g.periodic()
g.on_node_lost.assert_called_with(worker)
with self.assertRaises(KeyError):
state.workers['foo']
示例15: test_periodic
def test_periodic(self):
c = self.Consumer()
c.app.connection_for_read = _amqp_connection()
g = Gossip(c)
g.on_node_lost = Mock()
state = g.state = Mock()
worker = Mock()
state.workers = {"foo": worker}
worker.alive = True
worker.hostname = "foo"
g.periodic()
worker.alive = False
g.periodic()
g.on_node_lost.assert_called_with(worker)
with self.assertRaises(KeyError):
state.workers["foo"]