1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
#!/usr/bin/env python3
from sys import exit
from misc.metalinkv3_xml import Metalinkv3_XML
"""
This is to test if Metalink/XML forbids the home path and names
beginning with the ~ (tilde) character.
With --trust-server-names, trust the metalink:file names.
Without --trust-server-names, don't trust the metalink:file names:
use the basename of --input-metalink, and add a sequential number
(e.g. .#1, .#2, etc.).
Strip the directory from unsafe paths.
"""
############# File Definitions ###############################################
wrong_file = "Ouch!"
File1 = "Would you like some Tea?"
File1_lowPref = "Do not take this"
File2 = "This is gonna be good"
File2_lowPref = "Not this one too"
File3 = "A little more, please"
File3_lowPref = "That's just too much"
File4 = "Maybe a biscuit?"
File4_lowPref = "No, thanks"
File5 = "More Tea...?"
File5_lowPref = "I have to go..."
############# Metalink/XML ###################################################
Meta = Metalinkv3_XML()
# file_name: metalink:file "name" field
# save_name: metalink:file save name, if None the file is rejected
# content : metalink:file content
#
# size:
# True auto-compute size
# None no <size></size>
# any use this size
#
# hash_sha256:
# False no <verification></verification>
# True auto-compute sha256
# None no <hash></hash>
# any use this hash
#
# srv_file : metalink:url server file
# srv_content: metalink:url server file content, if None the file doesn't exist
# utype : metalink:url type
# location : metalink:url location (default 'no location field')
# preference : metalink:url preference (default 999999)
XmlName = "test.metalink"
Meta.xml (
# Metalink/XML file name
XmlName,
# file_name, save_name, content, size, hash_sha256
["~File1", None, File1, None, True,
# srv_file, srv_content, utype, location, preference
["wrong_file", wrong_file, "http", None, 35],
["404", None, "http", None, 40],
["File1_lowPref", File1_lowPref, "http", None, 25],
["File1", File1, "http", None, 30]],
["~/File2", None, File2, None, True,
["wrong_file", wrong_file, "http", None, 35],
["404", None, "http", None, 40],
["File2_lowPref", File2_lowPref, "http", None, 25],
["File2", File2, "http", None, 30]],
["dir/~File3", None, File3, None, True,
["wrong_file", wrong_file, "http", None, 35],
["404", None, "http", None, 40],
["File3_lowPref", File3_lowPref, "http", None, 25],
["File3", File3, "http", None, 30]],
["dir/File4~", "dir/File4~", File4, None, True,
["wrong_file", wrong_file, "http", None, 35],
["404", None, "http", None, 40],
["File4_lowPref", File4_lowPref, "http", None, 25],
["File4", File4, "http", None, 30]],
["dir/~/File5", "dir/~/File5", File5, None, True,
["wrong_file", wrong_file, "http", None, 35],
["404", None, "http", None, 40],
["File5_lowPref", File5_lowPref, "http", None, 25],
["File5", File5, "http", None, 30]],
)
Meta.print_meta ()
err = Meta.http_test (
"--trust-server-names " + \
"--input-metalink " + XmlName, 0
)
exit (err)
|