linkchecker/tests/checker/test_telnet.py

62 lines
1.9 KiB
Python
Raw Normal View History

# -*- coding: iso-8859-1 -*-
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
2012-10-30 16:44:00 +00:00
class TestTelnet (TelnetServerTest):
2009-06-26 05:15:48 +00:00
"""Test telnet: link checking."""
2012-10-30 16:44:00 +00:00
def test_telnet_error (self):
url = u"telnet:"
nurl = self.norm(url)
resultlines = [
u"url %s" % url,
2012-08-13 16:01:59 +00:00
u"cache key None",
u"real url %s" % nurl,
u"error",
]
self.direct(url, resultlines)
2010-11-22 19:30:47 +00:00
2012-10-30 16:44:00 +00:00
def test_telnet_localhost (self):
2012-11-06 20:34:22 +00:00
url = self.get_url()
resultlines = [
u"url %s" % url,
u"cache key %s" % url,
u"real url %s" % url,
u"valid",
]
self.direct(url, resultlines)
url = self.get_url(user=u"test")
resultlines = [
u"url %s" % url,
u"cache key %s" % url,
u"real url %s" % url,
u"valid",
]
self.direct(url, resultlines)
url = self.get_url(user=u"test", password=u"test")
resultlines = [
u"url %s" % url,
u"cache key %s" % url,
u"real url %s" % url,
u"valid",
]
self.direct(url, resultlines)