-
Notifications
You must be signed in to change notification settings - Fork 0
ENG-27785: allow port-only for -m, require host for -b #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
src/main/java/org/voltdb/meshmonitor/cli/MetricsInetSocketAddressConverter.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| /* | ||
| * Copyright (C) 2024-2025 Volt Active Data Inc. | ||
| * | ||
| * Use of this source code is governed by an MIT | ||
| * license that can be found in the LICENSE file or at | ||
| * https://opensource.org/licenses/MIT. | ||
| */ | ||
| package org.voltdb.meshmonitor.cli; | ||
|
|
||
| import java.net.InetSocketAddress; | ||
| import picocli.CommandLine; | ||
|
|
||
| public class MetricsInetSocketAddressConverter implements CommandLine.ITypeConverter<InetSocketAddress> { | ||
|
|
||
| public static final int DEFAULT_PORT = 12223; | ||
|
|
||
| @Override | ||
| public InetSocketAddress convert(String value) { | ||
|
|
||
| // Host:port format | ||
| int pos = value.lastIndexOf(':'); | ||
benjaminballard marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| if (pos >= 0) { | ||
| int port = Integer.parseInt(value.substring(pos + 1)); | ||
| String host = value.substring(0, pos); | ||
|
|
||
| // If host is in IPv6 format, remove the brackets | ||
| if (host.startsWith("[") && host.endsWith("]")) { | ||
| host = host.substring(1, host.length()-1); | ||
| } | ||
|
|
||
| // No host given, just colon followed by port - bind to all interfaces (wildcard) same as port-only | ||
| if (host.equals("")) { | ||
| return new InetSocketAddress(port); | ||
| } | ||
|
|
||
| return new InetSocketAddress(host, port); | ||
| } | ||
|
|
||
| // port only - bind to all interfaces (wildcard) | ||
| if (value.matches("^\\d+$")) { // digits only | ||
benjaminballard marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| return new InetSocketAddress(Integer.parseInt(value)); | ||
| } | ||
|
|
||
| // empty string - use wildcard and default port | ||
| if (value.equals("")) { | ||
| return new InetSocketAddress(DEFAULT_PORT); | ||
| } | ||
|
|
||
| // value is hostname only | ||
| return new InetSocketAddress(value, DEFAULT_PORT); | ||
| } | ||
|
|
||
|
|
||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
src/test/java/org/voltdb/meshmonitor/cli/MetricsInetSocketAddressConverterTest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| /* | ||
| * Copyright (C) 2024-2025 Volt Active Data Inc. | ||
| * | ||
| * Use of this source code is governed by an MIT | ||
| * license that can be found in the LICENSE file or at | ||
| * https://opensource.org/licenses/MIT. | ||
| */ | ||
| package org.voltdb.meshmonitor.cli; | ||
|
|
||
| import org.junit.jupiter.api.Test; | ||
|
|
||
| import java.net.InetSocketAddress; | ||
| import java.net.UnknownHostException; | ||
|
|
||
| import static org.assertj.core.api.Assertions.assertThat; | ||
| import static org.assertj.core.api.Assertions.assertThatThrownBy; | ||
|
|
||
| public class MetricsInetSocketAddressConverterTest { | ||
|
|
||
| private final MetricsInetSocketAddressConverter converter = new MetricsInetSocketAddressConverter(); | ||
|
|
||
| @Test | ||
| public void shouldConvertWithPort() { | ||
| // Given | ||
| String input = "localhost:8080"; | ||
|
|
||
| // When | ||
| InetSocketAddress result = converter.convert(input); | ||
|
|
||
| // Then | ||
| assertThat(result).isNotNull(); | ||
| assertThat(result.getHostName()).isEqualTo("localhost"); | ||
| assertThat(result.getPort()).isEqualTo(8080); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldConvertWithoutPort() { | ||
| // Given | ||
| String input = "localhost"; | ||
|
|
||
| // When | ||
| InetSocketAddress result = converter.convert(input); | ||
|
|
||
| // Then | ||
| assertThat(result).isNotNull(); | ||
| assertThat(result.getHostName()).isEqualTo("localhost"); | ||
| assertThat(result.getPort()).isEqualTo(MetricsInetSocketAddressConverter.DEFAULT_PORT); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldThrowExceptionWithInvalidPort() { | ||
| // Given | ||
| String input = "localhost:abc"; | ||
|
|
||
| // When & Then | ||
| assertThatThrownBy(() -> converter.convert(input)) | ||
| .isInstanceOf(NumberFormatException.class); | ||
| } | ||
|
|
||
| @Test | ||
| public void emptyStringShouldDefaultToWildcard() { | ||
| // Given | ||
| String input = ""; | ||
|
|
||
| // When | ||
| InetSocketAddress result = converter.convert(input); | ||
|
|
||
| assertThat(result).isNotNull(); | ||
| assertThat(result.getHostName()).isEqualTo("0.0.0.0"); | ||
| assertThat(result.getPort()).isEqualTo(MetricsInetSocketAddressConverter.DEFAULT_PORT); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldThrowExceptionOnInputWithOnlyColon() { | ||
| // Given | ||
| String input = ":"; | ||
|
|
||
| // When & Then | ||
| assertThatThrownBy(() -> converter.convert(input)) | ||
| .isInstanceOf(IllegalArgumentException.class); | ||
| } | ||
|
|
||
| @Test | ||
| public void shouldDefaultToWildcardIfONlyColonAndPortIsSpecified() throws UnknownHostException { | ||
| // Given | ||
| String input = ":8080"; | ||
|
|
||
| // When | ||
| InetSocketAddress result = converter.convert(input); | ||
|
|
||
| // Then | ||
| assertThat(result).isNotNull(); | ||
| assertThat(result.getHostName()).isEqualTo("0.0.0.0"); | ||
| assertThat(result.getPort()).isEqualTo(8080); | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.