代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
"""\
This is a python port of "Goose" orignialy licensed to Gravity.com
under one or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.
Python port was written by Xavier Grangier for Recrutae
Gravity.com licenses this file
to you 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 os
import unittest
from goose.utils import FileHelper
from goose.parsers import Parser
from goose.parsers import ParserSoup
CURRENT_PATH = os.path.dirname(os.path.abspath(__file__))
class ParserBase(unittest.TestCase):
def setUp(self):
self.parser = Parser
def get_html(self, filename):
path = os.path.join(CURRENT_PATH, 'data', filename)
path = os.path.abspath(path)
return FileHelper.loadResourceFile(path)
def test_cssselect(self):
html = '<html><body>'
html += '<p class="link">this is a test <a class="link">link</a> and this is <strong class="foo">strong</strong></p>'
html += '<p>this is a test and this is <strong class="link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
# find node with a class attribute
items_result = self.parser.css_select(doc, "*[class]")
self.assertEqual(len(items_result), 4)
# find p nodes
items_result = self.parser.css_select(doc, "p")
self.assertEqual(len(items_result), 2)
# find nodes with attribute class equal to link
items_result = self.parser.css_select(doc, "*[class=link]")
self.assertEqual(len(items_result), 3)
# find p nodes with class attribute
items_result = self.parser.css_select(doc, "p[class]")
self.assertEqual(len(items_result), 1)
# find p nodes with class attribute link
items_result = self.parser.css_select(doc, "p[class=link]")
self.assertEqual(len(items_result), 1)
# find strong nodes with class attribute link or foo
items_result = self.parser.css_select(doc, "strong[class=link], strong[class=foo]")
self.assertEqual(len(items_result), 2)
# find strong nodes with class attribute link or foo
items_result = self.parser.css_select(doc, "p > a")
self.assertEqual(len(items_result), 1)
def test_childNodesWithText(self):
html = '<html><body>'
html += '<p>this is a test <a class="link">link</a> and this is <strong class="link">strong</strong></p>'
html += '<p>this is a test and this is <strong class="link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
p = self.parser.getElementsByTag(doc, tag='p')[0]
def test_replacetag(self):
html = self.get_html('parser/test1.html')
doc = self.parser.fromstring(html)
# replace all p with div
ps = self.parser.getElementsByTag(doc, tag='p')
divs = self.parser.getElementsByTag(doc, tag='div')
pcount = len(ps)
divcount = len(divs)
for p in ps:
self.parser.replaceTag(p, 'div')
divs2 = self.parser.getElementsByTag(doc, tag='div')
divcount2 = len(divs2)
self.assertEqual(divcount2, pcount + divcount)
# replace first div span with center
spans = self.parser.getElementsByTag(doc, tag='span')
spanscount = len(spans)
div = self.parser.getElementsByTag(doc, tag='div')[0]
span = self.parser.getElementsByTag(div, tag='span')
self.assertEqual(len(span), 1)
self.parser.replaceTag(span[0], 'center')
span = self.parser.getElementsByTag(div, tag='span')
self.assertEqual(len(span), 0)
centers = self.parser.getElementsByTag(div, tag='center')
self.assertEqual(len(centers), 1)
def test_droptag(self):
# test with 1 node
html = '<html><body><div>Hello <b>World!</b></div></body></html>'
expecte_html = '<html><body><div>Hello World!</div></body></html>'
doc = self.parser.fromstring(html)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 1)
self.parser.drop_tag(nodes)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 0)
result_html = self.parser.nodeToString(doc)
self.assertEqual(expecte_html, result_html)
# test with 2 nodes
html = '<html><body><div>Hello <b>World!</b> bla <b>World!</b></div></body></html>'
expecte_html = '<html><body><div>Hello World! bla World!</div></body></html>'
doc = self.parser.fromstring(html)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 2)
self.parser.drop_tag(nodes)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 0)
result_html = self.parser.nodeToString(doc)
self.assertEqual(expecte_html, result_html)
def test_tostring(self):
html = '<html><body>'
html += '<p>this is a test <a>link</a> and this is <strong>strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
result = self.parser.nodeToString(doc)
self.assertEqual(html, result)
def test_striptags(self):
html = '<html><body>'
html += '<p>this is a test <a>link</a> and this is <strong>strong</strong></p>'
html += '</body></html>'
expected = '<html><body>'
expected += '<p>this is a test link and this is strong</p>'
expected += '</body></html>'
doc = self.parser.fromstring(html)
self.parser.stripTags(doc, 'a', 'strong')
result = self.parser.nodeToString(doc)
self.assertEqual(expected, result)
def test_getElementsByTags(self):
html = '<html><body>'
html += '<p>this is a test <a class="link">link</a> and this is <strong class="link">strong</strong></p>'
html += '<p>this is a test and this is <strong class="link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
elements = self.parser.getElementsByTags(doc, ['p', 'a', 'strong'])
self.assertEqual(len(elements), 5)
# find childs within the first p
p = self.parser.getElementsByTag(doc, tag='p')[0]
elements = self.parser.getElementsByTags(p, ['p', 'a', 'strong'])
self.assertEqual(len(elements), 2)
def test_getElementsByTag(self):
html = '<html><body>'
html += '<p>this is a test <a>link</a> and this is <strong>strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
# find all tags
elements = self.parser.getElementsByTag(doc)
self.assertEqual(len(elements), 5)
# find all p
elements = self.parser.getElementsByTag(doc, tag='p')
self.assertEqual(len(elements), 1)
html = '<html><body>'
html += '<p>this is a test <a class="link classB classc">link</a> and this is <strong class="link">strong</strong></p>'
html += '<p>this is a test and this is <strong class="Link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
# find all p
elements = self.parser.getElementsByTag(doc, tag='p')
self.assertEqual(len(elements), 2)
# find all a
elements = self.parser.getElementsByTag(doc, tag='a')
self.assertEqual(len(elements), 1)
# find all strong
elements = self.parser.getElementsByTag(doc, tag='strong')
self.assertEqual(len(elements), 2)
# find first p
# and find strong elemens within the p
elem = self.parser.getElementsByTag(doc, tag='p')[0]
elements = self.parser.getElementsByTag(elem, tag='strong')
self.assertEqual(len(elements), 1)
# test if the first p in taken in account
elem = self.parser.getElementsByTag(doc, tag='p')[0]
elements = self.parser.getElementsByTag(elem, tag='p')
self.assertEqual(len(elements), 0)
# find elem with class "link"
elements = self.parser.getElementsByTag(doc, attr="class", value="link")
self.assertEqual(len(elements), 3)
# find elem with class "classB"
elements = self.parser.getElementsByTag(doc, attr="class", value="classB")
self.assertEqual(len(elements), 1)
# find elem with class "classB"
elements = self.parser.getElementsByTag(doc, attr="class", value="classc")
self.assertEqual(len(elements), 1)
# find elem with class "link" with tag strong
elements = self.parser.getElementsByTag(doc, tag="strong", attr="class", value="link")
self.assertEqual(len(elements), 2)
# find elem with class "link" with tag strong
# within the second p
elem = self.parser.getElementsByTag(doc, tag='p')[1]
elements = self.parser.getElementsByTag(elem, tag="strong", attr="class", value="link")
self.assertEqual(len(elements), 1)
def test_delAttribute(self):
html = self.get_html('parser/test1.html')
doc = self.parser.fromstring(html)
# find div element with class foo
elements = self.parser.getElementsByTag(doc, tag="div", attr="class", value="foo")
self.assertEqual(len(elements), 1)
# remove the attribute class
div = elements[0]
self.parser.delAttribute(div, attr="class")
# find div element with class foo
elements = self.parser.getElementsByTag(doc, tag="div", attr="class", value="foo")
self.assertEqual(len(elements), 0)
# remove an unexistant attribute
self.parser.delAttribute(div, attr="bla")
class TestParser(ParserBase):
pass
class TestParserSoup(ParserBase):
def setUp(self):
self.parser = ParserSoup
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。