linkchecker/tests/checker/test_telnet.py

61 lines
1.9 KiB
Python
Raw Normal View History

2012-08-14 18:37:24 +00:00
# Copyright (C) 2004-2012 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.
#
2009-07-24 21:58:20 +00:00
# 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 telnet checking.
"""
2012-10-30 16:44:00 +00:00
from .telnetserver import TelnetServerTest
class TestTelnet(TelnetServerTest):
2009-06-26 05:15:48 +00:00
"""Test telnet: link checking."""
def test_telnet_error(self):
2020-04-30 19:11:59 +00:00
url = "telnet:"
nurl = self.norm(url)
resultlines = [
2020-04-30 19:11:59 +00:00
"url %s" % url,
"cache key None",
"real url %s" % nurl,
"error",
]
self.direct(url, resultlines)
2010-11-22 19:30:47 +00:00
def test_telnet_localhost(self):
2012-11-06 20:34:22 +00:00
url = self.get_url()
resultlines = [
2020-04-30 19:11:59 +00:00
"url %s" % url,
"cache key %s" % url,
"real url %s" % url,
"valid",
2012-11-06 20:34:22 +00:00
]
self.direct(url, resultlines)
2020-04-30 19:11:59 +00:00
url = self.get_url(user="test")
2012-11-06 20:34:22 +00:00
resultlines = [
2020-04-30 19:11:59 +00:00
"url %s" % url,
"cache key %s" % url,
"real url %s" % url,
"valid",
2012-11-06 20:34:22 +00:00
]
self.direct(url, resultlines)
2020-04-30 19:11:59 +00:00
url = self.get_url(user="test", password="test")
2012-11-06 20:34:22 +00:00
resultlines = [
2020-04-30 19:11:59 +00:00
"url %s" % url,
"cache key %s" % url,
"real url %s" % url,
"valid",
2012-11-06 20:34:22 +00:00
]
self.direct(url, resultlines)