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


Python MockObject.url方法代码示例

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


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

示例1: test_tracker_reply_alert

# 需要导入模块: from Tribler.Test.Core.base_test import MockObject [as 别名]
# 或者: from Tribler.Test.Core.base_test.MockObject import url [as 别名]
 def test_tracker_reply_alert(self):
     """
     Testing the tracker reply alert in LibtorrentDownloadImpl
     """
     mock_alert = MockObject()
     mock_alert.url = 'http://google.com'
     mock_alert.num_peers = 42
     self.libtorrent_download_impl.on_tracker_reply_alert(mock_alert)
     self.assertEqual(self.libtorrent_download_impl.tracker_status['http://google.com'], [42, 'Working'])
开发者ID:synctext,项目名称:tribler,代码行数:11,代码来源:test_libtorrent_download_impl.py

示例2: test_tracker_warning_alert

# 需要导入模块: from Tribler.Test.Core.base_test import MockObject [as 别名]
# 或者: from Tribler.Test.Core.base_test.MockObject import url [as 别名]
 def test_tracker_warning_alert(self):
     """
     Test whether a tracking warning alert is processed correctly
     """
     url = "http://google.com"
     mock_alert = MockObject()
     mock_alert.category = lambda: lt.alert.category_t.error_notification
     mock_alert.url = url
     mock_alert.message = lambda: 'test'
     self.libtorrent_download_impl.process_alert(mock_alert, 'tracker_warning_alert')
     self.assertEqual(self.libtorrent_download_impl.tracker_status[url][1], 'Warning: test')
开发者ID:synctext,项目名称:tribler,代码行数:13,代码来源:test_libtorrent_download_impl.py

示例3: test_process_error_alert

# 需要导入模块: from Tribler.Test.Core.base_test import MockObject [as 别名]
# 或者: from Tribler.Test.Core.base_test.MockObject import url [as 别名]
    def test_process_error_alert(self):
        """
        Testing whether error alerts are processed correctly
        """
        url = "http://google.com"
        mock_alert = MockObject()
        mock_alert.msg = None
        mock_alert.category = lambda: lt.alert.category_t.error_notification
        mock_alert.status_code = 123
        mock_alert.url = url
        self.libtorrent_download_impl.process_alert(mock_alert, 'tracker_error_alert')
        self.assertEqual(self.libtorrent_download_impl.tracker_status[url][1], 'HTTP status code 123')

        mock_alert.status_code = 0
        self.libtorrent_download_impl.process_alert(mock_alert, 'tracker_error_alert')
        self.assertEqual(self.libtorrent_download_impl.tracker_status[url][1], 'Timeout')
开发者ID:synctext,项目名称:tribler,代码行数:18,代码来源:test_libtorrent_download_impl.py


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