mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-02 11:54:43 +00:00
62 lines
1.7 KiB
Python
62 lines
1.7 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")
|