Test that empty info names are ignored in multi-file torrent webseed URLs

This commit is contained in:
Matt Joiner 2022-03-11 12:03:18 +11:00
parent 0062680e8e
commit 53f26d7d04
No known key found for this signature in database
GPG Key ID: 6B990B8185E7F782
1 changed files with 6 additions and 0 deletions

View File

@ -21,3 +21,9 @@ func TestTrailingPath(t *testing.T) {
"a_1-b_c2/d 3. (e, f).g", "a_1-b_c2/d 3. (e, f).g",
) )
} }
func TestTrailingPathForEmptyInfoName(t *testing.T) {
qt.Check(t, trailingPath("", []string{`ノ┬─┬ノ ︵ ( \o°o)\`}), qt.Equals, "%E3%83%8E%E2%94%AC%E2%94%80%E2%94%AC%E3%83%8E+%EF%B8%B5+%28+%5Co%C2%B0o%29%5C")
qt.Check(t, trailingPath("", []string{"hello", "world"}), qt.Equals, "hello/world")
qt.Check(t, trailingPath("war", []string{"and", "peace"}), qt.Equals, "war/and/peace")
}