Sanitize URIs with non-alpha characters in their schemes
See gh-27482
This commit is contained in:
committed by
Andy Wilkinson
parent
cff1827e27
commit
bafa9c4784
@@ -52,8 +52,8 @@ class SanitizerTests {
|
||||
@MethodSource("matchingUriUserInfoKeys")
|
||||
void uriWithSingleValueWithPasswordShouldBeSanitized(String key) {
|
||||
Sanitizer sanitizer = new Sanitizer();
|
||||
assertThat(sanitizer.sanitize(key, "http://user:password@localhost:8080"))
|
||||
.isEqualTo("http://user:******@localhost:8080");
|
||||
assertThat(sanitizer.sanitize(key, "view-source://user:password@localhost:8080"))
|
||||
.isEqualTo("view-source://user:******@localhost:8080");
|
||||
}
|
||||
|
||||
@ParameterizedTest(name = "key = {0}")
|
||||
|
||||
Reference in New Issue
Block a user