You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2008/03/08 11:13:46 UTC

[jira] Updated: (NET-198) FTPTimestampParserImpl#parseTimeStamp() is not fully testable

     [ https://issues.apache.org/jira/browse/NET-198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb updated NET-198:
---------------------

    Attachment: FTPTimestampParserImpl.patch

> FTPTimestampParserImpl#parseTimeStamp() is not fully testable
> -------------------------------------------------------------
>
>                 Key: NET-198
>                 URL: https://issues.apache.org/jira/browse/NET-198
>             Project: Commons Net
>          Issue Type: Bug
>            Reporter: Sebb
>         Attachments: FTPTimestampParserImpl.patch
>
>
> The FTPTimestampParserImpl#parseTimeStamp() method is not fully testable, because it unconditionally creates Calendar items using the current time.
> In order to test for leap years and DST, the test code needs to be able to set arbitrary times.
> I suggest adding a package-private method that takes an additional Calendar parameter, as follows:
> 	Calendar parseTimestamp(String timestampStr, Calendar now) throws ParseException {
>         // etc
> This would replace the original code; the public interface would delegate to the package-private method:
> 	public Calendar parseTimestamp(String timestampStr) throws ParseException {
> 		Calendar now = Calendar.getInstance();
> 		return parseTimestamp(timestampStr, now);
> 	}
> Patch to follow.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.