Merge remote-tracking branch 'origin/jetty-12.0.x' into fix/12.0.x/multipart-part-delete-existence-check

This commit is contained in:
Joakim Erdfelt 2024-06-21 15:41:56 -05:00
commit 82faaee276
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 2 additions and 1 deletions

View File

@ -108,7 +108,8 @@ public class FileIDTest
Arguments.of(URI.create("file:///path/to/test.txt"), "test.txt"),
Arguments.of(URI.create("file:///path/to/dir/"), "dir"),
Arguments.of(URI.create("jar:file:///home/user/libs/jetty-server-12.jar!/org/eclipse/jetty/server/jetty-dir.css"), "jetty-dir.css"),
Arguments.of(URI.create("https://jetty.org/"), "jetty"),
Arguments.of(URI.create("https://jetty.org/"), ""),
Arguments.of(URI.create("https://jetty.org/docs/"), "docs"),
Arguments.of(URI.create("https://jetty.org/index.html"), "index.html"),
Arguments.of(URI.create("https://jetty.org/docs.html?query=val#anchor"), "docs.html")
);