本文整理汇总了Python中Crawler.Crawler._process_html_asset方法的典型用法代码示例。如果您正苦于以下问题:Python Crawler._process_html_asset方法的具体用法?Python Crawler._process_html_asset怎么用?Python Crawler._process_html_asset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crawler.Crawler
的用法示例。
在下文中一共展示了Crawler._process_html_asset方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test__process_html_good_asset
# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import _process_html_asset [as 别名]
def test__process_html_good_asset(self):
c = Crawler("http://test.com")
soup = BeautifulSoup(self.html_test_string)
c._does_static_file_exist = mock.Mock(return_value=True)
for asset in soup.find_all(True, src=True):
c._process_html_asset(asset, "/")
self.assertEqual(c._does_static_file_exist.call_count, 2)
self.assertEqual(len(c.sitemap.nodes()), 3)
self.assertEqual(len(c.sitemap.edges()), 2)
示例2: test__process_html
# 需要导入模块: from Crawler import Crawler [as 别名]
# 或者: from Crawler.Crawler import _process_html_asset [as 别名]
def test__process_html(self):
soup = BeautifulSoup(self.html_test_string)
c = Crawler("http://test.com")
c._process_html_asset = mock.Mock()
c._process_html_link = mock.Mock()
c._process_html(soup)
self.assertEqual(c._process_html_asset.call_count, 3)
self.assertEqual(c._process_html_link.call_count, 4)