当前位置: 首页>>代码示例>>Python>>正文


Python CeleryClient.send_encoded方法代码示例

本文整理汇总了Python中raven.contrib.django.celery.CeleryClient.send_encoded方法的典型用法代码示例。如果您正苦于以下问题:Python CeleryClient.send_encoded方法的具体用法?Python CeleryClient.send_encoded怎么用?Python CeleryClient.send_encoded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在raven.contrib.django.celery.CeleryClient的用法示例。


在下文中一共展示了CeleryClient.send_encoded方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: CeleryIsolatedClientTest

# 需要导入模块: from raven.contrib.django.celery import CeleryClient [as 别名]
# 或者: from raven.contrib.django.celery.CeleryClient import send_encoded [as 别名]
class CeleryIsolatedClientTest(TestCase):
    def setUp(self):
        self.client = CeleryClient(
            servers=['http://example.com'],
            public_key='public',
            secret_key='secret',
        )

    @mock.patch('raven.contrib.django.celery.send_raw')
    def test_send_encoded(self, send_raw):
        self.client.send_encoded('foo')

        send_raw.delay.assert_called_once_with('foo')

    @mock.patch('raven.contrib.django.celery.send_raw')
    def test_without_eager(self, send_raw):
        """
        Integration test to ensure it propagates all the way down
        and calls delay on the task.
        """
        self.client.captureMessage(message='test')

        self.assertEquals(send_raw.delay.call_count, 1)

    @with_eager_tasks
    @mock.patch('raven.contrib.django.DjangoClient.send_encoded')
    def test_with_eager(self, send_encoded):
        """
        Integration test to ensure it propagates all the way down
        and calls the parent client's send_encoded method.
        """
        self.client.captureMessage(message='test')

        self.assertEquals(send_encoded.call_count, 1)
开发者ID:hopecream,项目名称:raven-python,代码行数:36,代码来源:tests.py

示例2: CeleryIsolatedClientTest

# 需要导入模块: from raven.contrib.django.celery import CeleryClient [as 别名]
# 或者: from raven.contrib.django.celery.CeleryClient import send_encoded [as 别名]
class CeleryIsolatedClientTest(TestCase):
    def setUp(self):
        self.client = CeleryClient(servers=["http://example.com"], public_key="public", secret_key="secret")

    @mock.patch("raven.contrib.django.celery.CeleryClient.send_raw")
    def test_send_encoded(self, send_raw):
        self.client.send_encoded("foo")

        send_raw.delay.assert_called_once_with("foo")

    @mock.patch("raven.contrib.django.celery.CeleryClient.send_raw")
    def test_without_eager(self, send_raw):
        """
        Integration test to ensure it propagates all the way down
        and calls delay on the task.
        """
        self.client.capture("Message", message="test")

        self.assertEquals(send_raw.delay.call_count, 1)

    @with_eager_tasks
    @mock.patch("raven.contrib.django.DjangoClient.send_encoded")
    def test_with_eager(self, send_encoded):
        """
        Integration test to ensure it propagates all the way down
        and calls the parent client's send_encoded method.
        """
        self.client.capture("Message", message="test")

        self.assertEquals(send_encoded.call_count, 1)
开发者ID:sharoonthomas,项目名称:raven,代码行数:32,代码来源:tests.py

示例3: CeleryIsolatedClientTest

# 需要导入模块: from raven.contrib.django.celery import CeleryClient [as 别名]
# 或者: from raven.contrib.django.celery.CeleryClient import send_encoded [as 别名]
class CeleryIsolatedClientTest(TestCase):
    def setUp(self):
        self.client = CeleryClient(dsn="sync+http://public:[email protected]/1")

    @mock.patch("raven.contrib.django.celery.send_raw")
    def test_send_encoded(self, send_raw):
        self.client.send_encoded("foo")

        send_raw.delay.assert_called_once_with("foo")

    @mock.patch("raven.contrib.django.celery.send_raw")
    def test_without_eager(self, send_raw):
        """
        Integration test to ensure it propagates all the way down
        and calls delay on the task.
        """
        self.client.captureMessage(message="test")

        assert send_raw.delay.call_count == 1
开发者ID:recht,项目名称:raven-python,代码行数:21,代码来源:tests.py


注:本文中的raven.contrib.django.celery.CeleryClient.send_encoded方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。