You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Emmanuel Lecharny (JIRA)" <ji...@apache.org> on 2015/09/24 16:57:05 UTC

[jira] [Resolved] (DIRAPI-241) new GeneralizedTime(String) fails for fraction close to one

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

Emmanuel Lecharny resolved DIRAPI-241.
--------------------------------------
       Resolution: Fixed
    Fix Version/s: 1.0.0-M32

Fixed in 1.0.0-32

> new GeneralizedTime(String) fails for fraction close to one
> -----------------------------------------------------------
>
>                 Key: DIRAPI-241
>                 URL: https://issues.apache.org/jira/browse/DIRAPI-241
>             Project: Directory Client API
>          Issue Type: Bug
>    Affects Versions: 1.0.0-M30
>            Reporter: Max Fichtelmann
>            Priority: Minor
>             Fix For: 1.0.0-M32
>
>
> When parsing a time with a resolution of nanos (like generated by the openldap ppolicy overlay) it results in a Time that fails to be parsed by org.apache.directory.api.util.GeneralizedTime.GeneralizedTime(String)
> Test:
> {code:title=Test.java|borderStyle=solid}
>     static DateFormat FORMAT = new SimpleDateFormat( "dd/MM/yyyy HH:mm:ss.SSSS z" );
>     
>     @Test
>     public void fractionCloseToOne() throws ParseException
>     {
>         GeneralizedTime close = new GeneralizedTime( "20000101000000.9994Z" );
>         
>         assertThat( close.getDate(), is( equalTo( FORMAT.parse( "01/01/2000 00:00:00.999 GMT" ) ) ) );
>         
>         GeneralizedTime closer = new GeneralizedTime( "20000101000000.9995Z" );
>         
>         assertThat( closer.getDate(), is( equalTo( FORMAT.parse( "01/01/2000 00:00:01 GMT" ) ) ) );
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)