diff options
author | Maxim Devaev <[email protected]> | 2023-03-06 04:18:38 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-03-06 04:18:38 +0200 |
commit | 7667834b6de23ce71ea2e805f6a50eb679444b9e (patch) | |
tree | fac801c7d5372d0c7e4c218393d823a3a4cf9954 /testenv/tests/validators/test_os.py | |
parent | 5495f70564e03ae0d6ac81866a37cdd79858d4e4 (diff) |
structly validation
Diffstat (limited to 'testenv/tests/validators/test_os.py')
-rw-r--r-- | testenv/tests/validators/test_os.py | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/testenv/tests/validators/test_os.py b/testenv/tests/validators/test_os.py index cabb8e51..9b229014 100644 --- a/testenv/tests/validators/test_os.py +++ b/testenv/tests/validators/test_os.py @@ -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, |