mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-01 03:24:43 +00:00
Except for tests that include non-unicode characters: tests/test_po.py tests/test_strformat.py tests/test_url.py tests/checker/test_error.py tests/checker/test_news.py
60 lines
1.8 KiB
Python
60 lines
1.8 KiB
Python
# Copyright (C) 2004-2014 Bastian Kleineidam
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
"""
|
|
Test http checking.
|
|
"""
|
|
from bs4 import BeautifulSoup
|
|
import pytest
|
|
|
|
from . import LinkCheckTest
|
|
from . import TestLogger
|
|
|
|
bs_has_linenos = BeautifulSoup("<a>", "html.parser").a.sourceline is not None
|
|
|
|
class AllPartsLogger(TestLogger):
|
|
logparts = [
|
|
'cachekey',
|
|
'realurl',
|
|
'name',
|
|
'base',
|
|
'info',
|
|
'warning',
|
|
'result',
|
|
'url',
|
|
'line',
|
|
'col',
|
|
'size',
|
|
'parent_url',
|
|
'page',
|
|
'content_type',
|
|
]
|
|
|
|
|
|
class TestAllParts(LinkCheckTest):
|
|
"""
|
|
Test that all parts of logger are working properly.
|
|
"""
|
|
logger = AllPartsLogger
|
|
|
|
@pytest.mark.skipif(bs_has_linenos,
|
|
reason="Beautiful Soup supports line numbers")
|
|
def test_all_parts(self):
|
|
self.file_test("all_parts.html")
|
|
|
|
@pytest.mark.skipif(not bs_has_linenos,
|
|
reason="Beautiful Soup does not support line numbers")
|
|
def test_all_parts_linenos(self):
|
|
self.file_test("all_parts_linenos.html")
|