mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-26 02:40:23 +00:00
In Python 2 StringIO could accept either Unicode or 8-bit strings. Similar change made for HttpUrl:06fdd78f9("Python3: fix TypeError in HttpUrl.read_content()", 2019-09-15) Non-existent FtpUrl.max_size introduced in:7b34be590("Introduce check plugins, use Python requests for http/s connections, and some code cleanups and improvements.", 2014-03-01) Additional self.direct() not added in:f107092a8("Fix handling of user/password info in URLs.", 2012-06-10)
138 lines
4.4 KiB
Python
138 lines
4.4 KiB
Python
# 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.
|
|
#
|
|
# 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.
|
|
"""
|
|
FTP checking.
|
|
"""
|
|
from .. import need_pyftpdlib
|
|
from .ftpserver import FtpServerTest
|
|
|
|
|
|
class TestFtp(FtpServerTest):
|
|
"""Test ftp: link checking."""
|
|
|
|
@need_pyftpdlib
|
|
def test_ftp(self):
|
|
# ftp two slashes
|
|
url = "ftp://%s:%d/" % (self.host, self.port)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % url,
|
|
"real url %s" % url,
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# ftp use/password
|
|
user = "anonymous"
|
|
passwd = "Ftp"
|
|
url = "ftp://%s:%s@%s:%d/" % (user, passwd, self.host, self.port)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % url,
|
|
"real url %s" % url,
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# ftp one slash
|
|
url = "ftp:/%s:%d/" % (self.host, self.port)
|
|
nurl = self.norm(url)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key None",
|
|
"real url %s" % nurl,
|
|
"error",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# missing path
|
|
url = "ftp://%s:%d" % (self.host, self.port)
|
|
nurl = self.norm(url)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % nurl,
|
|
"real url %s" % nurl,
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# missing trailing dir slash
|
|
url = "ftp://%s:%d/base" % (self.host, self.port)
|
|
nurl = self.norm(url)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % nurl,
|
|
"real url %s/" % nurl,
|
|
"warning Missing trailing directory slash in ftp url.",
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# ftp two dir slashes
|
|
url = "ftp://%s:%d//base/" % (self.host, self.port)
|
|
nurl = self.norm(url)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % nurl,
|
|
"real url %s" % nurl,
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# ftp many dir slashes
|
|
url = "ftp://%s:%d////////base/" % (self.host, self.port)
|
|
nurl = self.norm(url)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % nurl,
|
|
"real url %s" % nurl,
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# ftp three slashes
|
|
url = "ftp:///%s:%d/" % (self.host, self.port)
|
|
nurl = self.norm(url)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key None",
|
|
"real url %s" % nurl,
|
|
"error",
|
|
]
|
|
self.direct(url, resultlines)
|
|
# directory listing
|
|
url = "ftp://%s:%d/base/" % (self.host, self.port)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % url,
|
|
"real url %s" % url,
|
|
"valid",
|
|
"url test.txt",
|
|
"cache key %stest.txt" % url,
|
|
"real url %stest.txt" % url,
|
|
"name test.txt",
|
|
"warning Content size is zero.",
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines, recursionlevel=1)
|
|
# file download
|
|
url = "ftp://%s:%d/file.html" % (self.host, self.port)
|
|
resultlines = [
|
|
"url %s" % url,
|
|
"cache key %s" % url,
|
|
"real url %s" % url,
|
|
"valid",
|
|
"url javascript:loadthis()",
|
|
"cache key javascript:loadthis()",
|
|
"real url javascript:loadthis()",
|
|
"name javascript url",
|
|
"info Javascript URL ignored.",
|
|
"valid",
|
|
]
|
|
self.direct(url, resultlines, recursionlevel=1)
|