mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 00:51:53 +08:00
structly validation
This commit is contained in:
@@ -72,20 +72,12 @@ def test_fail__valid_atx_button(arg: Any) -> None:
|
||||
("\n" + "x" * 1000, "x" * 255),
|
||||
("test", "test"),
|
||||
("test test [test] #test$", "test test [test] #test$"),
|
||||
(".test", ".test"),
|
||||
("..test", "..test"),
|
||||
("..тест..", "..тест.."),
|
||||
("..те\\ст..", "..те\\ст.."),
|
||||
(".....", "....."),
|
||||
(".....txt", ".....txt"),
|
||||
(" .. .", ".. ."),
|
||||
("..\n.", ".._."),
|
||||
("test/", "test"),
|
||||
("/test", "test"),
|
||||
("foo/bar.iso", "foo/bar.iso"),
|
||||
("//foo//bar.iso", "foo/bar.iso"),
|
||||
("foo/lost-found/bar.iso", "foo/lost-found/bar.iso"),
|
||||
("/bar.iso/", "bar.iso"),
|
||||
("test/", "test"),
|
||||
("/test", "test"),
|
||||
("foo/bar.iso", "foo/bar.iso"),
|
||||
("//foo//bar.iso", "foo/bar.iso"),
|
||||
("foo/lost-found/bar.iso", "foo/lost-found/bar.iso"),
|
||||
("/bar.iso/", "bar.iso"),
|
||||
|
||||
])
|
||||
def test_ok__valid_msd_image_name(arg: Any, retval: str) -> None:
|
||||
@@ -104,12 +96,13 @@ def test_ok__valid_msd_image_name(arg: Any, retval: str) -> None:
|
||||
"/ ..",
|
||||
".. /",
|
||||
"/.. /",
|
||||
".test",
|
||||
"foo/../bar.iso",
|
||||
"foo/./foo.iso",
|
||||
"foo/lost+found/bar.iso",
|
||||
"../bar.iso",
|
||||
"/../bar.iso",
|
||||
"foo/.__bar.iso",
|
||||
"foo/.bar.iso",
|
||||
"",
|
||||
" ",
|
||||
None,
|
||||
|
||||
@@ -86,18 +86,10 @@ def test_fail__valid_abs_path__dir(arg: Any) -> None:
|
||||
("dsl-4.11.rc1.iso", "dsl-4.11.rc1.iso"),
|
||||
("systemrescuecd-x86-5.3.1.iso", "systemrescuecd-x86-5.3.1.iso"),
|
||||
("ubuntu-16.04.5-desktop-i386.iso", "ubuntu-16.04.5-desktop-i386.iso"),
|
||||
(" тест(){}[ \t].iso\t", "тест(){}[ _].iso"),
|
||||
("\n" + "x" * 1000, "x" * 255),
|
||||
("test", "test"),
|
||||
("test test [test] #test$", "test test [test] #test$"),
|
||||
(".test", ".test"),
|
||||
("..test", "..test"),
|
||||
("..тест..", "..тест.."),
|
||||
("..те\\ст..", "..те\\ст.."),
|
||||
(".....", "....."),
|
||||
(".....txt", ".....txt"),
|
||||
(" .. .", ".. ."),
|
||||
("..\n.", ".._."),
|
||||
(" тест(){}[ \t].iso\t", "тест(){}[ _].iso"),
|
||||
("\n" + "x" * 1000, "x" * 255),
|
||||
("test", "test"),
|
||||
("test test [test] #test$", "test test [test] #test$"),
|
||||
])
|
||||
def test_ok__valid_printable_filename(arg: Any, retval: str) -> None:
|
||||
assert valid_printable_filename(arg) == retval
|
||||
@@ -110,6 +102,7 @@ def test_ok__valid_printable_filename(arg: Any, retval: str) -> None:
|
||||
"test/",
|
||||
"/test",
|
||||
"../test",
|
||||
".test",
|
||||
"./.",
|
||||
"../.",
|
||||
"./..",
|
||||
@@ -117,6 +110,7 @@ def test_ok__valid_printable_filename(arg: Any, retval: str) -> None:
|
||||
"/ ..",
|
||||
".. /",
|
||||
"/.. /",
|
||||
"lost+found",
|
||||
"",
|
||||
" ",
|
||||
None,
|
||||
|
||||
Reference in New Issue
Block a user