mirror of
https://github.com/mirror/wget.git
synced 2025-02-25 19:30:16 +08:00
Add tests for recursion and redirection.
* testenv/Test-recursive-basic.py: New file. Test basic recursion * testenv/Test-recursive-include.py: New File. Recursion test with include directories * testenv/Test-redirect.py: New File. Basic redirection tests * testenv/Makefile.am: Add new tests to makefile
This commit is contained in:
parent
b919f988f2
commit
796e30dcea
@ -73,6 +73,9 @@ if HAVE_PYTHON3
|
|||||||
Test-pinnedpubkey-pem-fail-https.py \
|
Test-pinnedpubkey-pem-fail-https.py \
|
||||||
Test-pinnedpubkey-pem-https.py \
|
Test-pinnedpubkey-pem-https.py \
|
||||||
Test-Post.py \
|
Test-Post.py \
|
||||||
|
Test-recursive-basic.py \
|
||||||
|
Test-recursive-include.py \
|
||||||
|
Test-redirect.py \
|
||||||
Test-redirect-crash.py \
|
Test-redirect-crash.py \
|
||||||
Test--rejected-log.py \
|
Test--rejected-log.py \
|
||||||
Test-reserved-chars.py \
|
Test-reserved-chars.py \
|
||||||
|
57
testenv/Test-recursive-basic.py
Executable file
57
testenv/Test-recursive-basic.py
Executable file
@ -0,0 +1,57 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
from sys import exit
|
||||||
|
from test.http_test import HTTPTest
|
||||||
|
from test.base_test import HTTP, HTTPS
|
||||||
|
from misc.wget_file import WgetFile
|
||||||
|
|
||||||
|
"""
|
||||||
|
Basic test of --recursive.
|
||||||
|
"""
|
||||||
|
############# File Definitions ###############################################
|
||||||
|
File1 = """<html><body>
|
||||||
|
<a href=\"/a/File2.html\">text</a>
|
||||||
|
<a href=\"/b/File3.html\">text</a>
|
||||||
|
</body></html>"""
|
||||||
|
File2 = "With lemon or cream?"
|
||||||
|
File3 = "Surely you're joking Mr. Feynman"
|
||||||
|
|
||||||
|
File1_File = WgetFile ("a/File1.html", File1)
|
||||||
|
File2_File = WgetFile ("a/File2.html", File2)
|
||||||
|
File3_File = WgetFile ("b/File3.html", File3)
|
||||||
|
|
||||||
|
WGET_OPTIONS = "--recursive --no-host-directories"
|
||||||
|
WGET_URLS = [["a/File1.html"]]
|
||||||
|
|
||||||
|
Servers = [HTTP]
|
||||||
|
|
||||||
|
Files = [[File1_File, File2_File, File3_File]]
|
||||||
|
Existing_Files = []
|
||||||
|
|
||||||
|
ExpectedReturnCode = 0
|
||||||
|
ExpectedDownloadedFiles = [File1_File, File2_File, File3_File]
|
||||||
|
Request_List = [["GET /a/File1.html",
|
||||||
|
"GET /a/File2.html",
|
||||||
|
"GET /b/File3.html"]]
|
||||||
|
|
||||||
|
################ Pre and Post Test Hooks #####################################
|
||||||
|
pre_test = {
|
||||||
|
"ServerFiles" : Files,
|
||||||
|
"LocalFiles" : Existing_Files
|
||||||
|
}
|
||||||
|
test_options = {
|
||||||
|
"WgetCommands" : WGET_OPTIONS,
|
||||||
|
"Urls" : WGET_URLS
|
||||||
|
}
|
||||||
|
post_test = {
|
||||||
|
"ExpectedFiles" : ExpectedDownloadedFiles,
|
||||||
|
"ExpectedRetcode" : ExpectedReturnCode
|
||||||
|
}
|
||||||
|
|
||||||
|
err = HTTPTest (
|
||||||
|
pre_hook=pre_test,
|
||||||
|
test_params=test_options,
|
||||||
|
post_hook=post_test,
|
||||||
|
protocols=Servers
|
||||||
|
).begin ()
|
||||||
|
|
||||||
|
exit (err)
|
56
testenv/Test-recursive-include.py
Executable file
56
testenv/Test-recursive-include.py
Executable file
@ -0,0 +1,56 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
from sys import exit
|
||||||
|
from test.http_test import HTTPTest
|
||||||
|
from test.base_test import HTTP, HTTPS
|
||||||
|
from misc.wget_file import WgetFile
|
||||||
|
|
||||||
|
"""
|
||||||
|
Basic test of --recursive.
|
||||||
|
"""
|
||||||
|
############# File Definitions ###############################################
|
||||||
|
File1 = """<html><body>
|
||||||
|
<a href=\"/a/File2.html\">text</a>
|
||||||
|
<a href=\"/b/File3.html\">text</a>
|
||||||
|
</body></html>"""
|
||||||
|
File2 = "With lemon or cream?"
|
||||||
|
File3 = "Surely you're joking Mr. Feynman"
|
||||||
|
|
||||||
|
File1_File = WgetFile ("a/File1.html", File1)
|
||||||
|
File2_File = WgetFile ("a/File2.html", File2)
|
||||||
|
File3_File = WgetFile ("b/File3.html", File3)
|
||||||
|
|
||||||
|
WGET_OPTIONS = "--recursive --no-host-directories --include-directories=a"
|
||||||
|
WGET_URLS = [["a/File1.html"]]
|
||||||
|
|
||||||
|
Servers = [HTTP]
|
||||||
|
|
||||||
|
Files = [[File1_File, File2_File, File3_File]]
|
||||||
|
Existing_Files = []
|
||||||
|
|
||||||
|
ExpectedReturnCode = 0
|
||||||
|
ExpectedDownloadedFiles = [File1_File, File2_File]
|
||||||
|
Request_List = [["GET /a/File1.html",
|
||||||
|
"GET /a/File2.html"]]
|
||||||
|
|
||||||
|
################ Pre and Post Test Hooks #####################################
|
||||||
|
pre_test = {
|
||||||
|
"ServerFiles" : Files,
|
||||||
|
"LocalFiles" : Existing_Files
|
||||||
|
}
|
||||||
|
test_options = {
|
||||||
|
"WgetCommands" : WGET_OPTIONS,
|
||||||
|
"Urls" : WGET_URLS
|
||||||
|
}
|
||||||
|
post_test = {
|
||||||
|
"ExpectedFiles" : ExpectedDownloadedFiles,
|
||||||
|
"ExpectedRetcode" : ExpectedReturnCode
|
||||||
|
}
|
||||||
|
|
||||||
|
err = HTTPTest (
|
||||||
|
pre_hook=pre_test,
|
||||||
|
test_params=test_options,
|
||||||
|
post_hook=post_test,
|
||||||
|
protocols=Servers
|
||||||
|
).begin ()
|
||||||
|
|
||||||
|
exit (err)
|
57
testenv/Test-redirect.py
Executable file
57
testenv/Test-redirect.py
Executable file
@ -0,0 +1,57 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
from sys import exit
|
||||||
|
from test.http_test import HTTPTest
|
||||||
|
from test.base_test import HTTP, HTTPS
|
||||||
|
from misc.wget_file import WgetFile
|
||||||
|
|
||||||
|
"""
|
||||||
|
This is a Prototype Test File.
|
||||||
|
Ideally this File should be copied and edited to write new tests.
|
||||||
|
"""
|
||||||
|
############# File Definitions ###############################################
|
||||||
|
File2 = "Would you like some Tea?"
|
||||||
|
|
||||||
|
File1_rules = {
|
||||||
|
"Response" : 301,
|
||||||
|
"SendHeader" : {"Location" : "/File2.txt"}
|
||||||
|
}
|
||||||
|
|
||||||
|
# /File1.txt is only a redirect, and so has no file content.
|
||||||
|
File1_File = WgetFile ("File1.txt", "", rules=File1_rules)
|
||||||
|
# File1_Retrieved is what will be retrieved for URL /File1.txt.
|
||||||
|
File1_Retrieved = WgetFile ("File1.txt", File2)
|
||||||
|
File2_File = WgetFile ("File2.txt", File2)
|
||||||
|
|
||||||
|
WGET_OPTIONS = ""
|
||||||
|
WGET_URLS = [["File1.txt"]]
|
||||||
|
|
||||||
|
Servers = [HTTP]
|
||||||
|
|
||||||
|
Files = [[File1_File, File2_File]]
|
||||||
|
Existing_Files = []
|
||||||
|
|
||||||
|
ExpectedReturnCode = 0
|
||||||
|
ExpectedDownloadedFiles = [File1_Retrieved]
|
||||||
|
|
||||||
|
################ Pre and Post Test Hooks #####################################
|
||||||
|
pre_test = {
|
||||||
|
"ServerFiles" : Files,
|
||||||
|
"LocalFiles" : Existing_Files
|
||||||
|
}
|
||||||
|
test_options = {
|
||||||
|
"WgetCommands" : WGET_OPTIONS,
|
||||||
|
"Urls" : WGET_URLS
|
||||||
|
}
|
||||||
|
post_test = {
|
||||||
|
"ExpectedFiles" : ExpectedDownloadedFiles,
|
||||||
|
"ExpectedRetcode" : ExpectedReturnCode
|
||||||
|
}
|
||||||
|
|
||||||
|
err = HTTPTest (
|
||||||
|
pre_hook=pre_test,
|
||||||
|
test_params=test_options,
|
||||||
|
post_hook=post_test,
|
||||||
|
protocols=Servers
|
||||||
|
).begin ()
|
||||||
|
|
||||||
|
exit (err)
|
Loading…
Reference in New Issue
Block a user