You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Mirko Raner (JIRA)" <ji...@apache.org> on 2013/01/26 00:11:12 UTC

[jira] [Commented] (NET-497) ToNetASCIIInputStream skips LF at the end of the stream

    [ https://issues.apache.org/jira/browse/NET-497?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13563142#comment-13563142 ] 

Mirko Raner commented on NET-497:
---------------------------------

Sorry, got all scrambled... please run it through the formatter first. Thanks!
                
> ToNetASCIIInputStream skips LF at the end of the stream
> -------------------------------------------------------
>
>                 Key: NET-497
>                 URL: https://issues.apache.org/jira/browse/NET-497
>             Project: Commons Net
>          Issue Type: Bug
>          Components: Telnet, TFTP
>    Affects Versions: 3.1
>            Reporter: Mirko Raner
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> I have the following failing test case for ToNetASCIIInputStream:
>     public void testToNetASCIIInputStream() throws Exception
>     {
>         final Charset ASCII = Charset.forName("ASCII");
>         byte[] data = "Hello\nWorld\n".getBytes(ASCII);
>         InputStream source = new ByteArrayInputStream(data);
>         ToNetASCIIInputStream toNetASCII = new ToNetASCIIInputStream(source);
>         byte[] output = new byte[512];
>         int length = toNetASCII.read(output);
>         byte[] result = new byte[length];
>         System.arraycopy(output, 0, result, 0, length);
>         assertEquals('\r', result[length-2]);
>         assertEquals('\n', result[length-1]);
>     }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira