[
https://issues.apache.org/jira/browse/NET-525?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13907042#comment-13907042
]
Sebb commented on NET-525:
--------------------------
Thanks.
I've had a more detailed look at the test, and it seems to me that the only
requirement is to generate a valid InetAddress.
In which case, one could use
InetAddress.getByAddress(String host, byte[] addr)
which will only throw UnknownHostException for an invalid addr array length.
So I propose using:
InetAddress inet = InetAddress.getByAddress("loopback", new byte[]{127,0,0,1});
and allowing the test to fail if this throws UnknownHostException
> Added missing set methods on NTP class and interface
> ----------------------------------------------------
>
> Key: NET-525
> URL: https://issues.apache.org/jira/browse/NET-525
> Project: Commons Net
> Issue Type: Improvement
> Affects Versions: 3.3
> Reporter: jason mathews
> Labels: ntp
> Attachments: diff.patch.txt
>
>
> I was the original contributor of the NTP implementation and have recently
> cleaned the source and submitting the relevant changes.
> Here is the summary of changes:
> src/main/java/org/apache/commons/net/ntp/TimeInfo.java
> -Added missing equals() and hashCode() methods
> -Added new method: getAddress()
> src/main/java/org/apache/commons/net/ntp/NtpV3Packet.java
> -Added missing methods: setPrecision(), setRootDelay(), and
> setRootDispersion()
> src/main/java/org/apache/commons/net/ntp/NtpV3Impl.java
> -Added missing equals() and hashCode() methods
> -Added missing set methods: setRootDelay(), setRootDispersion(),
> -Added validation check to setDatagramPacket()
> Added additional tests:
> -src/test/java/org/apache/commons/net/ntp/TestNtpPacket.java
> -src/test/java/org/apache/commons/net/ntp/TestTimeInfo.java
> See attached patch.
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)