You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Max Fichtelmann (JIRA)" <ji...@apache.org> on 2015/07/01 13:46:05 UTC

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

Max Fichtelmann created DIRAPI-241:
--------------------------------------

             Summary: 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


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)