Add validation IpAddressMatcher

Closes gh-13621
This commit is contained in:
Federico Herrera
2024-01-24 23:08:05 -03:00
committed by Josh Cummings
parent d7599ab192
commit c1adeef0da
2 changed files with 15 additions and 0 deletions

View File

@@ -105,4 +105,10 @@ public class IpAddressMatcherTests {
"fe80::21f:5bff:fe33:bd68", 129));
}
@Test
public void invalidAddressThenIllegalArgumentException() {
assertThatIllegalArgumentException().isThrownBy(() -> new IpAddressMatcher("invalid-ip"))
.withMessage("ipAddress must start with a [, :, or a hexadecimal digit");
}
}